* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.offer-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.offer-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.offer-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #b30000;
  color: white;
  border: none;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.close-btn:hover {
  background-color: #800000;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.9);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}


/* Entry Animation */
@keyframes pop-in {
  from {
      opacity: 0;
      transform: scale(0.9);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}


/* Animation */
@keyframes pop-in {
  from {
      opacity: 0;
      transform: scale(0.85);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}


body {
  background-color: #fffdfa;
  color: #333;
}

/* Navbar Base */
.navbar {
  background-color: 	#fff9bc;
  border-bottom: 3px solid #d4af37;
  padding: 0px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Container */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Section */
.logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(12%) sepia(91%) saturate(7473%) hue-rotate(356deg) brightness(97%) contrast(109%);
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 60px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover {
  color: #d4af37;
  transform: scale(1.05);
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff9bc;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }

  .navbar-container {
    flex-wrap: wrap;
  }
}


.home {
  text-align: center;
  padding: 50px 20px;
  background-color: #fcfcfc;
}

.slider {
  display: flex;
  gap: 10px;
  justify-content: center;
  animation: slide 10s infinite alternate;
}

.slider img {
  width: 350px;
  height: 300px;
  border-radius: 12px;
}

@keyframes slide {
  0% {transform: translateX(0);}
  100% {transform: translateX(-10%);}
}

/* Navigation Buttons */
.slider .prev, .slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 32px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.slider .prev:hover, .slider .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.slider .prev { left: 20px; }
.slider .next { right: 20px; }


/* Split Section */
.split-section {
  display: flex;
  padding: 60px 30px;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #fff;
}

.split-section.reverse {
  flex-direction: row-reverse;
  background-color: #fdf6e3;
}

/* Fixed Image Styling */
.split-section img {
  width: 560px;
  height: 450px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  object-fit: cover;
  flex-shrink: 0;
  flex-grow: 0;
}

/* Headings */
.split-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #c39e32;
}

/* Paragraph */
.split-section p {
  font-size: 18px;
  max-width: 450px;
  line-height: 1.6;
  color: #555;
}


/* Gallery */
.gallery {
  background-color: #faf7f2;
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 36px;
  color: #c39e32;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ==== COLLECTIONS SECTION ==== */
.featured-collections {
  text-align: center;
  padding: 60px 20px;
  background: #f8f4ed;
}

.featured-collections h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #aa8400;
  font-family: 'Segoe UI', sans-serif;
}

.featured-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.collection-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 260px;
  transition: transform 0.3s;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.collection-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.collection-card h3 {
  font-size: 20px;
  margin: 15px 0;
  color: #333;
}

.explore-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d4af37;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.explore-btn:hover {
  background-color: #aa8400;
}
.collection-page {
  padding: 60px 20px;
  background-color: #fff8e1;
  text-align: center;
}

.collection-page h2 {
  font-size: 36px;
  color: #b8860b;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.collection-description {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Segoe UI', sans-serif;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  padding: 20px;
}

.collection-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.collection-grid img:hover {
  transform: scale(1.05);
}

  
  /* ==== RESPONSIVE ==== */
  @media (max-width: 1024px) {
    .collections-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .collections-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .collections h2 {
      font-size: 28px;
    }
  }
  
  @media (max-width: 480px) {
    .collections-grid {
      grid-template-columns: 1fr;
    }
  }
  

/* Contact Form */
.contact-section {
  padding: 60px 20px;
  background-color: #f7f3ea;
  text-align: center;
}

.contact-section h2 {
  font-size: 34px;
  margin-bottom: 25px;
  color: #b1912a;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

.contact-form button {
  padding: 14px;
  background-color: #d4af37;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #b9962e;
}

.success {
  background-color: #dff0d8;
  color: #3c763d;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 30px;
}

.footer-logo img {
  width: 480px;
  height: auto;
  margin-bottom: 10px;
  /* Golden color effect */
  filter: brightness(1.1) sepia(1) saturate(750%) hue-rotate(10deg);
}


.footer-logo .tagline {
  font-size: 14px;
  color: #ffd700;
  font-style: italic;
  margin-top: 5px;
}

.footer-info, .footer-about {
  max-width: 300px;
}

.footer-info h3, .footer-about h3 {
  color: #ffcc00;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-info p, .footer-about p {
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  color: #ffcc00;
  font-size: 22px;
  margin: 0 12px;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}


.about-section {
  padding: 70px 30px;
  background-color: #fffeee; /* Light bluish-gray background for softness */
  text-align: center;
}

.language-buttons {
  margin-bottom: 25px;
  text-align: center;
}

.language-buttons button {
  background-color: #2c3e50; /* Deep navy */
  border: none;
  color: #f1c40f; /* Rich gold text */
  padding: 12px 25px;
  margin: 0 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.language-buttons button:hover {
  background-color: #1a252f; /* Darker navy */
  color: #ffffff; /* White text on hover */
}

.about-section h2 {
  font-size: 36px;
  color: #2c3e50; /* Matching deep navy */
  margin-bottom: 35px;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 3px solid #f1c40f;
  display: inline-block;
  padding-bottom: 10px;
}

.founders {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.founder {
  text-align: center;
}

.founder img {
  width: 300px;  /* Increased size */
  height: 300px; /* Increased size */
  object-fit: cover;
  border-radius: 12px;  /* Square with more elegant soft corners */
  border: 6px solid #f1c40f; /* Thicker gold border */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.founder img:hover {
  transform: scale(1.05); /* Subtle zoom effect */
}

.founder-name {
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  font-family: 'Segoe UI', sans-serif;
}

.about-text {
  max-width: 950px;
  margin: auto;
  text-align: justify;
  font-size: 18px;
  color: #444;
  line-height: 2;
  font-family: 'Segoe UI', sans-serif;
  padding: 0 15px;
}
/* Shop Gallery Styling */
.shop-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 50px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.shop-image {
  width: 350px;              /* Fixed width */
  height: 450px;             /* Fixed height */
  overflow: hidden;          /* Hide overflow to crop if needed */
  border: 5px solid #f1c40f; /* Elegant golden border */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  background-color: #ffffff;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* Ensures image fills frame beautifully */
  border-radius: 8px;
  display: block;
}

.shop-image:hover {
  transform: scale(1.03);
}




.map-container {
  width: 100%;
  max-width: 1100px;
  margin: 50px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 3px solid #d4af37;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  transition: transform 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 0 20px #d4af37, 0 0 40px #ffd700;
}
.map-title {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 24px;
  margin-top: 40px;
  color: #b8860b;
}



@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff9bc;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }

  .navbar-container {
    flex-wrap: wrap;
  }
}
