@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto/Roboto-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #FFF7E6;
  color: #2F2F2F;
}

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

header {
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  animation: slideIn 0.5s ease-in;
}

@keyframes slideIn {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  color: #FFF;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #FFF;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  font-size: 1.5rem;
  color: #FFF;
  cursor: pointer;
}

section {
  padding: 80px 0;
}

h2, h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

p, ul {
  margin-bottom: 20px;
  line-height: 1.6;
}

ul {
  padding-left: 20px;
}

.btn {
  background: #FF6B6B;
  color: #FFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

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

.hero {
  height: 100vh;
  max-height: 1200px;
  background: url('image/banner.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFF;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.text-image {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: slideUp 0.8s ease-in;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.text-image img {
  width: 50%;
  border-radius: 20px;
}

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

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

.slide {
  min-width: 100%;
  text-align: center;
  position: relative;
}

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

.slide-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #FFF;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 10px;
  animation: fadeIn 1s ease-in;
}

.cards, .feature-grid, .benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card, .feature-card, .benefit-card {
  background: #FFF;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover, .feature-card:hover {
  transform: translateY(-10px);
}

.card i, .feature-card i, .benefit-card i {
  font-size: 2rem;
  color: #FF6B6B;
  margin-bottom: 10px;
}

.tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tab-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.tab-nav button {
  background: #FFA500;
  color: #FFF;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.tab-nav button.active {
  background: #FF6B6B;
}

.tab-content {
  display: none;
  padding: 20px;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}
.tab-content img{
  border-radius: 10px;
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

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

.accordion-title {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-title:hover {
  background: #FFF7E6;
}

.accordion-content {
  display: none;
  padding: 15px;
}

.accordion-item.active .accordion-content {
  display: block;
  animation: slideDown 0.3s ease-in;
}

@keyframes slideDown {
  from { opacity: 0; height: 0; }
  to { opacity: 1; height: auto; }
}

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

.hack-card {
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  color: #FFF;
  padding: 20px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.hack-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transition: transform 0.5s;
}

.hack-card:hover::before {
  transform: rotate(0deg);
}

.recipe-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.recipe-card {
  background: #FFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.recipe-card:hover {
  transform: scale(1.05);
}

.recipe-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recipe-card-content {
  padding: 15px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.timeline-item img {
  width: 40%;
  border-radius: 10px;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

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

.step {
  background: #FFF;
  padding: 20px;
  border-radius: 15px;
  width: 300px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  left: 20px;
  background: #FF6B6B;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 50%;
  font-weight: bold;
}

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

.material-card {
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  color: #FFF;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.material-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transition: transform 0.5s;
}

.material-card:hover::before {
  transform: rotate(45deg);
}

.quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #FFF;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 4rem;
  color: #FF6B6B;
  position: absolute;
  top: -20px;
  left: 20px;
}

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

.craftsman-card {
  text-align: center;
}

.craftsman-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin:0 auto 10px;
}

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

.product-card {
  background: #FFF;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

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

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-card .price {
  color: #FF6B6B;
  font-weight: bold;
  margin-bottom: 10px;
}

.spotlight {
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  color: #FFF;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.spotlight img {
  width: 300px;
  border-radius: 10px;
  margin: 20px auto;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 15px;
  border: 1px solid #FFA500;
  border-radius: 10px;
}
button{
  border: none;
}
footer {
  background: #2F2F2F;
  color: #FFF;
  padding: 40px 0;
}

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

.footer-column {
  flex: 1;
  margin-right: 40px;
}

.footer-column:last-child {
  margin-right: 0;
}

.footer-column a {
  color: #FFA500;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}
.footer-column h3, a.footer-logo {
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
  display: inline-block;

}
.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF7E6, #FFE4B5);
}

.thank-you-page h1 {
  font-size: 3rem;
  color: #FF6B6B;
}

.thank-you-page p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-top{
  padding-top: 130px;
}
.review-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .review-card {
      background: #FFF;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-10px);
    }

    .review-card img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .review-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: #FF6B6B;
      margin-bottom: 10px;
    }

    .review-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #2F2F2F;
    }
@media (max-width: 768px) {
  .nav-links {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF6B6B;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .nav-links.active {
    transform: translateX(-0%);
  }

  .burger {
    display: block;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .text-image {
    flex-direction: column;
  }

  .text-image img {
    width: 100%;
    min-height: 250px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-item::before {
    left: 20px;
  }

  .timeline-item, .timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .timeline-item img {
    width: 100%;
  }

  .thank-you-page h1 {
    font-size: 2rem;
  }

  .thank-you-page p {
    font-size: 1rem;
  }
  .container{
    padding: 0 10px;
  }
  h2, h1{
    font-size: 2rem;
  }
  .logo{
    font-size: 1.6rem;
  }
  .review-grid {
        grid-template-columns: 1fr;
      }

      .review-card img {
        width: 80px;
        height: 80px;
      }

      .review-card h3 {
        font-size: 1.3rem;
      }

      .review-card p {
        font-size: 0.9rem;
      }
      .spotlight{
        padding: 30px 20px;
      }
      .tab-nav button{
        padding: 10px;
      }
}