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

:root {
  /* Color Palette - Premium Realism */
  
  /* Backgrounds - Cinematic Luxury Black */
  --bg-dark: #000000; /* Pure Black */
  --bg-surface: #0A0A0A; /* Slightly elevated Black surface */
  --bg-glass: rgba(0, 0, 0, 0.6); /* Translucent dark glass */
  --bg-gradient: radial-gradient(circle at top right, rgba(0, 230, 118, 0.05), transparent 40%), /* Soft green ambient light */
                 radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.02), transparent 40%);
  
  /* Accents - Premium Green */
  --accent-emerald: #00E676; /* Vibrant Premium Green */
  --accent-emerald-hover: #69F0AE; /* Brighter green for hover states */
  
  /* Borders - Crisp and subtle */
  --border-subtle: rgba(255, 255, 255, 0.08); /* White glass edge */
  --border-emerald: rgba(0, 230, 118, 0.3); /* Green edge */
  
  /* Text */
  --text-main: #FFFFFF;
  --text-muted: #94A3B8; /* Slate-like slate grey */
  --text-dark: #000000; /* For text over light backgrounds */

  /* Typography & Layout */
  --font-family: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif; /* Haute Couture headings */
  --transition-fast: 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Slower, buttery easing */
  --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.6), 0 8px 16px rgba(0,0,0,0.4); /* Deep cinematic shadow */
  --shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.5); /* Ambient float shadow */
  --border-radius-soft: 16px; /* Smooth, modern radius */
  --border-radius-pill: 100px;
}

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

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
  background-image: var(--bg-gradient); /* Apply cinematic gradient */
  background-attachment: fixed; /* Keep depth while scrolling */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500; /* Elegant, premium weight instead of extra bold */
  line-height: 1.2;
  letter-spacing: -0.015em; /* Subtle tightening */
  margin-bottom: 1.25rem;
}

h3, h4, h5, h6 {
  font-family: var(--font-family); /* Sans-serif for smaller headings */
  font-weight: 600;
}

h1 { font-family: var(--font-hero); font-size: clamp(3.5rem, 6vw, 6rem); letter-spacing: -0.02em; line-height: 1.1; font-weight: 600; }
h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); letter-spacing: -0.02em; line-height: 1.15; }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); letter-spacing: -0.01em; }
p { margin-bottom: 1.75rem; color: var(--text-muted); font-size: 1.125rem; font-weight: 400; line-height: 1.8; }

a {
  text-decoration: none;
  color: var(--text-main);
  transition: color var(--transition-fast);
  font-weight: 600;
}

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

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.section {
  padding: 4rem 0; /* Balanced macro-whitespace for content flow */
  position: relative;
}

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

  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  p  { font-size: 1rem; }
}

/* Animations */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Scrolls exactly one set of reviews */
}

.bg-alt {
  background-color: var(--bg-surface);
}

/* Premium Text Highlighting */
.text-gradient {
  color: var(--text-main); /* Removed gradient, using pure white for contrast */
}

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

/* Abstract Background Glows (Completely removed for realism) */
.bg-glow {
  display: none !important;
}

/* Premium Image Aesthetics */
.premium-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08); /* Deep shadow with extremely thin glass border */
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.premium-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.premium-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  opacity: 0.9; /* Slight cinematic dim */
  transition: opacity var(--transition-fast);
}

.premium-image-wrapper:hover img {
  opacity: 1; /* Brightens on hover */
}
