 @import url("https://use.typekit.net/zkl8qor.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: "new-zen", sans-serif;
    font-size: 23px;
    text-align: center;
    cursor: url(cursor.png), auto; 
}

h1 {
     font-family:"chloe";  
}

 .left {
    text-align: left;
}

.page {
  min-height: 100vh;
}

.bg1 {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
 background-repeat: no-repeat;
     background-image: url("bigbg.jpg");
}

.bg2{
  background-image: url("bg.jpg");
}

.bg3 {
 background-color: red;
}

.bg4{
 background-color: hotpink;
}

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


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

.home__title {
  font-size: 4rem;
    font-family:"chloe";
  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-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 {
  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: 0.9;
}

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