* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Comic Sans MS", sans-serif;
    background-color: #fffefb;
    color: #333;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    font-weight: bold;
    font-size: 16px;
  }
  
  .nav-left {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  
  .nav-left a {
    text-decoration: none;
    color: black;
  }
  
  .contact {
    text-decoration: none;
    color: black;
  }
  
  .hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 80px;
    gap: 60px;
    background-color: #fffbe8;
    min-height: calc(100vh - 100px);
    font-family: "Comic Sans MS", sans-serif;
  }
  
  .hero-img {
    width: 50%;
    height: auto;
    margin: 0;
  }
  
  
  .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    height: 100%;
    text-align: left;
    max-width: 400px;
  }
  
  .slogan {
    color: #f3b500;
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .hero-text h1 {
    font-size: 60px;
    color: #c95e0c;
    margin-bottom: 100px;
    align-items: center;
    text-align: center;
  }
  
  .start-btn {
    display: inline-block;
    padding: 16px 40px;             
    font-size: 20px;               
    border: 3px solid #c95e0c;    
    border-radius: 32px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    background-color: #fffdf5;
    transition: all 0.3s ease;
  }
  
  .start-btn:hover {
    background-color: #fceabb;
  }
  
@media (max-width: 768px) {

    nav {
      flex-direction: row;
      padding: 16px 24px;
      font-size: 14px;
    }
  
    .nav-left {
      flex-direction: row;          
      gap: 16px;
      padding: 6px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
  
    .hero {
      flex-direction: column;
      padding: 24px;
      gap: 32px;
      height: auto;                
    }
  
    .hero-img {
      width: 100%;
      height: auto;
    }
  
    .hero-text {
      align-items: center;
      text-align: center;
      max-width: 100%;
      padding: 0 20px;
    }
  
    .slogan {
      font-size: 20px;
    }
  
    .hero-text h1 {
      font-size: 36px;
      margin-bottom: 40px;
    }
  
    .start-btn {
      font-size: 18px;
      padding: 14px 32px;
    }
  }
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #fde9cc;
    font-family: "Comic Sans MS", sans-serif;
    color: #333;
  }
  
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    font-weight: bold;
    font-size: 16px;
  }
  
  .nav-left {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  
  .nav-left a,
  .contact {
    text-decoration: none;
    color: black;
  }
  
  
  .top-image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .top-image img {
    width: 320px;
    max-width: 80%;
    height: auto;
  }
  
  
  .page-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin: 24px 0;
  }
  
  
  .egg-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    justify-items: center;
    padding: 40px 60px;
  }
  
  .egg-gallery a {
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  
  .egg-gallery a:hover {
    transform: scale(1.1);
  }
  
  .egg-gallery img {
    width: 220px;
    height: auto;
  }
  
  
  .back-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
  }
  
  .back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 48px;
    border: 3px solid #f8d88c;
    border-radius: 50px;
    background-color: #fffdf5;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: black;
    transition: all 0.3s ease;
    min-width: 160px;
  }
  
  .back-button:hover {
    background-color: #fceabb;
  }
  
  
  @media (max-width: 768px) {
    nav {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
      padding: 16px 24px;
    }
  
    .nav-left {
      flex-direction: row;
      gap: 16px;
      flex-wrap: nowrap;
    }
  
    .contact {
      white-space: nowrap;
      font-size: 14px;
    }
  
    nav a,
    .nav-left a {
      font-size: 14px;
    }
  
    .top-image img {
      width: 250px;
    }
  
    .page-title {
      font-size: 22px;
      margin: 16px 0;
    }
  
    .egg-gallery {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding: 20px;
    }
  
    .egg-gallery img {
      width: 140px;
    }
  
    .back-button-wrapper {
      padding: 40px 0;
    }
  
    .back-button {
      font-size: 18px;
      padding: 12px 36px;
      height: auto;
    }
  }

.ag-body {
  background-color: #fcefe3;
  font-family: "Comic Sans MS", sans-serif;
  margin: 0;
  color: #5a3d2b;
}

.ag-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

.ag-back-button {
  font-size: 24px;
  text-decoration: none;
  color: #333;
}

.ag-nav a {
  margin-left: 12px;
  text-decoration: none;
  font-weight: bold;
  color: #5a3d2b;
  font-size: 14px;
}

.ag-emoji-bar {
  text-align: center;
  margin-top: 10px;
}

.ag-emoji-img {
  width: 80%;
  max-width: 300px;
}

.ag-main-section {
  text-align: center;
  padding: 20px;
}

.ag-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.ag-main-img {
  width: 100px;
  margin-bottom: 10px;
}

.ag-description {
  font-size: 14px;
  padding: 0 16px;
  line-height: 1.6;
}

.ag-materials {
  text-align: center;
  margin: 30px 0;
}

.ag-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
}

.ag-material-img {
  width: 80%;
  max-width: 400px;
}

.ag-gallery {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 10px 16px;
  scroll-snap-type: x mandatory;
}

.ag-show-img {
  width: 80%;
  flex-shrink: 0;
  border-radius: 10px;
  scroll-snap-align: center;
}

.ag-divider {
  width: 80%;
  height: 4px;
  background-color: pink;
  margin: 30px auto;
  border-radius: 2px;
}

.ag-feedback {
  padding: 0 20px;
}

.ag-feedback-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.ag-feedback-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ag-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: lightgray;
  margin-right: 15px;
  object-fit: cover;
}

.ag-footer {
  text-align: center;
  padding: 30px 10px;
  background-color: #fcefe3;
}

.ag-footer-main {
  width: 80px;
  margin-bottom: 10px;
}

.ag-footer-tagline {
  font-size: 14px;
  margin: 5px 0;
}

.ag-footer-brand {
  margin: 5px 0;
  font-size: 16px;
}

.ag-footer-icons img {
  width: 24px;
  margin: 3px;
}

@media (min-width: 1024px) {
 
  .ag-emoji-bar {
    margin-top: 40px;
  }

  .ag-emoji-img {
    width: 400px;
    max-width: 90%;
  }

  
  .ag-main-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    text-align: left;
    padding: 40px 80px;
  }

  .ag-main-img {
    width: 160px;
  }

  .ag-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  
  .ag-description {
    max-width: 460px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    padding: 0;
  }

  
  .ag-materials {
    text-align: center;
    margin: 50px auto;
  }

  .ag-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .ag-material-img {
    width: 800px;
    max-width: 90%;
  }

  
  .ag-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 40px 0;
    overflow: visible;
  }

  .ag-show-img {
    width: 300px;
    scroll-snap-align: unset;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .ag-feedback-title {
    text-align: center;
    font-size: 22px;
    margin: 60px 0 30px;
  }

  .ag-feedback {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 40px;
    flex-wrap: nowrap;
  }

  .ag-feedback-box {
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ag-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: lightgray;
    margin-bottom: 10px;
    object-fit: cover;
  }

  .ag-feedback-box p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }

  .ag-footer {
    display: none;
  }
}

@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.ag-back-button {
  animation: floatUpDown 2s ease-in-out infinite;
}


.ag-nav a:hover,
.contact:hover {
  transform: translateY(-3px) scale(1.05);
  transition: transform 0.3s ease;
}

.nav-left a {
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-left a:hover {
  transform: translateY(-4px) scale(1.05);
  color: #f3b500; 
}