/* ==========================================================================
   PAUSE EXPERIENCES — PREMIUM TYPOGRAPHIC DESIGN SYSTEM (WHITE MINIMALIST)
   ========================================================================== */

/* 1. Fonts & Imports */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('../assets/fonts/GlacialIndifference-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('../assets/fonts/GlacialIndifference-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 2. Custom CSS Variables */
:root {
  --color-primary-green: #69DC38;
  --color-black: #ffffff;          /* Page background is White */
  --color-black-deep: #ffffff;     /* Deep backgrounds are White */
  --color-white: #0a0a0a;          /* Main text is Dark Charcoal */
  --color-off-white: #ffffff;      /* Section backgrounds are White */
  --color-earth-light: #faf9f6;    /* Soft neutral background panels */
  --color-text-dark: #0a0a0a;
  --color-text-light: #1f211e;
  --color-text-muted: #747773;
  
  --font-headings: 'League Spartan', sans-serif;
  --font-body: 'Glacial Indifference', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  
  --nav-height: 90px;
}

/* 3. General Reset & Accessibility */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  min-height: 100%;
  background-color: var(--color-black);
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-black);
  color: var(--color-text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary-green);
  color: #0a0a0a;
  padding: 12px 24px;
  font-family: var(--font-headings);
  font-weight: bold;
  z-index: 10000;
  border-radius: 0 0 8px 8px;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

/* Accessible focus ring */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary-green);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Typography scale */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: none;
  color: var(--color-text-dark);
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
}

/* Accent Color Utilities */
.font-accent-color {
  color: var(--color-primary-green) !important;
}

/* Border Divider Utilities */
.border-divider-y {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.border-divider-t {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.border-divider-b {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* General Layout Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
}

.section-padding {
  padding: clamp(6.5rem, 14vh, 12rem) 0;
}

.text-center {
  text-align: center;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* ==========================================================================
   4. COMPONENT STYLING
   ========================================================================== */

/* Cinematic Preloader (White thematic base) */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black-deep);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader-content {
  text-align: center;
  width: 200px;
}

.preloader-logo-container {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.preloader-logo {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.preloader-progress-bar {
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.5s;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background-color: var(--color-primary-green);
  transition: width 0.1s linear;
}

@keyframes preloaderReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Minimal Sticky Header (White Glassmorphic) */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 5000;
  display: flex;
  align-items: center;
  transition: var(--transition-medium);
  border-bottom: 1px solid transparent;
}

.nav-transparent {
  background-color: transparent;
  border-bottom-color: transparent;
}

.nav-glassmorphism {
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 32px;
  width: auto;
  display: block;
  transition: var(--transition-fast);
}

.nav-logo-link:hover .nav-logo {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary-green);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Premium Button CTA Link (White Contrast) */
.btn-cta {
  display: inline-block;
  background: transparent;
  color: var(--color-text-dark);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 16px 36px;
  border-radius: 40px;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-medium);
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.btn-cta:hover {
  background: var(--color-text-dark);
  color: var(--color-black);
  border-color: var(--color-text-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.btn-cta:active {
  transform: translateY(-1px);
}

/* ==========================================================================
   5. PAGE SECTIONS STYLING
   ========================================================================== */

/* 1. HERO SECTION (Typographic Layout - White) */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}

.hero-typographic {
  background-color: var(--color-black);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-brand-logo-wrapper {
  margin-bottom: 40px;
  opacity: 0;
  transform: scale(0.9);
  animation: logoEntrance 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

.hero-logo-img {
  height: clamp(55px, 12vw, 90px);
  width: auto;
  display: block;
}

.hero-tagline {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  overflow: hidden;
}

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: textReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tagline .word-reveal:nth-child(1) { animation-delay: 1.1s; }
.hero-tagline .word-reveal:nth-child(2) { animation-delay: 1.3s; }
.hero-tagline .word-reveal:nth-child(3) { animation-delay: 1.5s; }

.hero-coming-soon {
  font-family: var(--font-headings);
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--color-primary-green);
  opacity: 0;
  transform: translateY(15px);
  animation: fadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 2.0s;
  margin-bottom: 12px;
}

/* Entrance Animation Keyframes */
@keyframes logoEntrance {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 2. BRAND STATEMENT SECTION */
.brand-statement-section {
  background-color: var(--color-black);
  color: var(--color-text-dark);
  position: relative;
  z-index: 20;
}

.editorial-quote {
  max-width: 900px;
  margin: 0 auto 36px auto;
}

.quote-text {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.15;
}

.statement-desc {
  max-width: 700px;
  margin: 0 auto;
}

.statement-desc p {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #4b4e4a;
  line-height: 1.7;
}


/* 3. HOME PAGE — FINAL CTA */
.philosophy-section-alt {
  background-color: var(--color-black);
  color: var(--color-text-light);
  position: relative;
  z-index: 20;
}

.alt-philosophy-content {
  max-width: 900px;
  margin: 0 auto;
}

.alt-headline {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.alt-description {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}


/* ==========================================================================
   PAGE 2 — ABOUT PAUSE TYPOGRAPHIC STYLES
   ========================================================================== */
.about-hero-section {
  background-color: var(--color-black);
  color: var(--color-text-dark);
  position: relative;
  z-index: 20;
  padding-top: calc(var(--nav-height) + 4rem);
}

.about-title {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 30px;
}

.about-lead {
  max-width: 850px;
  margin: 0 auto;
}

.about-lead p {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  color: var(--color-text-dark);
  font-weight: 700;
}

/* Offset Layout Split Columns for Editorial Text */
.philosophy-block-section {
  background-color: var(--color-black);
  color: var(--color-text-dark);
  position: relative;
  z-index: 20;
}

.narrative-layout-split {
  display: flex;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: flex-start;
}

.narrative-split-label {
  width: 25%;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.editorial-line-number {
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  display: block;
}

.narrative-split-content {
  width: 75%;
  max-width: 750px;
}

.narrative-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  line-height: 1.15;
}

.editorial-lead-para {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.editorial-body-para {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #4a4d49;
  line-height: 1.8;
}

/* reverse align class to mirror grid */
.narrative-layout-split.reverse-align {
  flex-direction: row-reverse;
}

.narrative-layout-split.reverse-align .narrative-split-label {
  text-align: right;
}

/* Centered manifesto block styling */
.philosophy-editorial-centered {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.centered-block-headline {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 15px;
  margin-bottom: 24px;
}

.philosophy-closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.closing-tagline {
  font-family: var(--font-headings);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}


/* ==========================================================================
   PAGE 3 — CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-page-section {
  background-color: var(--color-black);
  color: var(--color-text-dark);
  position: relative;
  z-index: 20;
  padding-top: calc(var(--nav-height) + 4rem);
}

.contact-page-title {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 20px;
}

.contact-page-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Typographic Contact Rows layout */
.typographic-contacts-list {
  display: flex;
  flex-direction: column;
  margin-top: clamp(2rem, 5vh, 4rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(2rem, 4vh, 3.5rem) 0;
  gap: 20px;
}

.contact-row-num {
  font-family: var(--font-headings);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-primary-green);
  width: 60px;
  flex-shrink: 0;
}

.contact-row-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.contact-row-label {
  font-family: var(--font-headings);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.contact-row-sub {
  font-size: 13px;
  color: var(--color-text-muted);
}

.contact-row-link {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  transition: var(--transition-medium);
}

/* Contact row hovers */
.contact-list-row:hover .contact-row-label {
  color: var(--color-primary-green);
}

.contact-list-row:hover .contact-row-link {
  color: var(--color-primary-green);
  transform: translateX(8px);
}


/* ==========================================================================
   6. GLOBAL FOOTER
   ========================================================================== */
.global-footer {
  background-color: var(--color-black-deep);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 60px 0;
  position: relative;
  z-index: 20;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-social-link {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.footer-social-link:hover,
.footer-social-link.active {
  color: var(--color-primary-green);
}

.footer-copyright {
  font-size: 12px;
  color: var(--color-text-muted);
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
  padding-top: 20px;
}


/* ==========================================================================
   7. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-floating-wrapper {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 5000;
  pointer-events: auto;
}

.whatsapp-float-btn {
  display: flex;
  align-items: center;
  gap: 0px;
  background-color: var(--color-primary-green);
  color: #0a0a0a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 8px 32px rgba(105, 220, 56, 0.15);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-medium);
}

.whatsapp-icon-circle {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-label-hover {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 0px;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin 0.4s;
  will-change: max-width, opacity;
}

/* Expand on Hover */
.whatsapp-float-btn:hover {
  padding: 12px 24px 12px 20px;
  background-color: var(--color-text-dark);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.whatsapp-float-btn:hover .whatsapp-label-hover {
  max-width: 100px;
  opacity: 1;
  margin-right: 10px;
}

.whatsapp-float-btn:active {
  transform: translateY(-1px);
}


/* ==========================================================================
   8. SCROLL OBSERVER REVEALS
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   9. MEDIA QUERIES & BREAKPOINTS
   ========================================================================== */

@media (max-width: 850px) {
  .narrative-layout-split {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .narrative-split-label {
    width: 100%;
    position: static;
  }
  
  .narrative-split-content {
    width: 100%;
  }

  .narrative-layout-split.reverse-align {
    flex-direction: column;
  }

  .narrative-layout-split.reverse-align .narrative-split-label {
    text-align: left;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  :root {
    --nav-height: 80px;
  }
  
  .whatsapp-floating-wrapper {
    bottom: 24px;
    right: 24px;
  }
  
  .whatsapp-float-btn {
    padding: 12px;
  }
  
  /* Disable hover labels on touch screens */
  .whatsapp-float-btn:hover {
    padding: 12px;
    transform: none;
    background-color: var(--color-primary-green);
    color: #0a0a0a;
    box-shadow: 0 8px 32px rgba(105, 220, 56, 0.15);
  }
  
  .whatsapp-float-btn:hover .whatsapp-label-hover {
    max-width: 0px;
    opacity: 0;
    margin-right: 0;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .about-lead p {
    font-size: 18px;
  }
}

/* Accessibility: Respect Reduced Motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  
  .word-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
