/* General Styles */
body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Nunito', sans-serif;
    background-color: #fff9f7;
    color: #333;
  }
  
  h1, h2, h3 {
    font-family: 'Nunito', sans-serif;
    color: #5a4b44;
  }
  
  /* Header */
  header {
    background-color: #f7e8e1;
    padding: 1em 2em;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
  }
  
  /* Hamburger button */
  .hamburger {
    display: none; /* hidden by default */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000; /* on top of nav */
    margin-right: 1rem; /* spacing from logo */
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #5a4b44;
    border-radius: 2px;
    margin-bottom: 5px;
  }
  
  .hamburger span:last-child {
    margin-bottom: 0;
  }
  
  .hamburger:hover {
    opacity: 0.7;
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #5a4b44;
    gap: 10px;
  }
  
  .logo-img {
    height: 60px;
    width: auto;
    max-height: 60px;
  }
  
  /* Navigation - overlay menu for small screens */
  nav {
    position: fixed;
    top: 0;
    right: -100%; /* hidden off screen right */
    height: 100vh;
    width: 250px;
    background-color: #f7e8e1;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 1500;
    overflow-y: auto;
  }
  
  /* Show nav overlay when active */
  nav.show {
    right: 0;
  }
  
  /* Nav links */
  nav a {
    text-decoration: none;
    color: #5a4b44;
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  /* Larger screens: show nav inline */
  @media (min-width: 769px) {
    .hamburger {
      display: none;
    }
  
    nav {
      position: static;
      height: auto;
      width: auto;
      flex-direction: row;
      padding: 0;
      box-shadow: none;
      right: 0;
      transition: none;
      margin-left: auto; /* push nav to right */
      gap: 1.5em;
    }
  }
  
  /* Main content */
  main {
    padding: 2em;
  }
  
  /* Hero Banner */
  .hero-image {
    display: flex;
    justify-content: center;
    padding: 2em 1em;
  }
  
  .hero-image img {
    width: 500px;
  }
  
  /* Sections */
  .intro, .mission, .highlight {
    max-width: 800px;
    margin: 3em auto;
    text-align: center;
  }
  
  .highlight ul {
    list-style: none;
    padding: 0;
  }
  
  .highlight li {
    background: #f3e2d9;
    margin: 0.5em 0;
    padding: 1em;
    border-radius: 6px;
    color: #4d3e37;
  }
  
  /* Footer */
  footer {
    background-color: #f7e8e1;
    padding: 1em;
    text-align: center;
    border-top: 2px solid #e8dcd6;
    margin-top: 2em;
  }

  .doll-card {
    display: inline-block;
    width: 280px;          /* fixed width for cards */
    background-color: #fff9f7;
    border: 1px solid #e8dcd6;
    border-radius: 12px;
    padding: 1em;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 0.5em;
    vertical-align: top;
  }
  
  .doll-card img {
    max-width: 100%;       /* limit image width to card width */
    height: auto;
    border-radius: 12px;
    display: block;
    margin-bottom: 0.75em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .logo-img {
      height: 50px;
    }
  
    .logo {
      font-size: 1.4rem;
    }
  
    .hero-image img {
      width: 400px;
    }
  }
  
  @media (max-width: 480px) {
    .logo-img {
      height: 45px;
    }
  
    .logo {
      font-size: 1.1rem;
    }
  
    .hero-image img {
      width: 360px;
    }
  }
  
  /* Large Screens */
  @media (min-width: 1024px) {
    .hero-image img {
      width: 1000px;
    }
  }
  