/* Fususu.com — Base Styles */
/* Variables, Reset, Typography */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  /* Colors */
  --blue-deep:   #0A1628;
  --blue-dark:   #0D1F3C;
  --blue-mid:    #1A3A6B;
  --blue-accent: #2B6CB0;
  --blue-bright: #4299E1;
  --gold:        #F6C343;
  
  /* Text colors */
  --text-primary:  #FFFFFF;
  --text-secondary:#C8D6E5;
  --text-dim:      #94A3B8;
  
  /* Functional */
  --border:      rgba(66,153,225,0.2);
  --surface:     rgba(26,58,107,0.3);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  
  /* Spacing */
  --max-width: 1200px;
  --section-pad: 7rem 2rem;
  --section-pad-m: 4rem 1.25rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--blue-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Utility Classes */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--section-pad);
}

@media (max-width: 767px) {
  section {
    padding: var(--section-pad-m);
  }

  body {
    font-size: 1.1875rem;
  }
}

/* Section heading styles */
.section-label {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-top: 0.5rem;
}