

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fef9e7;
  color: #333;
  overflow-x: hidden;
}

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  width: 100%;
  background: linear-gradient(135deg, #ff6f61, #ff9447);
  padding: 20px 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #fef9e7;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #fef9e7;
}

.burger {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}
body.no-scroll {
  overflow: hidden;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff9447, #ff6f61);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(20px); }
  50% { transform: translateY(0); }
}

@keyframes slideInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  to { opacity: 1; transform: scale(1); }
}

section {
  padding: 80px 0;
  position: relative;
}
.section-top{
    padding-top: 130px;
}
.hero {
    max-height: 1200px;
  background: url('image/banner.webp') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}
.hero::before, .menu-intro::before{
position: absolute;
content: '';
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 5;
  animation: fadeIn 1s ease;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease;
}

.hero p {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto 30px;
  animation: slideInRight 1s ease;
}

.story .container {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeIn 1s ease;
}

.story img {
  width: 50%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  animation: float 3s ease-in-out infinite;
}

.menu-slider  {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  text-align: center;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 0.5s forwards;
}

.slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: #ff6f61;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}
.reviews .container {
      text-align: center;
    }

    .reviews h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 40px;
      color: #ff6f61;
    }

    .review-list , .process-grid{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 20px;
    }

    .review-card {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
    }

    .review-card .rating {
      font-size: 1.2rem;
      color: #ff9447;
      margin-bottom: 10px;
    }

    .review-card .rating i {
      margin-right: 5px;
    }

    .review-card p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .review-card .name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
      text-align: right;
    }
.recipes {
  background: linear-gradient(135deg, #fff, #f8e1c8);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.recipes .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.recipes-content {
  padding: 40px;
}

.recipes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.recipes-step {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.recipes-step:nth-child(1) { animation-delay: 0.1s; }
.recipes-step:nth-child(2) { animation-delay: 0.2s; }
.recipes-step:nth-child(3) { animation-delay: 0.3s; }
.recipes-step:nth-child(4) { animation-delay: 0.4s; }

.accordion-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.accordion-header {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s;
}

.accordion-header:hover {
  color: #ff6f61;
}

.accordion-content {
  display: none;
  padding: 15px;
  font-size: 1rem;
  animation: fadeIn 0.3s ease;
}

.accordion-item.active .accordion-content {
  display: block;
}

.form-section {
  background: #fff;
}

.form-section .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section input,
.form-section textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-section input:focus,
.form-section textarea:focus {
  border-color: #ff6f61;
  outline: none;
}

.form-section button {
  align-self: flex-start;
  border: none;
}
/* Our Craft Page Styles */
.intro .container {
  text-align: center;
  animation: fadeIn 1s ease;
}

.intro h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease;
}

.intro p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  animation: slideInRight 1s ease;
}

.ingredients .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ingredients img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}


.process-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }

.process-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.history .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.history img {
  width: 50%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.tools .container {
  text-align: center;
}

.tools-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}
.tools-slider::-webkit-scrollbar{
    width: 0;
}

.tool-item {
  flex: 1 0 250px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: center;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.tool-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pairings .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pairings img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.events .container {
  text-align: center;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.event-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.event-item:nth-child(1) { animation-delay: 0.1s; }
.event-item:nth-child(2) { animation-delay: 0.2s; }
.event-item:nth-child(3) { animation-delay: 0.3s; }

.event-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.community .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.community-card {
  background: linear-gradient(135deg, #fff, #f8e1c8);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.community-card:hover {
  transform: scale(1);
}

.community-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

    .sourcing h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 20px;
      color: #ff6f61;
    }

    .sourcing p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .sourcing-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 20px;
    }

    .source-item {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
    }

    .source-item h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #333;
    }

    .source-item p {
      font-size: 1rem;
      line-height: 1.6;
    }
.menu-intro{
    padding: 200px 0;
    position: relative;
    background: url(image/combo2.webp) center / cover no-repeat;
}
.menu-intro .container {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 5;
  animation: fadeIn 1s ease;
}

.menu-intro h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease;
}

.menu-intro p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  animation: slideInRight 1s ease;
}

.signature{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.pizza-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.pizza-card:nth-child(1) { animation-delay: 0.1s; }
.pizza-card:nth-child(2) { animation-delay: 0.2s; }
.pizza-card:nth-child(3) { animation-delay: 0.3s; }

.pizza-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pizza-card .price {
  font-size: 1.2rem;
  color: #ff6f61;
  margin: 10px 0;
}

.specialty .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.specialty img {
  width: 50%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.sides  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.side-card {
  background: linear-gradient(135deg, #fff, #f8e1c8);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.side-card:hover {
  transform: scale(1);
}

.side-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.drinks .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.drinks img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.customize .container {
  text-align: center;
  background: linear-gradient(135deg, #fff, #f8e1c8);
  padding: 40px;
  border-radius: 20px;
}

.customize img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin: 20px auto;
}

.combos  {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.combo-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.combo-card:nth-child(1) { animation-delay: 0.1s; }
.combo-card:nth-child(2) { animation-delay: 0.2s; }
.combo-card:nth-child(3) { animation-delay: 0.3s; }

.combo-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.dietary .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.dietary-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.dietary-card:nth-child(1) { animation-delay: 0.1s; }
.dietary-card:nth-child(2) { animation-delay: 0.2s; }
.dietary-card:nth-child(3) { animation-delay: 0.3s; }

.dietary-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.how-it-works .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.step img {
  width: 100px;
  border-radius: 10px;
}

.times .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.times img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.packaging .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.packaging img {
  width: 50%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promos .container {
  text-align: center;
}

.promo-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 600px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.promo-item:nth-child(1) { animation-delay: 0.1s; }
.promo-item:nth-child(2) { animation-delay: 0.2s; }

.faq-delivery .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }

.tip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.tip-item {
  background: linear-gradient(135deg, #fff, #f8e1c8);
  padding: 20px;
  border-radius: 15px;
  max-width: 300px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.5s forwards;
}

.tip-item:nth-child(1) { animation-delay: 0.1s; }
.tip-item:nth-child(2) { animation-delay: 0.2s; }
.tip-item:nth-child(3) { animation-delay: 0.3s; }

.tip-item i {
  font-size: 30px;
  color: #333;
}

/* Privacy Policy and Terms of Service Styles */
.container h2, .container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.container h3 {
  font-size: 1.5rem;
  margin: 20px 0 10px;
}

.container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.container ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.container ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Thank You Page Styles */
#thank-you .container {
  text-align: center;
  padding: 40px 20px;
}

#thank-you h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ff6f61;
}

#thank-you p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Footer Styles */
footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-column h3, a.footer-logo {
    font-size: 20px;
    display: inline-block;
  margin: 0 0  20px;
}

.footer-column a:hover {
  color: #ff6f61;
}
.crew-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .crew-item {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      max-width: 400px;
      text-align: left;
    }

    .crew-item h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #333;
    }

    .crew-item p {
      font-size: 1rem;
      line-height: 1.6;
    }
@media (max-width: 768px) {
  nav {
    transform: translateX(100%);
    transition: transform 0.3s ease;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ff6f61;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  nav.active {
   transform: translateX(0%);
  }
  nav a {
    font-size: 1.5rem;
  }
  .burger {
    display: block;
  }
  .story .container,
  .ingredients .container,
  .history .container,
  .pairings .container,
  .specialty .container,
  .drinks .container,
  .times .container,
  .tracking .container,
  .packaging .container {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .story img,
  .history img,
  .specialty img,
  .drinks img,
  .times img,
  .tracking img,
  .packaging img {
    width: 100%;
  }
  .recipes .container {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  #thank-you h1 {
    font-size: 2rem;
  }
  #thank-you p {
    font-size: 1rem;
  }
  .container, .header-content {
    padding: 0 10px;
  }
  .container h2, .container h1 {
  font-size: 2rem;
}
.logo{
    font-size: 1.6rem;
}
.reviews h2 {
        font-size: 2rem;
      }
      .review-card {
        padding: 15px;
      }
      .customize .container, .recipes-content {
        padding: 20px;
      }
}