/* custom.css for The Shravasadhaka - Brand Design System */

:root {
  /* Backgrounds */
  --bg-primary: #FFFFFF;       /* Pure White */
  --bg-secondary: #FECD9D;     /* Light Peach / Cream */
  --surface-card: #FFFFFF;     /* Pure White */
  --surface-dark: #1B1E20;     /* Dark Charcoal */

  /* Text */
  --text-primary: #000000;     /* Pure Black */
  --text-secondary: #1B1E20;   /* Dark Charcoal */
  --text-light: #FECD9D;       /* Light Peach on dark surfaces */

  /* Accents */
  --accent-primary: #E86806;   /* Vibrant Orange */
  --accent-cta: #E86806;       /* Vibrant Orange for Buttons */
  --accent-secondary: #FECD9D; /* Light Peach */

  /* Borders & Shadows */
  --border-subtle: rgba(27, 30, 32, 0.08);
  --shadow-soft: 0 4px 6px -1px rgba(27, 30, 32, 0.06), 0 2px 4px -1px rgba(27, 30, 32, 0.04);
  --shadow-elevated: 0 10px 15px -3px rgba(232, 104, 6, 0.12), 0 4px 6px -2px rgba(232, 104, 6, 0.06);
  --radius-card: 24px;
  --radius-pill: 9999px;
}

html {
    scroll-behavior: smooth;
}

*, *::before, *::after, html, body, div, span, p, a, button, img, section, header, footer, main, aside, nav {
    cursor: auto !important;
}

a, button, input, select, textarea, [role="button"], .btn-cta, .btn-outline-primary, .cursor-pointer {
    cursor: pointer !important;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* Headings & Expressive Displays - Gloock (High-contrast serif, H1–H3 only) */
h1, h2, h3, .font-display, .font-heading {
    font-family: 'Gloock', serif;
}

/* Subheadings use Plus Jakarta Sans for legibility */
h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-display { font-family: 'Gloock', serif; }
.font-sans { font-family: 'Plus Jakarta Sans', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

/* Legacy / Utility Class Fallback Mapping */
.font-serif,
.font-\['Playfair_Display'\] {
    font-family: 'Gloock', serif !important;
}

/* Base Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-100 { transition-delay: 100ms; }
.fade-up-delay-200 { transition-delay: 200ms; }
.fade-up-delay-300 { transition-delay: 300ms; }
.fade-up-delay-400 { transition-delay: 400ms; }
.fade-up-delay-500 { transition-delay: 500ms; }

/* Marquee ticker animation */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    will-change: transform;
}

/* Card Design System */
.card-surface {
    background-color: var(--surface-card);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-surface:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
}

.card-elevated {
    background-color: var(--surface-card);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-elevated);
    border: 2px solid var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-elevated:hover {
    transform: translateY(-6px);
}

/* Icon Badge */
.icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(108, 59, 255, 0.08);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

/* Buttons */
.btn-cta {
    background-color: var(--accent-cta);
    color: #FFFFFF;
    border-radius: var(--radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.9rem 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(255, 107, 74, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: #FF5530;
    box-shadow: 0 15px 30px -5px rgba(255, 107, 74, 0.4);
    color: #FFFFFF !important;
}

.btn-outline-primary {
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    padding: 0.85rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accent-primary);
    color: #FFFFFF !important;
}

/* Navigation Links */
nav a.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hero Character Stage CSS Architecture */
.hero-character-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-character-stage img.portrait-cutout {
  height: auto;
  max-height: 580px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  z-index: 2;
  margin-bottom: 0;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 30px rgba(33, 26, 46, 0.08));
  transition: transform 0.1s ease-out;
}




