@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* Premium Color Palette */
  --clr-navy: #07101E; /* Deeper, richer navy */
  --clr-navy-light: #0B192C;
  --clr-navy-lighter: #132742;
  --clr-gold: #D4AF37;
  --clr-gold-light: #F9E596;
  --clr-gold-dark: #997A15;
  --clr-white: #FFFFFF;
  --clr-gray-100: #F3F4F6;
  --clr-gray-300: #D1D5DB;
  --clr-gray-500: #9CA3AF;
  --clr-gray-800: #1F2937;
  
  /* Gradients */
  --grad-dark: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
  --grad-gold: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  --grad-overlay: linear-gradient(to bottom, rgba(7, 16, 30, 0.4) 0%, rgba(7, 16, 30, 0.95) 100%);

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-heading: 'Cinzel', serif; /* Luxury serif font for headings */
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);

  /* Border Radius */
  --radius-sm: 2px; /* Sharper edges feel more premium and corporate */
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--clr-navy);
  color: var(--clr-white);
  line-height: 1.6;
  max-width: 100vw;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--clr-gold);
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.flex-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-center { text-align: center; }
.text-gold { color: var(--clr-gold); }
.text-white { color: var(--clr-white); }
.text-gray { color: var(--clr-gray-300); }

.bg-navy { background-color: var(--clr-navy); }
.bg-navy-light { background-color: var(--clr-navy-light); }
.bg-gold { background-color: var(--clr-gold); }

.hide-on-mobile {
  display: none !important;
}

@media (min-width: 768px) {
  .hide-on-mobile {
    display: inline-flex !important;
  }
}

.section-padding {
  padding: var(--space-xl) 0;
}

.section-title {
  font-size: 3rem;
  margin-bottom: var(--space-xs);
}

.section-subtitle {
  font-family: var(--font-primary);
  color: var(--clr-gold);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.glass-panel {
  background: rgba(11, 25, 44, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.15); /* Subtle gold border */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--clr-navy);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-gold-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-gold);
}
