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

:root {
  --charcoal-dark: #121212;
  --charcoal: #1a1a1a;
  --charcoal-light: #2c2c2c;
  --steel-grey: #8d99ae;
  --muted-gold: #cba153;
  --muted-gold-light: #dfb25e;
  --subtle-blue: #102a43;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(26, 26, 26, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--charcoal-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.text-gold {
  color: var(--muted-gold);
}

/* Glassmorphism Panel utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--muted-gold), var(--muted-gold-light));
  color: var(--charcoal-dark);
  box-shadow: 0 10px 20px rgba(203, 161, 83, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 15px 30px rgba(203, 161, 83, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--charcoal-dark);
}

/* Sections */
.section-padding {
  padding: 8rem 5%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Image styling */
img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Utilities */
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-4 { margin-top: 4rem; }

/* Grid base */
.d-grid {
  display: grid;
}
.d-flex {
  display: flex;
}
