 @import url("https://use.typekit.net/cpl2hxw.css");
 
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
 cursor: url(cursor.png), auto; 
}

/* ===== BODY / BACKGROUND ===== */
body {
  background-color: #ffcfd7;
  color: black;
font-family: "legitima", serif;
font-weight: 500;
font-style: normal;
 background-image: url("hello kitty.png");
  text-align: center;
    cursor: url(cursor_1.png), auto; 
    
}

.page {
 background-image: url("hello kitty.png");
}

.page2 {
 
 background-color: hotpink;
}

a:hover {
     cursor: url(cursor_2.png), auto;
}


/* ===== HOME SECTION ===== */
.home {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
   background: url("Skull_background.jpeg") center / cover no-repeat;
  z-index: 1;            /* below menu + buttons */
  pointer-events: none; /* does not block clicks */
}

.home__title {
  font-size: 4rem;
    font-family: kuhlman-vf, sans-serif;
  letter-spacing: 0.2em;
  margin: 0;
}

.home__tagline {
  margin-top: 10px;
  opacity: 0.8;
  letter-spacing: 0.15em;
  
}

/* ===== MENU WRAPPER ===== */
.menu {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

/* ===== MENU PANEL ===== */
.menu__item {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
}

/* ===== MENU CONTENT ===== */
.menu__item-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu__item-inner a {
  color: white;
  font-family: kuhlman-vf, sans-serif;
  font-size: 2rem;
  text-decoration: none;
  margin: 12px 0;
}

.menu__item-inner a:hover {
 color: hotpink;
}

/* ===== HAMBURGER & CLOSE BUTTON ===== */
.action {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10; /* above everything */
  padding: 0;
}

/* Hamburger bars */
.action--menu span {
  display: block;
  height: 3px;
  background: white;
  margin: 5px 0;
}

/* Close button */
.action--close {
  display: none;
  font-size: 2rem;
  color: hotpink;
  line-height: 24px;
    }
    
  img {
  width: 100%;
  height: auto;

}
.flexible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;              
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.grid-item {
  background: rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.grid-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.grid-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 1;
}

/* FORCE SINGLE COLUMN ON SMALL SCREENS */
@media (max-width: 600px) {
  .flexible-grid {
    grid-template-columns: 1fr;
  }
}
