/* ===== BASE STYLES ===== */
:root {
  --dark: #1a1a1a;
  --warm-dark: #2d2424;
  --gold: #d4af37;
  --cream: #f5f5f0;
  --text-light: #ffffff;
  --charcoal: #2d2424;
  --beige: #f5f5f0;
  --espresso: #3a3226;
  --dusty-rose: #d8b4a0;
  --serif: "Playfair Display", serif;
  --sans-serif: "Montserrat", sans-serif;
  --script: "Dancing Script", cursive;
}

body {
  margin: 0;
  font-family: var(--sans-serif);
  background: var(--dark);
  color: var(--text-light);
}

/* ===== NAVBAR START ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(26, 26, 26, 0.95);
  width: 90%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Brand/Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  font-size: 1.8rem;
  color: var(--gold);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 1px;
}

/* New rule for brand-name link in navbar */
.nav-brand a.brand-name {
  color: var(--cream);
  text-decoration: none;
}

.nav-brand a.brand-name:hover,
.nav-brand a.brand-name:active,
.nav-brand a.brand-name:focus {
  color: var(--cream);
  text-decoration: none;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a:hover {
  color: var(--gold);
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Client Resource Link */
.client-resource a {
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.client-resource a:hover {
  opacity: 0.8;
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--cream);
}

/* Mobile Menu (Hidden on Desktop) */
.mobile-menu {
  display: none;
  background: var(--warm-dark);
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 2rem 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 1.5rem;
}

.mobile-menu li a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }
}

/* ===== NAVBAR END ===== */
/* ===== HERO SECTION START ===== */
.hero {
  background: var(--charcoal);
  position: relative;
  min-height: 100vh;
  padding: 120px 5% 80px; /* Adjusted for navbar */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px; /* Increased max-width for better image display */
  margin: 0 auto;
  width: 100%;
  gap: 60px;
  min-height: 80vh; /* Ensure container height accommodates image */
}

.hero-content {
  flex: 0 1 55%;
  padding-right: 40px;
}

.hero-image {
  flex: 0 1 45%;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* Image Frame with Animation */
.handmade-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* Set a consistent aspect ratio for the frame */
  border: 15px solid transparent;
  padding: 5px;
  background-clip: padding-box;
  background-image: linear-gradient(var(--charcoal), var(--charcoal)),
    linear-gradient(
      135deg,
      var(--gold) 0%,
      var(--dusty-rose) 50%,
      var(--gold) 100%
    );
  background-origin: border-box;
  background-size: 200% 200%;
  animation: gradientBorder 8s ease infinite;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden; /* Prevent image overflow */
  contain: content; /* Ensure content stays within bounds */
}

.carousel-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure image fits without cropping */
  object-position: center;
  display: block;
  max-width: 100%; /* Prevent image from exceeding container */
  max-height: 100%; /* Ensure image stays within frame */
}

/* Text Content Styling */
.hero-subtitle {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--beige);
  margin-bottom: 2rem;
}

.hero-title .title-line {
  display: block;
}

.hero-description {
  font-family: var(--sans-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 500px;
}

/* Highlights Section */
.hero-highlights {
  margin-bottom: 3rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.2rem;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196, 168, 111, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* Buttons */
.hero-cta {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 2px;
  font-family: var(--sans-serif);
  font-weight: 500;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--espresso);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(196, 168, 111, 0.3);
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(196, 168, 111, 0.1);
}

/* Decorative Elements */
.slide-caption {
  position: absolute;
  bottom: -25px;
  right: 0;
  background: var(--espresso);
  padding: 0.5rem 1.5rem;
  font-family: var(--script);
  font-size: 1.1rem;
  color: var(--gold);
  z-index: 3;
}

/* ===== CAROUSEL ENHANCEMENTS ===== */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ===== SCROLL HINT ANIMATION ===== */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  visibility: visible; /* Ensure visibility */
}

.scroll-arrow {
  margin-top: 10px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== DYNAMIC THEME COLORS ===== */
[data-theme="gold"] ~ .slide-caption {
  color: var(--gold);
}

[data-theme="sage"] ~ .slide-caption {
  color: #a4b8a4;
}

[data-theme="blush"] ~ .slide-caption {
  color: #e8c8c8;
}

/* Animations */
@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
  .hero-container {
    gap: 40px;
    max-width: 1000px; /* Adjusted for better image display */
  }

  .handmade-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    max-width: 800px; /* Adjusted for better image display */
  }

  .hero-content,
  .hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
    width: 85%;
  }

  .handmade-frame {
    margin-top: 40px;
    aspect-ratio: 4 / 3;
    max-height: 350px; /* Adjusted for better size on smaller screens */
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 5% 60px;
  }

  .hero-container {
    max-width: 600px; /* Adjusted for better image display */
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
    width: 85%;
  }

  .btn {
    width: 85%;
    justify-content: center;
  }

  .handmade-frame {
    aspect-ratio: 4 / 3;
    max-height: 300px; /* Adjusted for better size on smaller screens */
  }

  .scroll-hint {
    bottom: -30px; /* Moved further below the image */
    visibility: visible; /* Ensure visibility */
  }
}

@media (max-width: 576px) {
  .hero-container {
    max-width: 90%; /* Adjusted for better image display */
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .handmade-frame {
    border-width: 10px;
    aspect-ratio: 4 / 3;
    max-height: 250px; /* Adjusted for better size on smaller screens */
  }

  .btn {
    width: 85%;
    justify-content: center;
  }

  .scroll-hint {
    bottom: -50px; /* Moved further below the image */
    visibility: visible; /* Ensure visibility */
  }
}

/* Motion sensitivity preference */
@media (prefers-reduced-motion) {
  .handmade-frame {
    animation: none;
    background: var(--charcoal);
    border: 1px solid var(--gold);
  }
}

/* ===== HERO SECTION END ===== */

/* ==== FEATURED PRODUCTS SECTION ==== */
.featured-products {
  padding: 6rem 1.5rem;
  background: var(--warm-dark);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  color: var(--text-light);
  opacity: 0.8;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 2rem;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.product-card {
  background: var(--charcoal);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 26rem;
}

.product-image {
  position: relative;
  height: clamp(18rem, 50vw, 25rem);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--espresso);
  padding: 0.3rem 1rem;
  border-radius: 1.25rem;
  font-family: var(--sans-serif);
  font-weight: 600;
  font-size: 0.75rem;
  z-index: 2;
}

.product-details {
  padding: 1.5rem;
}

.product-details h3 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--beige);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.product-description {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: clamp(0.85rem, 3vw, 0.95rem);
}

.product-price {
  color: var(--gold);
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 1.5rem;
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.7rem 1.5rem;
  font-size: clamp(0.85rem, 3vw, 0.95rem);
  transition: all 0.4s ease;
  border-radius: 0.25rem;
  text-decoration: none;
}

/* Interactive States */
.product-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.btn-shop:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: translateY(-0.15rem);
  box-shadow: 0 0.25rem 0.75rem rgba(196, 168, 111, 0.3);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .featured-products {
    padding: 4rem 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .products-grid {
    gap: 1.5rem;
  }

  .btn-shop {
    width: 85%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .featured-products {
    padding: 3rem 0.5rem;
  }

  .product-card {
    max-width: 100%;
  }

  .product-details {
    padding: 1.25rem;
  }

  .btn-shop {
    width: 85%;
    justify-content: center;
  }

 
}

/* Touch device adjustments */
@media (hover: none) {
  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-card:active {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  }

  .btn-shop:active {
    transform: translateY(-0.1rem);
    background: var(--gold);
    color: var(--espresso);
  }
}

/* ==== FEATURED PRODUCTS SECTION END ==== */

/* ===== UNIQUE SECTION START ===== */
.uniqueness-section {
  position: relative;
  padding: 6rem 1rem;
  background: var(--charcoal);
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* ===== IMAGE STYLES ===== */
.uniqueness-image {
  flex: 1;
  position: relative;
}

.artisan-frame {
  border: 12px solid var(--warm-dark);
  position: relative;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
}

.artisan-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(110%);
  mix-blend-mode: luminosity;
  opacity: 0.9;
  transition: all 0.5s ease;
}

.artisan-frame:hover img {
  filter: grayscale(0%) contrast(100%);
  opacity: 1;
}

.craftsmanship-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--espresso);
  padding: 0.8rem 1.5rem;
  font-family: var(--serif);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
}

/* ===== CONTENT STYLES ===== */
.uniqueness-content {
  flex: 1;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.unique-feature {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(196, 168, 111, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.4rem;
  color: var(--beige);
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== CTA BUTTON ===== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
  font-family: var(--sans-serif);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(196, 168, 111, 0.1);
  transform: translateX(5px);
}

/* ===== DECORATIVE ELEMENTS ===== */
.watercolor-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23d8b4a0" opacity="0.15" d="M45,5c25,15,40,50,60,80s45,65,70,70s45-30,20-80S90,10,45,5z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.gold-splatter {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23c4a86f" opacity="0.2" d="M30,30c10,5,25-5,40,15s35,45,60,30s35-40,15-60S60,10,30,30z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    gap: 3rem;
  }

  .artisan-frame img {
    height: 400px;
  }

  .uniqueness-content {
    text-align: center;
  }

  .unique-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .craftsmanship-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -15px;
  }
}

@media (max-width: 768px) {
  .uniqueness-section {
    padding: 4rem 1rem;
  }

  .artisan-frame {
    border-width: 8px;
  }

  .section-title {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .artisan-frame img {
    height: 300px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .feature-text h3 {
    font-size: 1.2rem;
  }

  .cta-button {
    width: 85%;
    justify-content: center;
  }
}

/* ===== UNIQUE SECTION END ===== */

/* ===== FOOTER START ===== */
.luxury-footer {
  position: relative;
  background: var(--charcoal);
  color: var(--text-light);
  padding: 3rem 5% 1.5rem;
  font-family: var(--sans-serif);
  overflow: hidden;
}

.footer-border {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 50%,
    transparent 100%
  );
  margin-bottom: 2rem;
  opacity: 0.5;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Brand Column */
.footer-brand {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo i {
  font-size: 1.8rem;
  color: var(--gold);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: 0.5px;
}

/* New rule for brand-name link in footer */
.footer-brand a.brand-name {
  color: var(--beige);
  text-decoration: none;
}

.footer-brand a.brand-name:hover,
.footer-brand a.brand-name:active,
.footer-brand a.brand-name:focus {
  color: var(--beige);
  text-decoration: none;
}

.brand-tagline {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: translateY(-2px);
}

/* Navigation Links */
.footer-nav,
.footer-contact {
  text-align: center;
}

.links-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--beige);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.links-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.6rem;
}

.footer-nav a {
  color: var(--text-light);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.client-resource {
  color: var(--gold) !important;
  font-weight: 600;
}

/* Contact Info */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--gold);
  width: 16px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0.8rem;
}

.copyright {
  color: var(--text-light);
  opacity: 0.6;
  font-size: 1.1rem;
  order: 2;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  order: 1;
  margin-right: 2%;
}

.legal-links a {
  color: var(--text-light);
  opacity: 0.6;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.legal-links span {
  opacity: 0.4;
  font-size: 0.6rem;
}

/* Decorative Elements */
.footer-ornament {
  position: absolute;
  width: 100px;
  height: 100px;
  opacity: 0.05;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.footer-ornament.left {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23c4a86f" d="M0,0 L40,0 C40,40 60,60 100,60 L100,100 L0,100 Z"/></svg>');
  bottom: 0;
  left: 0;
}

.footer-ornament.right {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23c4a86f" d="M100,0 L60,0 C60,40 40,60 0,60 L0,100 L100,100 Z"/></svg>');
  bottom: 0;
  right: 0;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .footer-brand {
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-nav,
  .footer-contact {
    text-align: left;
  }

  .contact-item {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .copyright {
    order: 1;
  }

  .legal-links {
    order: 2;
  }
}

/* Small screens (below 768px) */
@media (max-width: 767px) {
  .luxury-footer {
    padding: 2rem 3% 1rem;
  }

  .footer-container {
    gap: 2rem;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .footer-logo i {
    font-size: 1.6rem;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .brand-tagline {
    font-size: 0.9rem;
  }
}

/* Extra small screens (below 480px) */
@media (max-width: 480px) {
  .luxury-footer {
    padding: 1.5rem 2% 0.8rem;
  }

  .footer-container {
    gap: 1.5rem;
  }

  .footer-logo {
    gap: 8px;
  }

  .footer-logo i {
    font-size: 1.4rem;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.85rem;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .links-title {
    font-size: 1.1rem;
  }

  .footer-nav a,
  .contact-item {
    font-size: 0.9rem;
  }

  .copyright,
  .legal-links a {
    font-size: 0.75rem;
  }
}

/* Large screens (above 1200px) */
@media (min-width: 1201px) {
  .luxury-footer {
    padding: 4rem 5% 2rem;
  }

  .footer-container {
    gap: 3rem;
  }

  .footer-logo i {
    font-size: 2rem;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .brand-tagline {
    font-size: 1rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .links-title {
    font-size: 1.3rem;
  }

  .footer-nav a,
  .contact-item {
    font-size: 1rem;
  }
}

/* ===== FOOTER END ===== */