/* ==========================================================================
   Gajanan Resort - Main Stylesheet (Modern Gen-Z Design System & Foundation)
   Theme: Cyber-Botanical Luxury & Midnight Obsidian (100% Pure Veg Sanctuary)
   ========================================================================== */

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

:root {
  /* Color Palette - Obsidian & Neon Cyber-Botanical */
  --bg-dark: #040906;
  --bg-subtle: #08150f;
  --bg-card: rgba(9, 23, 16, 0.72);
  --bg-card-hover: rgba(14, 34, 24, 0.88);
  --bg-glass: rgba(8, 22, 15, 0.65);
  --bg-glass-heavy: rgba(4, 10, 7, 0.94);

  /* Primary Neon Jade & Emerald Highlights */
  --primary: #00f5a0;
  --primary-deep: #059669;
  --primary-glow: rgba(0, 245, 160, 0.45);
  --primary-subtle: rgba(0, 245, 160, 0.12);

  /* Warm Champagne Gold & Amber Glow */
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --gold-gradient: linear-gradient(135deg, #fef08a 0%, #fbbf24 45%, #d97706 100%);
  --neon-gradient: linear-gradient(135deg, #00f5a0 0%, #059669 100%);

  /* Secondary Vibrancy */
  --cyan: #06b6d4;
  --pink: #ec4899;
  --purple: #8b5cf6;

  /* Typography Colors */
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  /* Borders & Specular Glows */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-emerald: rgba(0, 245, 160, 0.28);
  --border-gold: rgba(245, 158, 11, 0.35);

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.7);
  --shadow-glow-emerald: 0 0 40px rgba(0, 245, 160, 0.22);
  --shadow-glow-gold: 0 0 40px rgba(245, 158, 11, 0.22);

  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Dimensions */
  --container-width: 1240px;
  --container-wide: 1400px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
  --nav-height: 76px;

  /* Transitions */
  --trans-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-normal: 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Strict Box Model & Zero Overflow */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

::selection {
  background-color: var(--primary);
  color: #040906;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Background Atmosphere Mesh */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.ambient-gradient-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 12% 15%, rgba(0, 245, 160, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 88% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 95%, rgba(5, 150, 105, 0.12) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Fluid Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.container-wide {
  max-width: var(--container-wide);
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Typography Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

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

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #00f5a0 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px auto;
  position: relative;
  z-index: 1;
}

.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid var(--border-emerald);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.65;
}

/* Section Spacing */
section {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}
