/* ====================================================================
   TONIQUE LUXURY SPIRIT BOUTIQUE - CORE DESIGN SYSTEM & STYLESHEET
   ==================================================================== */

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

:root {
  /* Color Tokens */
  --bg-dark: #090A0E;
  --bg-card: #12141D;
  --bg-card-hover: #191C28;
  --bg-glass: rgba(18, 20, 29, 0.85);
  --bg-glass-gold: rgba(212, 175, 55, 0.08);

  --accent-gold: #D4AF37;
  --accent-gold-light: #F4E297;
  --accent-gold-dark: #9A7B1C;
  --accent-champagne: #F3E5AB;
  --accent-bronze: #C5A059;

  --text-main: #F4F4F6;
  --text-muted: #A0A5B5;
  --text-gold: #E5C378;

  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-bright: rgba(212, 175, 55, 0.6);
  --border-glass: rgba(255, 255, 255, 0.08);

  --whatsapp-color: #25D366;
  --whatsapp-hover: #1EBE57;
  --call-color: #D4AF37;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-serif-sub: 'Cormorant Garamond', serif;

  /* Shadows & Effects */
  --shadow-gold-glow: 0 0 25px rgba(212, 175, 55, 0.2);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
  -webkit-tap-highlight-color: transparent;
}

body.menu-open {
  overflow: hidden;
}

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

/* Containers */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #FFF0B9 0%, #D4AF37 50%, #9A7B1C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg-glass-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1.2vw, 0.825rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.1rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto clamp(1.75rem, 4vw, 3rem) auto;
}

.text-center { text-align: center; }

/* Sticky Top Navigation & Announcement Bar */
.top-announcement {
  background: linear-gradient(90deg, #0f1017 0%, #1c180e 50%, #0f1017 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--accent-champagne);
}

.top-announcement .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

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

.top-contact-btn.whatsapp-link {
  color: var(--whatsapp-color);
}
.top-contact-btn.whatsapp-link:hover {
  color: #5cf095;
}

/* Header & Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-title span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  white-space: nowrap;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition-smooth);
  position: relative;
  display: inline-block;
  padding: 0.2rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-gold-light);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--accent-gold-light);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
  background: var(--accent-gold);
  color: #090A0E;
}

.mobile-drawer-cta {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}

.mobile-drawer-cta .btn {
  width: 100%;
}

/* Nav Backdrop Overlay */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Sticky Mobile Bottom Dock Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(18, 20, 29, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom)) 0.75rem;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
}

.mobile-bottom-bar {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 0.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.mobile-bottom-btn i {
  font-size: 1.1rem;
}

.mobile-bottom-btn.btn-call {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--accent-champagne);
}

.mobile-bottom-btn.btn-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
}

.mobile-bottom-btn.btn-map {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
}

/* Sections Global Styling */
section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  position: relative;
}

section:nth-child(even) {
  background: rgba(18, 20, 29, 0.3);
}

/* Footer Styling */
footer {
  background: #050608;
  border-top: 1px solid var(--border-gold);
  padding: 4rem 0 2rem 0;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.15rem;
  color: var(--accent-champagne);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  padding: 0.2rem 0;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.compliance-badge {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--accent-champagne);
  font-size: 0.8rem;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .nav-menu {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 300px;
    max-width: 85vw;
    height: calc(100vh - 76px);
    background: var(--bg-card);
    border-right: 1px solid var(--border-gold);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    transition: var(--transition-smooth);
    z-index: 999;
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-actions {
    display: none;
  }
  .mobile-drawer-cta {
    display: flex;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: grid;
  }
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 576px) {
  .container { padding: 0 1.25rem; }
  .top-announcement .container {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  .top-contacts {
    gap: 0.85rem;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
