/*
  ╔══════════════════════════════════════════════════════════════╗
  ║           THE OZASCO — Official Website                      ║
  ║                                                              ║
  ║  Developed & Produced by:                                    ║
  ║    Juvaid  →  https://juvaid.in                              ║
  ║    Wordlord Media  →  https://wordlordmedia.com              ║
  ║                                                              ║
  ║  © 2026 The Ozasco. All rights reserved.                     ║
  ╚══════════════════════════════════════════════════════════════╝
*/

/* =============================================================
   BASE.CSS — Global Styles, Typography & Shared Utilities
   The Ozasco
   ============================================================= */

/* ── Body ── */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  background-color: var(--clr-ivory);
  color: var(--clr-charcoal);
  overflow-x: hidden;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.container--narrow {
  max-width: var(--container-lg);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

/* ── Typography ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1.15;
  color: inherit;
}

.section-title em {
  font-style: italic;
  color: var(--clr-amber);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.8;
  color: var(--clr-muted);
  margin-top: var(--sp-4);
  max-width: 62ch;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--grad-gold);
  margin-top: var(--sp-6);
  border-radius: var(--radius-full);
}

.section-divider--center {
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-accent);
  font-size: var(--text-xs); /* Smaller font with letter tracking is more premium */
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  
  /* GPU accelerated transitions for all interaction properties */
  transition: 
    background 0.4s cubic-bezier(0.25, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.25, 1, 0.3, 1),
    color 0.4s cubic-bezier(0.25, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.25, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

/* Primary button – solid architectural slate */
.btn--primary {
  background: var(--clr-espresso);
  color: var(--clr-warm-white);
  border: 1.5px solid var(--clr-espresso);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: transparent;
  color: var(--clr-espresso);
  border-color: var(--clr-espresso);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(24, 24, 22, 0.12);
}

.btn--primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 12px rgba(24, 24, 22, 0.08);
}

/* Ghost button – outlined minimalist */
.btn--ghost {
  background: transparent;
  color: var(--clr-espresso);
  border: 1.5px solid rgba(24, 24, 22, 0.25);
}

.btn--ghost:hover {
  background: var(--clr-espresso);
  color: var(--clr-warm-white);
  border-color: var(--clr-espresso);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(24, 24, 22, 0.12);
}

.btn--ghost:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 12px rgba(24, 24, 22, 0.08);
}

/* Dark button – solid sand/cream */
.btn--dark {
  background: var(--clr-cream);
  color: var(--clr-espresso);
  border: 1.5px solid var(--clr-cream);
  box-shadow: var(--shadow-sm);
}

.btn--dark:hover {
  background: var(--clr-espresso);
  color: var(--clr-warm-white);
  border-color: var(--clr-espresso);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(24, 24, 22, 0.12);
}

.btn--dark:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 12px rgba(24, 24, 22, 0.08);
}

/* ── Shared Section Styles ── */
.section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--dark {
  background-color: var(--clr-espresso);
  color: var(--clr-cream);
}

.section--light {
  background-color: var(--clr-ivory);
  color: var(--clr-chocolate);
}

.section--mid {
  background-color: var(--clr-dark);
  color: var(--clr-cream);
}

/* ── Gold accent rule ── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--clr-amber);
  font-size: var(--text-lg);
}

.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grad-gold);
  opacity: 0.4;
}

/* ── Scroll Snapping (index.html specific) ── */
html.snap-scroll {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}

.snap-scroll #hero,
.snap-scroll #philosophy,
.snap-scroll #vibe,
.snap-scroll #brew,
.snap-scroll #experience,
.snap-scroll #footer {
  scroll-snap-align: start;
  scroll-margin-top: var(--nav-height);
}

.snap-scroll #hero {
  scroll-margin-top: 0;
}

