:root {
  --primary: #c6a76c;           /* Gold tone */
  --primary-hover: #e6c995;     /* Lighter gold for hover */
  --dark: #0f0f0f;              /* Deep black */
  --light: #ffffff;             /* Clean white */
  --muted: #999999;             /* Soft gray */
  --font-title: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* Base */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  margin: 0;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 4rem 2rem;
}

/* Header */
.site-header {
  background-color: var(--dark);
  color: var(--light);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 60px;
}

.main-nav .menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav .menu li a {
  color: var(--light);
  font-weight: 600;
  transition: color 0.3s ease;
}
.main-nav .menu li a:hover {
  color: var(--primary);
}

/* Mobile Header */
.header-mobile {
  display: none;
  background: var(--dark);
  padding: 1rem;
}

.mobile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo img {
  height: 50px;
}

.hamburger {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

/* Responsive Menu */
@media (max-width: 992px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background: var(--dark);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .menu {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav .menu li a {
    font-size: 1.1rem;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh; /* adjust as you like */
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slider-container,
.slider,
.slide {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}


.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ensures image fills fully */
  object-position: center; /* keeps subject centered */
  display: block;
}

/* Modern pill dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}

.slider-dots button {
  width: 30px;
  height: 6px;
  border-radius: 3px;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.4s ease;
}

.slider-dots button.active {
  width: 50px;
  background: #fff;
}

/* Collection Section */
.our-collection-section {
    background-color: #fff8f3;
    padding: 60px 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #7a513b;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.collection-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

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

/* About Us Section */
.about-section {
    background-color: #fff; /* Clean white background */
    color: #444;
}

.about-section .section-title {
    font-size: 2.2rem;
    color: #a37d5d; /* Elegant gold */
}

.about-section .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.about-highlights li {
    font-size: 1rem;
    margin-bottom: 10px;
}

.text-gold {
    color: #a37d5d;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f2ebe4; /* Warmer beige contrast */
    color: #333;
}

.testimonial-box {
    background-color: #fff; /* Keep inner boxes clean */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2rem;
    color: #a37d5d; /* Gold-like accent color */
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 20px;
    background-color: #f9f6f2;
    border-top: 1px solid #e8ddd0;
    color: #3e2c1e;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #4b322c;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #7a6d63;
    margin-bottom: 40px;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #d2c2b0;
    border-radius: 8px;
    font-size: 15px;
    background-color: #fffdfb;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #b08d57;
    outline: none;
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.2);
}

.btn-submit {
    display: inline-block;
    width: 100%;
    background: #b08d57;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #a37d45;
}

#contact-msg {
    margin-bottom: 25px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.hidden {
    display: none;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-body);
}

.footer-top {
  padding: 4rem 2rem 2rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list a {
  color: var(--light);
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--primary);
}

.footer-list i {
  margin-right: 8px;
  color: var(--primary);
}

.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}


.footer-social a {
  color: var(--light); /* or any color like #fff or #d4af37 */
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-bottom {
  background: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }
}

/* Media Queries */
@media (max-width: 768px) {
  section {
    padding: 3rem 1rem;
  }

  .product-card img {
    height: 200px;
  }
}

/* ---------------------- */
/* Modern UI Enhancements */
/* ---------------------- */

/* Smooth animations for sections */
section {
    animation: fadeInUp 0.8s ease-in-out;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Slider Enhancements */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #fff8f3;
}
.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.75);
    transition: transform 6s ease;
}
.slide.active img {
    transform: scale(1.05);
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dots button.active,
.slider-dots button:hover {
    background: var(--primary);
}

/* Collection hover glow */
.collection-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(198, 167, 108, 0.35);
}

/* Buttons gradient */
.btn-submit, .btn-gold {
    background: linear-gradient(45deg, var(--primary), var(--primary-hover));
    color: #fff;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-submit:hover, .btn-gold:hover {
    transform: translateY(-2px);
}

/* Social icons hover */
.footer-social a {
    border: 1px solid var(--primary);
    padding: 8px;
    border-radius: 50%;
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
}
.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top:hover {
    transform: translateY(-3px);
}