@import url("https://use.typekit.net/svd2ldv.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: #E0A700; 
font-family: "engria", sans-serif;
font-weight: 500;
font-style: normal;
  text-align: center;
    cursor: url(cursora.png), auto; 
}
.page {
  background-color: hotpink;
   background-image: url("tile.jpg");
   
   
.page2 {
  background-color: hotpink;
}


a:hover {
     cursor: url(cursor2a.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("flowerz.jpg") center / cover no-repeat;
  z-index: 1;            /* below menu + buttons */
  pointer-events: none; /* does not block clicks */
}

.home__title {
  font-size: 3.5rem;
  color: black;
font-family: "engria", sans-serif;
font-weight: 500;
font-style: normal;
  letter-spacing: 0.1em;
  margin: 0;
}

.home__tagline {
  margin-top: 10px;
  opacity: 0.8;
  font-size: 2rem;
  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-size: 2rem;
  text-decoration: none;
  margin: 12px 0;
}

.menu__item-inner a:hover {
 color: #27702F;
}

/* ===== 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: pink;
  margin: 5px 0;
}

/* Close button */
.action--close {
  display: none;
  font-size: 2rem;
  color: #27702F;
  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: 1.5rem;
  line-height: 1.4;
  opacity: 1;
}

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