@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins/Poppins-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: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE082 100%);
  color: #3C2F2F;
  overflow-x: hidden;
}

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

header {
  position: fixed;
  width: 100%;
  background: #FF6F00;
  padding: 20px 0;
  z-index: 1000;
}

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;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #FFE082;
}

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

.section {
  padding: 80px 0;
}

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

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #FF8F00, #FFCA28);
  color: #FFF;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Index Page Styles */
.hero {
  height: 100vh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  background: url('image/banner.webp') center/cover;
  color: #FFF;
  text-align: center;
}
.hero::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(45, 25, 10, 0.6);
}

.hero-content {
  position: relative;
  z-index: 5;;
}

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

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

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

.about-img, .about-text {
  flex: 1;
}

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

.product-card, .recipe-card, .testimonial-card {
  background: #FFF;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

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

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

.product-card img, .recipe-card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.recipe-content {
  padding: 20px;
}

.testimonials {
  background: #FFE082;
  text-align: center;
}

.testimonial-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

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

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

.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-controls button {
  background: #FF6F00;
  border: none;
  color: #FFF;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}


.gallery-item img {
  height: 250px;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.contact-form {
  background: #FFF;
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #DDD;
  border-radius: 5px;
}

.contact-form button {
  background: #FF6F00;
  color: #FFF;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
}
.contact-form label{
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.contact-form label input{
    width: auto;
    margin: 0;
}

/* Our Craft Page Styles */
.craft-intro{
  text-align: center;
  background: url('image/cooking.jpeg') center/cover;
  color: #FFF;
  position: relative;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF;
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.timeline-item:hover {
  transform: translateY(-10px);
}

.timeline-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.material-showcase, .craftsmen-stories,.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.material-card{
  position: relative;
}
.material-card, .story-card, .impact-card {
  background: #FFF;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}
.impact-card i{
    font-size: 30px;
    color: #FF6F00;
}
.material-card::before, .use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #FF6F00, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.material-card:hover::before, .use-case-card:hover::before {
  opacity: 0.2;
}

.material-card img, .impact-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

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

.story-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.sustainability-commitment .container, .care-tips .container{
  display: flex;
  align-items: center;
  gap: 40px;
}

.sustainability-img, .care-img {
  flex: 1;
}

.sustainability-text, .care-text {
  flex: 1;
}
.white{
    color: #fff;
}
.img{
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin: 20px auto 0 ;
}
.catalog-intro {
  text-align: center;
  background: url('image/banner2.webp') center/cover;
  color: #FFF;
  position: relative;
}

.catalog-intro::before, .craft-intro::before {
  background: rgba(80, 41, 10, 0.6);
position: absolute;
content: '';
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.catalog-intro .container, .craft-intro .container{
    position: relative;
    z-index: 5;
}
.featured-product {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #FFF;
  padding: 40px;
  border-radius: 15px;
}

.featured-img, .featured-text {
  flex: 1;
}

.product-card .price, .bundle-card .price {
  font-size: 1.2rem;
  color: #D84315;
  margin: 10px 0;
}

.category-slider {
  height: 400px;
}

.category-slide img {
  height: 400px;
}

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

.use-case-card, .bundle-card {
  background: #FFF;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.use-case-card img, .bundle-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.bundle-offer {
  text-align: center;
  background: #FFE082;
  padding: 80px 0;
}


.support-intro, .shipping-details, .return-policy, .order-tracking {
  background: #FFF;
text-align: center;
}

.faq-item {
  background: #FFF;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

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

.faq-header:hover {
  background: #FFE082;
}

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

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

.warranty-info {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF;
  padding: 20px;
  border-radius: 15px;
}

.warranty-img {
  width: 50%;
}

.warranty-text {
  flex: 2;
}

.return-policy {
  background: #FFE082;
  padding: 80px 0;
}

.troubleshooting-item, .manual-item {
  background: #FFF;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.manual-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.manual-img {
  max-width: 200px;
}

.section-top{
    padding-top: 130px;
}
/* Privacy and Terms Pages Styles */
.policy-section, .terms-section {
  background: #FFF;
  padding: 40px;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.policy-section p, .terms-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.policy-section ul, .terms-section ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

/* Thank You Page Styles */
.thanks-container {
  max-width: 800px;
  padding: 40px;
  background: #FFF;
  border-radius: 15px;
  text-align: center;
}

.thanks-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0 10px;
}

footer {
  background: #3C2F2F;
  color: #FFF;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.footer-grid div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-grid a {
  color: #FFE082;
  text-decoration: none;
}
a.footer-logo{
    color: #fff;
    font-size: 19px;
}
/* Media Queries */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FF6F00;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .no-scroll {
    overflow: hidden;
  }

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

  .about .container, .sustainability-commitment .container, .timeline-item , .care-tips .container, .featured-product, .warranty-info, .manual-item {
    flex-direction: column;
  }

  .slider {
    height: 400px;
  }

  .slide img{
    height: 400px;
  }
.slider-text{
    width: 80%;
}
  .warranty-img, .manual-img {
    max-width: 100%;
    width: 100%;
  }

  .contact-form, .policy-section, .terms-section, .thanks-container, .featured-product {
    padding: 20px;
  }

  .thanks-container h1 {
    font-size: 2rem;
  }
  h2, h1{
    font-size: 2rem;
  }
  .container{
    padding: 0 10px;
  }
  .thanks-container{
    padding: 20px;
  }
}