@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Global Reset & Variables */
:root {
  --color-crimson: #801B15;
  --color-crimson-rgb: 128, 27, 21;
  --color-crimson-hover: #671510;
  --color-gold: #D0A96A;
  --color-gold-rgb: 208, 169, 106;
  --color-gold-hover: #B99354;
  --color-beige: #D8C9B9;
  --color-beige-rgb: 216, 201, 185;
  --color-cream: #F9F7F5;
  --color-cream-rgb: 249, 247, 245;
  --color-cream-dark: #F0EDE8;
  --color-espresso: #36271C;
  --color-espresso-rgb: 54, 39, 28;
  --color-espresso-light: #523E30;
  --color-text-dark: #20150F;
  --color-text-light: #F9F7F5;
  --color-text-muted: #7E6E64;
  --color-white: #FFFFFF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
  
  --shadow-premium: 0 20px 40px rgba(54, 39, 28, 0.08);
  --shadow-hover: 0 30px 60px rgba(54, 39, 28, 0.15);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 25px rgba(208, 169, 106, 0.35);
  --shadow-crimson-glow: 0 0 25px rgba(128, 27, 21, 0.25);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-round: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--border-radius-round);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-crimson);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-crimson-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(128, 27, 21, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-espresso);
  border: 1px solid var(--color-espresso);
}

.btn-secondary:hover {
  background-color: var(--color-espresso);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-espresso);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(208, 169, 106, 0.25);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-espresso);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--border-radius-round);
  margin-bottom: 16px;
  background-color: rgba(208, 169, 106, 0.15);
  color: #a47936;
}

/* Navigation Styles */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.navbar-scrolled {
  position: fixed;
  background-color: rgba(249, 247, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.navbar-scrolled .nav-link {
  color: var(--color-text-dark);
}

.navbar-scrolled .logo-text {
  color: var(--color-crimson);
}

.navbar-scrolled .logo-subtext {
  color: var(--color-espresso);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-crimson);
  line-height: 1;
}

.logo-subtext {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-espresso);
  position: relative;
  padding: 8px 0;
}

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

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

.nav-link.active::after {
  width: 100%;
  background-color: var(--color-crimson);
}

/* Footer Styles */
footer {
  background-color: var(--color-espresso);
  color: var(--color-text-light);
  padding: 80px 0 30px 0;
  font-family: var(--font-sans);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--color-gold);
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-crimson);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--color-white);
}

.social-icon:hover {
  background-color: var(--color-gold);
  color: var(--color-espresso);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in-up {
  animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Transition delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* SVG Map styling */
.interactive-map-svg {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  background-color: var(--color-white);
  padding: 20px;
  transition: var(--transition-smooth);
}

.map-hotspot {
  cursor: pointer;
}

.map-hotspot .hotspot-circle {
  transition: var(--transition-fast);
}

.map-hotspot:hover .hotspot-circle {
  filter: drop-shadow(0 0 6px var(--color-gold));
  r: 12px;
}

.map-hotspot-active .hotspot-circle {
  fill: var(--color-crimson) !important;
  stroke: var(--color-white) !important;
  stroke-width: 3px !important;
  r: 11px;
}

/* Map connection paths */
.map-route-path {
  stroke-dasharray: 8, 8;
  animation: pathDash 25s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.map-route-path.active {
  opacity: 1;
}

@keyframes pathDash {
  to {
    stroke-dashoffset: -1000;
  }
}

/* Pulse animation for hotspots */
@keyframes hotspotPulse {
  0% {
    r: 10px;
    fill-opacity: 0.6;
  }
  50% {
    r: 20px;
    fill-opacity: 0.1;
  }
  100% {
    r: 10px;
    fill-opacity: 0.6;
  }
}

.hotspot-pulse-ring {
  animation: hotspotPulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
}

/* Responsive Mobile Navigation Drawer */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 105;
    padding: 0;
    margin-left: 20px;
  }
  
  .mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-espresso);
    transition: var(--transition-fast);
    border-radius: 2px;
  }
  
  /* Color defaults for hamburger toggles */
  .classic-nav .mobile-menu-toggle span,
  .split-hero-nav .mobile-menu-toggle span,
  .modern-nav .mobile-menu-toggle span,
  .luxury-nav .mobile-menu-toggle span,
  .navbar-scrolled .mobile-menu-toggle span {
    background-color: var(--color-espresso);
  }
  
  /* When header sits transparently on top of dark hero overlays */
  .classic-nav:not(.navbar-scrolled) .mobile-menu-toggle span,
  .split-hero-nav:not(.navbar-scrolled) .mobile-menu-toggle span,
  .luxury-nav:not(.navbar-scrolled) .mobile-menu-toggle span {
    background-color: var(--color-white);
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(54, 39, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    z-index: 100;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links .nav-link {
    color: var(--color-white) !important;
    font-size: 1.15rem;
    padding: 12px 0;
  }

  .nav-links .btn {
    width: 100%;
    margin-top: 10px;
  }
}
