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

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #f7e7d4, #fff3e6);
  color: #2b2b2b;
}
a{
    color: inherit;
    text-decoration: none;
}

img{
    max-width: 100%;
    object-fit: cover;
}
button{
    border: none;
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(90deg, #d4a373, #8b5e3c);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #fff;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

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

.burger {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}
.center{
    text-align: center;
}
.section {
  padding: 80px 0;
}
.section-top{
    padding-top: 150px;
}
.section h2, h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #8b5e3c;
}

.section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #8b5e3c;
}

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

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

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

/* Hero Section (index) */
.hero {
  height: 100vh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  background: url('image/banner.jpeg') center/cover;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::before{
    content: '';
    position: absolute;
    left: 0;top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 4;
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #fff;
  margin-bottom: 20px;
}

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

/* Buttons */
.btn, .order-btn, .home-btn {
  background: linear-gradient(45deg, #d4a373, #8b5e3c);
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 1rem;
}

.btn:hover, .order-btn:hover, .home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Story Section (index, story) */
.story, .split-section, .journey-map {
  display: flex;
  gap: 40px;
  align-items: center;
}

.story img, .split-section img, .journey-map img {
  width: 50%;
  border-radius: 10px;
  transition: transform 0.5s;
}

.story img:hover, .split-section img:hover, .journey-map img:hover {
  transform: scale(1.1);
}

/* Product Cards (index, catalog, story) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: сenter;
  justify-content: center;
}
.product-card a{
    margin-top: auto;
}
.product-card:hover {
  transform: scale(1.05);
}

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

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

.product-card .price {
  font-weight: bold;
  color: #8b5e3c;
  margin-bottom: 15px;
}

/* Slider Sections (index, catalog) */
.slider-section, .slider {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  position: relative;
  padding: 0;
}

.slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 3;
  padding: 20px;
  border-radius: 10px;
}

.slider-card {
  flex: 1 0 280px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.slider h2{
    color: #fff;
}

.slider-card img {
  width: 100%;
  border-radius: 10px;
}

@keyframes slide {
  0% { transform: translateX(0); }
  50% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
 .split-screen {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .split-screen img {
      width: 50%;
      border-radius: 10px;
      transition: transform 0.5s;
    }

    .split-screen img:hover {
      transform: scale(1.1);
    }
/* Accordion (index, delivery) */
.accordion {
  margin: 20px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-header {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7e7d4;
}

.accordion-header i {
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

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

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

/* Testimonials (index) */
.testimonials {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
}

.testimonial-card {
  background: #f7e7d4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 300px;
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Gift Guide (index) */
.gift-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.guide-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide-card a{
    margin-top: auto;
}
.guide-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.guide-card img {
  width: 100%;
  border-radius: 10px;
}
.video-section {
      position: relative;
      text-align: center;
      padding: 100px 20px;
      background: #f7e7d4;
    }

    .video-placeholder {
      width: 100%;
      max-width: 800px;
      height: 450px;
      margin: 0 auto 20px;
      border-radius: 10px;
    }
    .video-placeholder iframe{
        height: 100%;
        width: 100%;
    }
    .video-section p {
      max-width: 800px;
      margin: 0 auto;
    }

    .mosaic-section {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 20px 0;
    }

    .mosaic-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }

    .mosaic-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 200px;
    }

    .mosaic-item:nth-child(1) {
      grid-column: 1 / 2;
      grid-row: 1 / 3;
    }

    .mosaic-item:nth-child(4) {
      grid-column: 3 / 4;
      grid-row: 1 / 3;
    }

    .mosaic-text {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }

    .map-section {
      position: relative;
      padding: 80px 20px;
      text-align: center;
    }

    .map-placeholder {
      width: 100%;
      max-width: 1000px;
      height: 400px;
      margin: 0 auto 20px;
      border-radius: 10px;
      background: url('image/banner.jpeg') center/cover;
    }

    .map-section p {
      max-width: 800px;
      margin: 0 auto;
    }
/* Behind Scenes, Featured Item (index, catalog) */
.behind-scenes, .featured-item {
  background: url('image/bag.jpeg') center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.behind-scenes{
    background: url('image/cermics.jpeg') center/cover;
}

.behind-scenes h2, .featured-item h2{
    color: #fff;
}

.behind-scenes-content, .featured-content {
  background: rgba(139, 94, 60, 0.8);
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Form (index) */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: linear-gradient(45deg, #d4a373, #8b5e3c);
  border: none;
  padding: 12px 30px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.contact-form label{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}
.contact-form label input{
    width: 13px;
}

/* Masonry Gallery (catalog) */
.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
}

.masonry-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  break-inside: avoid;
  padding: 20px;
  text-align: center;
}

.masonry-item img {
  width: 100%;
  border-radius: 10px;
}

/* Category List (catalog) */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.category-card {
  background: #f7e7d4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.category-card img {
  width: 100%;
  border-radius: 10px;
}

/* Interactive Showcase (catalog) */
.interactive-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.showcase-item h3{
    color: #fff;
}

.showcase-item img {
  width: 100%;
  transition: transform 0.5s;
}

.showcase-item:hover img {
  transform: scale(1.2);
}

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

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

/* Timeline (story) */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

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

.timeline-item img {
  width: 150px;
  border-radius: 10px;
  margin-right: 20px;
}

.img-story{
    max-width: 800px;
}

/* Gallery (story) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.5s;
}

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

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

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

/* Quote Section (story) */
.quote-section {
  text-align: center;
  background: #f7e7d4;
  padding: 60px 20px;
}

.quote-section p {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 20px;
}

/* Artisan Grid (story) */
.artisan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.artisan-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.artisan-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Inspiration Section (story) */
.inspiration-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.inspiration-section img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.img{
    max-width: 800px;
}

/* Process Steps (delivery) */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.step-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  transition: transform 0.3s;
}

.step-card i{
    color: #8b5e3c;
 display: inline-block;
    margin-bottom: 10px;
    font-size: 34px;
}

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

.step-card img {
  width: 100px;
  margin-bottom: 15px;
}

/* Delivery Table (delivery) */
.delivery-table {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.delivery-table table {
  width: 100%;
  border-collapse: collapse;
}

.delivery-table th, .delivery-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.delivery-table th {
  background: #f7e7d4;
  color: #8b5e3c;
}

/* Map Section (delivery) */
.map-section {
  text-align: center;
}

.map-section img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin-top: 20px;
}

/* Thanks Page Specific */
.thanks-page {
    text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.thanks-page a{
    margin-top: 30px;
}
/* Footer (all except thanks) */
footer {
  background: #2b2b2b;
  color: #fff;
  padding: 40px 0;
}

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

.footer-column {
  flex: 1;
}
.footer-column p{
   line-height: 1.7;
}


.footer-column a {
  color: #f7e7d4;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-column h3 ,.footer-logo{
    font-weight: bold;
    color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

@media (max-width: 1024px){
 .testimonial-carousel {
    flex-direction: column;
    animation: none;
  }
  .slider{
    flex-wrap: wrap;
  }

  .img-story,.img{
    max-width: 100%;
  }
}
/* Media Queries */
@media (max-width: 768px) {
    .delivery-table {
        padding: 20px 10px;
    }
    .section h2, h1{
        font-size: 2rem;
    }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #8b5e3c;
    padding: 20px;
  }

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

  .burger {
    display: block;
  }

  body.no-scroll {
    overflow: hidden;
  }

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

  .story, .split-section, .journey-map {
    flex-direction: column;
  }

  .story img, .split-section img, .journey-map img {
    width: 100%;
  }

  .footer-columns {
    flex-direction: column;
  }

 

  .testimonial-card {
    min-width: 100%;
  }

  .masonry-gallery {
    column-count: 1;
  }

  .interactive-showcase {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
  }

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

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

  .container.thanks-page {
    padding: 15px;
  }

  h2.thanks-page {
    font-size: 2rem;
  }

  p.thanks-page {
    font-size: 1rem;
  }

  .container{
    padding: 0 10px;
  }
  .video-section{
    padding-left: 0px;
    padding-right: 0;
  }
  .split-screen{
    flex-direction: column;
    text-align: center;
  }
  .split-screen img{
    width: 100%;
  }
  .contact-form{
    padding: 40px 20px;
  }

  .contact-form label{
    flex-wrap: wrap;
  }
}