/* Araki International Spa - Luxury Dark Gold Theme */
:root {
  /* Luxury Color Palette */
  --gold: #D4AF37;              /* Araki Gold - Primary */
  --gold-champagne: #E6C67A;    /* Soft Champagne - Highlights */
  --onyx: #000000;              /* Deep Onyx - Base Background */
  --charcoal: #1C1C1C;          /* Charcoal Mist - Elevated Sections */
  --ivory: #F5E6C5;             /* Ivory Beige - Warmth */
  --white: #FFFFFF;             /* Pure White */
  --text-body: #9B9B9B;         /* Muted Gray for Body Text */
  --text-light: #CCCCCC;        /* Light Gray */
  --success: hsl(142, 65%, 52%);/* WhatsApp Green */
  
  /* Luxury Gradients */
  --gradient-gold: linear-gradient(90deg, #D4AF37, #E6C67A);
  --gradient-soft: linear-gradient(135deg, #D4AF37, #F5E6C5);
  --gradient-bg: linear-gradient(180deg, #000000 0%, #1C1C1C 100%);
  
  /* Gold Glow Effects */
  --gold-glow: 0 0 30px rgba(212, 175, 55, 0.3);
  --gold-glow-strong: 0 0 50px rgba(212, 175, 55, 0.5);
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--onyx);
  color: var(--text-body);
  line-height: 1.8;
  font-size: 18px;
  font-weight: 400;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); } /* 60px */
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); } /* 36px */
h3 { font-size: 1.5rem; } /* 24px */

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-ivory { color: var(--ivory); }
.text-muted { color: var(--text-body); }

/* Accent Font - For Quotes & Emotional Content */
.font-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

/* Button Font */
.font-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Luxury Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--onyx);
  box-shadow: var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-champagne);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-strong);
}

.btn-success {
  background: var(--success);
  color: white;
  box-shadow: 0 4px 12px hsla(142, 65%, 52%, 0.2);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsla(142, 65%, 52%, 0.4);
}

.btn-outline {
  background: black;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--onyx);
  box-shadow: var(--gold-glow);
}

/* Card Styles - Charcoal Elevated */
.card {
  background: var(--charcoal);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}

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

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

/* Dark Wash for Images */
.image-overlay {
  position: relative;
}

.image-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.6)
  );
  pointer-events: none;
}

/* Section Styles */
.section {
  padding: 5rem 1rem;
}

.section-dark {
  background: var(--onyx);
}

.section-charcoal {
  background: var(--charcoal);
}

.section-gradient {
  background: var(--gradient-bg);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
.title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  text-align: center;
  color: var(--white);
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Gold Accent Line */
.gold-divider {
  width: 6rem;
  height: 0.25rem;
  background: var(--gradient-gold);
  margin: 0 auto 2rem;
  border-radius: 9999px;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .grid-cols-2, .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .title {
    font-size: 2rem;
  }
  
  body {
    font-size: 16px;
  }
}

/* Duration Badge */
.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-champagne);
}

/* Service Card Specific */
.service-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .service-card-overlay {
  opacity: 1;
}

/* Header Styles - Dark Luxury */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  text-shadow: var(--gold-glow);
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.logo img{
    max-width:60px!important;
}

nav {
  display: flex;
  gap: 0.5rem;
}

nav a {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

nav a:hover, nav a.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  nav.active {
    display: flex;
  }
}

/* Urgency Banner - Gold Gradient */
.urgency-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--gradient-gold);
  color: var(--onyx);
  padding: 0.875rem 1rem;
  box-shadow: var(--gold-glow);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.urgency-banner strong {
  font-weight: 700;
}

/* Hero Section - Dark with Gold Accents */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.8)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
  color: var(--ivory);
  font-size: 1.25rem;
}

/* Tabs - Dark Luxury */
.tabs {
  margin-bottom: 3rem;
}

.tab-list {
  display: flex;
  gap: 0.5rem;
  background: rgba(28, 28, 28, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.tab-button {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-button.active {
  background: var(--gold);
  color: var(--onyx);
}

.tab-button:hover:not(.active) {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Footer - Charcoal */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem 1rem 1.5rem;
}

footer h3 {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive */
@media (min-width: 768px) {
  .grid-cols-md-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-md-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-cols-lg-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-lg-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-lg-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Utility Classes */
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.shadow-gold { box-shadow: var(--gold-glow); }
.shadow-gold-strong { box-shadow: var(--gold-glow-strong); }

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-gold {
  background: var(--gold);
  color: var(--onyx);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px hsla(142, 65%, 52%, 0.4);
  animation: pulse 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px hsla(142, 65%, 52%, 0.6);
}

.whatsapp-float svg {
  width: 2rem;
  height: 2rem;
  fill: white;
}

/* Form Styles - Dark Luxury */
input, textarea, select {
  width: 100%;
  padding: 1rem;
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.5rem;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input::placeholder, textarea::placeholder {
  color: var(--text-body);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.875rem;
}

/* Glass Effect - Dark Version */
.glass-dark {
  background: rgba(28, 28, 28, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Premium Hover Effect */
.hover-gold {
  transition: all 0.3s ease;
}

.hover-gold:hover {
  color: var(--gold);
  transform: translateX(4px);
}
