    :root {
      --main-bg:#f4e3cb;
      --accent-bg:#f4e3cb;
      --text-dark: #5c524d;
      --highlight: #f7cfc9;
      --card-bg: #ffffff;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background-color: var(--main-bg);
      font-family: 'Raleway', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      font-weight: 300;
    }
    header {
      background-color:#fffff7;
      padding: 2rem 1rem;
      text-align: center;
    }
    header h1 {
      font-family: 'WindSong', cursive;
      font-size: clamp(2.5rem, 6vw, 4rem);
      color: #4c403b;
      margin-bottom: 0.5rem;
      font-weight: 500;
      letter-spacing: 1px;
    }
    header p {
      font-family: 'Courier New';
      font-size: clamp(0.5rem, 4vw, 1rem);
      color: #6e5e57;
    }
    nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      background-color: var(--accent-bg);
      gap: 1rem;
      padding: 1rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    nav a {
      text-decoration: none;
      color: #4c403b;
      font-weight: 400;
      font-size: clamp(0.8rem, 3vw, 1rem);
      transition: all 0.3s;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      white-space: nowrap;
      font-family: 'Raleway', sans-serif;
    }
    nav a:hover, nav a.active {
      color: #f2d0af;
      background-color: #fffff7;
    }
    section {
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
      display: none;
    }
    section.active {
      display: block;
    }
    .hero-image {
      width: 100%;
      height: 30rem;
      object-fit: cover;
      margin-bottom: 2rem;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
      gap: 1.5rem;
    }
    .card {
      border: 1px solid #f5b6ac;
      border-radius: 1rem;
      background-color: var(--card-bg);
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.2s, box-shadow 0.3s;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .card h3 {
      margin-bottom: 0.5rem;
      color: #5c524d;
      font-size: 1.2rem;
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
    }
    .card p {
      font-size: 0.95rem;
      color: #7d716a;
      margin-bottom: 0.5rem;
      font-weight: 300;
    }
    h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      color: #4a3f39;
      font-family: 'Dancing Script', cursive;
      font-weight: 400;
      letter-spacing: 1px;
    }
    h3.section-subtitle {
      text-align: center;
      margin: 2rem 0 1rem;
      font-family: 'Parisienne', cursive;
      font-size: 1.8rem;
      color: #6e5e57;
      font-weight: 400;
    }
    h4 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: clamp(0.9rem, 5vw, 2.5rem);
      color: #4a3f39;
      font-family: 'Dancing Script', cursive;
      font-weight: 400;
      letter-spacing: 1px;
    }
    footer {
      background-color: var(--highlight);
      text-align: center;
      padding: 1.5rem;
      color: #5d4f47;
      font-size: 0.9rem;
      font-weight: 300;
    }
    ul {
      padding-left: 1.2rem;
    }
    li {
      margin-bottom: 0.3rem;
      font-size: 0.9rem;
      font-weight: 300;
    }
    
        /* Image Gallery Styles */
    .image-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
      margin: 1rem 0;
    }

    .image-gallery img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .image-gallery img:hover {
      transform: scale(1.05);
    }

    .image-preview {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    .image-preview img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 4px;
    }

    /* Home Button */
    .home-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--highlight);
      color: #4c403b;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 99;
      transition: all 0.3s;
    }
    .home-btn:hover {
      background-color: #f0b9ad;
      transform: scale(1.1);
    }
    
    .dropbtn {
      border: none;
      background-color: transparent;
      text-decoration: none;
      color: #4c403b;
      font-weight: 400;
      font-size: clamp(0.8rem, 3vw, 1rem);
      transition: all 0.3s;
      padding: 0.7rem 1rem;
      border-radius: 0.5rem;
      white-space: nowrap;
      font-family: 'Raleway', sans-serif;
    }
    .dropbtn:hover, .dropbtn.active {
      color: #f2d0af;
      background-color: rgba(219, 139, 117, 0.1);
    }

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}
.cursive-font {
  font-family: 'Dancing Script', cursive;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 20px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color:  #fffff7;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color:   #fffff7;}


  /* Container for hamburger to center it responsively */
  .hamburger-container {
    display: none; /* hidden by default */
    padding: 0.5rem 0 0;
    padding-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  /* Hamburger button styles */
  .hamburger {
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }
  .hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: #4c403b;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* Show hamburger container on mobile only */
  @media (max-width: 768px) {
    .hamburger-container {
      display: flex;
    }
  }

  /* Overlay menu fullscreen */
  .overlay-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background-color: #fff8f4;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    z-index: 1000;
    overflow-y: auto;
  }

  /* Overlay active (visible) */
  .overlay-menu.active {
    right: 0;
  }

  /* Close button */
  .close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #4c403b;
    margin-bottom: 2rem;
  }

  /* Menu list */
  .menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .menu-links > li {
    margin-bottom: 1.5rem;
  }

  .menu-links a,
  .submenu-toggle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    color: #4c403b;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .menu-links a:hover,
  .submenu-toggle:hover {
    color: #f2d0af;
  }

  /* Submenu */
  .submenu {
    display: none;
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
  }

  .submenu li {
    margin-bottom: 1rem;
  }

  .submenu li a {
    font-size: 1rem;
  }

  /* Show submenu */
  .submenu.show {
    display: block;
  }

  /* Hide hamburger and overlay on desktop */
  @media (min-width: 769px) {
    .overlay-menu {
      display: none !important;
    }
  }
.pc-nav {
  display: block;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--accent-bg);
}


@media (max-width: 768px) {
  .pc-nav {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

    
    /* Responsive */
    @media (max-width: 768px) {
      nav {
        gap: 0.5rem;
        padding: 0.8rem;
      }
      nav a {
        padding: 0.4rem 0.8rem;
      }
      section {
        padding: 1.5rem 1rem;
      }
      .grid {
        gap: 1rem;
      }
      .card {
        padding: 1.2rem;
      }
      .hero-image {
        height: 30rem;
      }
    }
    
    @media (max-width: 480px) {
      header {
        padding: 1.5rem 1rem;
      }
      nav {
        gap: 0.3rem;
      }
      .home-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
    }

 .image-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9); /* Dark background */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      animation: fadeIn 0.3s ease;
      cursor: zoom-in;
    }

    .image-overlay img {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 10px;
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }

    .close-button {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 2rem;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
      font-weight: bold;
      z-index: 10000;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }