/*
 * Roisie - Premium Luxury Restaurant HTML Template
 * Version: 1.0.0
 * Author: ThemeForest Quality Standard
 * Stylesheet: Main CSS
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@400;500;600&display=swap');

/* ==========================================================================
   1. CSS VARIABLES & THEME SETUP
   ========================================================================== */
:root {
  /* Fonts */
  --font-primary: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Theme Colors - Dark (Default) */
  --bg-primary: #0A0A0A;
  --bg-secondary: #070707;
  --bg-tertiary: #141414;
  --text-primary: #F5F5F7;
  --text-secondary: #9E9EAF;
  --text-muted: #6C6C7D;
  --accent-gold: #C5A059;
  --accent-gold-hover: #D6B57E;
  --accent-gold-rgba: rgba(197, 160, 89, 0.12);
  --border-color: rgba(197, 160, 89, 0.2);
  --border-light: rgba(255, 255, 255, 0.06);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.7);
  --header-bg: rgba(7, 7, 7, 0.88);
  --card-bg: #141414;
  --preloader-bg: #070707;
  --preloader-logo: #C5A059;
  --accent-dark: #000000;
  --accent-light: #FFFFFF;

  /* Luxury Glassmorphism & Micro-elevation Overrides */
  --glass-bg: rgba(14, 14, 14, 0.75);
  --glass-border: rgba(197, 160, 89, 0.15);
  --glass-blur: blur(15px);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --hover-card-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

[data-theme="light"] {
  /* Theme Colors - Light */
  --bg-primary: #FCFBF9;
  --bg-secondary: #F5F3EB;
  --bg-tertiary: #EBE8DC;
  --text-primary: #17171C;
  --text-secondary: #575766;
  --text-muted: #8F8F9E;
  --accent-gold: #A48455;
  --accent-gold-hover: #8C6F43;
  --accent-gold-rgba: rgba(164, 132, 85, 0.12);
  --border-color: rgba(164, 132, 85, 0.2);
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
  --header-bg: rgba(252, 251, 249, 0.92);
  --card-bg: #F5F3EB;
  --preloader-bg: #FCFBF9;
  --preloader-logo: #A48455;
  --accent-dark: #FFFFFF;
  --accent-light: #000000;

  /* Luxury Glassmorphism & Micro-elevation Overrides (Light) */
  --glass-bg: rgba(252, 251, 249, 0.8);
  --glass-border: rgba(164, 132, 85, 0.15);
  --glass-blur: blur(15px);
  --card-shadow: 0 10px 30px rgba(164, 132, 85, 0.08);
  --hover-card-shadow: 0 20px 45px rgba(164, 132, 85, 0.15);
}

/* ==========================================================================
   1.5. SLEEK CINEMATIC LAYOUT PATTERNS (SLEEK INTERFACE THEME)
   ========================================================================== */
/* Sleek layout has been removed and replaced with a modern responsive full-width structure. */

/* ==========================================================================
   2. GLOBAL RESET & FOUNDATION
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: background-color 0.5s ease, color 0.5s ease;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.font-display {
  font-family: var(--font-display);
}

.text-gold {
  color: var(--accent-gold);
}

.bg-gold {
  background-color: var(--accent-gold);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

a:hover {
  color: var(--accent-gold);
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* ==========================================================================
   3. PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--preloader-bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-logo-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  color: var(--preloader-logo);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderFadeInUp 0.8s forwards 0.2s;
}

.preloader-subtitle {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--text-secondary);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(15px);
  animation: preloaderFadeInUp 0.8s forwards 0.4s;
}

.preloader-bar-container {
  width: 150px;
  height: 1px;
  background-color: var(--border-light);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: preloaderFadeIn 0.5s forwards 0.6s;
}

.preloader-bar {
  width: 100%;
  height: 100%;
  background-color: var(--accent-gold);
  position: absolute;
  left: -100%;
  animation: preloaderProgress 1.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes preloaderFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes preloaderProgress {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ==========================================================================
   4. HEADER & NAV (STICKY)
   ========================================================================== */

   .top-bar {
      background-color: var(--bg-secondary);
      border-bottom: 1px solid var(--border-light);
      padding: 0.6rem 1.5rem;
      font-size: 0.72rem;
      font-family: var(--font-primary);
      letter-spacing: 0.08em;
      color: var(--text-secondary);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 1002;
      transition: background-color 0.5s ease;
    }
    .top-bar-item {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .top-bar-item i {
      color: var(--accent-gold);
      font-size: 0.85rem;
    }
    .top-bar-socials {
      display: flex;
      gap: 1rem;
    }
    .top-bar-social-link {
      color: var(--text-muted);
      transition: color 0.3s ease;
    }
    .top-bar-social-link:hover {
      color: var(--accent-gold);
    }

    /* ----------------------------------
       2. Sticky Header Offset & Setup
       ---------------------------------- */
    header {
      top: 35px; /* offset for top-bar on desktop */
    }
    header.sticky {
      top: 0;
    }
    @media (max-width: 991px) {
      .top-bar {
        display: none; /* simple stack prevention on tablets/mobile */
      }
      header {
        top: 0;
      }
    }

    /* ----------------------------------
       3. Mega Navigation Menu
       ---------------------------------- */
    .nav-item.mega-menu-item {
      position: static !important;
    }
    .mega-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      padding: 3rem 4rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow: var(--shadow-lg);
      z-index: 999;
      display: flex;
    }
    .nav-item.mega-menu-item:hover .mega-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .mega-menu-col {
      border-right: 1px solid var(--border-light);
      padding: 0 2rem;
    }
    .mega-menu-col:last-child {
      border-right: none;
    }
    .mega-menu-title {
      font-family: var(--font-serif);
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-gold);
      margin-bottom: 1.5rem;
      font-weight: 600;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 8px;
    }
    .mega-menu-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .mega-menu-link {
      font-size: 0.8rem;
      letter-spacing: 0.05em;
      color: var(--text-secondary);
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      padding: 2px 0;
    }
    .mega-menu-link:hover {
      color: var(--accent-gold);
      transform: translateX(5px);
    }
    .mega-menu-dish-price {
      font-family: var(--font-display);
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-left: 8px;
    }

header {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.8rem 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Header is full-width by default across all devices */

header.sticky {
  position: fixed;
  padding: 1rem 0;
  background-color: var(--header-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.brand-dot {
  color: var(--accent-gold);
  display: inline-block;
  margin-left: 1px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 1rem;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.5rem 0;
  position: relative;
  opacity: 0.8;
}

.nav-link:hover, .nav-item.active .nav-link {
  opacity: 1;
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::after, .nav-item.active .nav-link::after {
  width: 100%;
}

/* Dropdown Menu styling */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  min-width: 220px;
  padding: 1rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  padding: 0.6rem 1.5rem;
}

.dropdown-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  opacity: 0.7;
  color: var(--text-primary);
}

.dropdown-link:hover, .dropdown-item.active .dropdown-link {
  opacity: 1;
  color: var(--accent-gold);
  transform: translateX(5px);
}

/* Header Action Tools */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Dark/Light Theme Button */
.theme-switch-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.theme-switch-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.theme-icon-sun {
  display: none;
}

[data-theme="light"] .theme-icon-moon {
  display: none;
}

[data-theme="light"] .theme-icon-sun {
  display: block;
}

/* Reservation Header CTA Button */
.btn-gold-outline {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  background-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 0;
  transition: all 0.4s ease;
}

.btn-gold-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-gold);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.btn-gold-outline:hover::before {
  left: 0;
}

.btn-gold-outline:hover {
  color: var(--accent-dark) !important;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background-color: var(--bg-secondary);
  z-index: 2000;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
}

.mobile-nav-link {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: block;
}

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

.mobile-nav-dropdown {
  list-style: none;
  padding: 0.5rem 0 0 1rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
}

.mobile-nav-dropdown.show {
  display: flex;
}

.mobile-dropdown-link {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--text-primary);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   5. HERO & BREADCRUMB PAGE HEADERS
   ========================================================================== */
.page-header {
  position: relative;
  background-color: var(--bg-secondary);
  padding: 10rem 0 6rem 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  text-align: center;
}

/* Luxury abstract mesh gradient/lines for page header */
.page-header-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, var(--accent-gold) 1px, transparent 1px),
                    radial-gradient(circle at 80% 70%, var(--accent-gold) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-header-title {
  font-size: 3.5rem;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.breadcrumb-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}

.breadcrumb-item {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-secondary);
}

.breadcrumb-item a:hover {
  color: var(--accent-gold);
}

.breadcrumb-separator {
  color: var(--accent-gold);
  font-size: 0.7rem;
}

/* ==========================================================================
   6. MAIN LAYOUT FOUNDATION (PLACEHOLDER/TEMPLATES)
   ========================================================================== */
main {
  flex-grow: 1;
}

/* Luxury Content Wrapper */
.layout-placeholder-section {
  padding: 8rem 0;
  position: relative;
}

.luxury-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.luxury-card:hover {
  border-color: var(--border-color);
  box-shadow: var(--shadow-lg);
}

.luxury-card-corner-border {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--accent-gold);
  border-style: solid;
  pointer-events: none;
}

.luxury-card-corner-tl {
  top: 15px;
  left: 15px;
  border-width: 1px 0 0 1px;
}

.luxury-card-corner-tr {
  top: 15px;
  right: 15px;
  border-width: 1px 1px 0 0;
}

.luxury-card-corner-bl {
  bottom: 15px;
  left: 15px;
  border-width: 0 0 1px 1px;
}

.luxury-card-corner-br {
  bottom: 15px;
  right: 15px;
  border-width: 0 1px 1px 0;
}

.layout-status-badge {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background-color: var(--accent-gold-rgba);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1rem;
}

.btn-gold-solid {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--accent-gold);
  color: var(--accent-dark) !important;
  background-color: var(--accent-gold);
  display: inline-block;
  border-radius: 0;
  transition: all 0.4s ease;
}

.btn-gold-solid:hover {
  background-color: transparent;
  color: var(--text-primary) !important;
  border-color: var(--accent-gold);
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-about {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links li a:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
  display: inline-block;
}

.footer-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-info-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 2px;
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  padding: 0.8rem 1.2rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--accent-gold);
  outline: none;
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--accent-gold);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.newsletter-btn:hover {
  color: var(--accent-gold-hover);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--accent-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  margin-top: 4rem;
  padding-top: 1.5rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   8. BACK TO TOP
   ========================================================================== */
  
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: -60px;
  width: 44px;
  height: 44px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
}

#back-to-top.show {
  right: 30px;
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background-color: var(--accent-gold);
  color: var(--accent-dark);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

/* ==========================================================================
   9. PREMIUM INTERACTIVE INTERFACES & UNIFIED STYLES
   ========================================================================== */

/* Custom Premium Double-Circle Cursor (Hides on Mobile) */
.custom-cursor-dot, .custom-cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, border-color 0.3s ease;
}
.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
}
.custom-cursor-outline {
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent-gold);
}
body.cursor-active .custom-cursor-dot, 
body.cursor-active .custom-cursor-outline {
  opacity: 1;
}
body.cursor-hovering .custom-cursor-dot {
  transform: translate(-50%, -50%) scale(1.6);
  background-color: var(--accent-gold-hover);
}
body.cursor-hovering .custom-cursor-outline {
  transform: translate(-50%, -50%) scale(1.8);
  border-color: var(--accent-gold-hover);
  background-color: rgba(197, 160, 89, 0.04);
}
@media (max-width: 991.98px) {
  .custom-cursor-dot, .custom-cursor-outline {
    display: none !important;
  }
}

/* Sibling Menu Dimming Interaction (Classic Swiss luxury) */
.nav-menu {
  transition: opacity 0.4s ease;
}
.nav-menu:hover .nav-item:not(:hover) .nav-link {
  opacity: 0.35 !important;
}

/* Sibling Dropdown Scale-In Animation */
.nav-dropdown {
  transform: translateX(-50%) translateY(15px) scale(0.95);
  transform-origin: top center;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s ease;
}
.nav-item:hover .nav-dropdown {
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Universal Luxury Card Elevations & Corner Borders */
.luxury-card, .hover-card-premium {
  box-shadow: var(--card-shadow);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.luxury-card:hover, .hover-card-premium:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--hover-card-shadow) !important;
  border-color: var(--accent-gold) !important;
}

/* Premium Image Zoom Wrapper */
.hover-image-zoom, .hover-zoom-wrap {
  overflow: hidden;
  position: relative;
}
.hover-image-zoom img, .hover-zoom-wrap img {
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.hover-image-zoom:hover img, .hover-zoom-wrap:hover img,
.luxury-card:hover .hover-image-zoom img,
.hover-card-premium:hover .hover-image-zoom img {
  transform: scale(1.08) !important;
}

/* Gold Shine Sweeping & Button Micro-Interactions */
.btn-gold-shine, .btn-gold-solid, .btn-gold-outline {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.btn-gold-shine::after, .btn-gold-solid::after, .btn-gold-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}
.btn-gold-shine:hover::after, .btn-gold-solid:hover::after, .btn-gold-outline:hover::after {
  animation: shineSweep 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.btn-gold-shine:active, .btn-gold-solid:active, .btn-gold-outline:active {
  transform: scale(0.96) !important;
}

@keyframes shineSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* Floating Decorative Elements Keyframes */
@keyframes floatDrift {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.floating-decor-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  animation: floatDrift 8s ease-in-out infinite;
}

/* Unified Premium Form Styles (Completely Eliminates Inline CSS Needs) */
.form-control, 
.form-select, 
.luxury-form-control {
  background-color: var(--bg-primary) !important;
  border: 1px solid var(--border-light) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-primary) !important;
  font-size: 0.85rem !important;
  padding: 0.85rem 1.25rem !important;
  border-radius: 0 !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-shadow: none !important;
}
.form-control::placeholder, 
.luxury-form-control::placeholder {
  color: var(--text-muted) !important;
  opacity: 0.7 !important;
}
.form-control:focus, 
.form-select:focus, 
.luxury-form-control:focus {
  background-color: var(--bg-secondary) !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px var(--accent-gold-rgba) !important;
  outline: none !important;
}

/* Light Mode Overrides for Forms and Social Links */
[data-theme="light"] .form-control,
[data-theme="light"] .form-select,
[data-theme="light"] .luxury-form-control {
  background-color: #FFFFFF !important;
  border-color: rgba(164, 132, 85, 0.15) !important;
}
[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus,
[data-theme="light"] .luxury-form-control:focus {
  background-color: #FCFBF9 !important;
  border-color: var(--accent-gold) !important;
}

/* Subtle Glassmorphism Card Overlay Class */
.glass-panel-luxury {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

/* Image Parallax Layout Helper */
.parallax-wrap {
  position: relative;
  overflow: hidden;
}
.parallax-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

