/* Luxvere v3 - Premium Dark Gold & Navy Theme */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Palette (Deep Space / Navy) */
  --bg-main: #050a14;
  /* Deepest Space Navy */
  --bg-secondary: #0a1128;
  /* Rich Navy */
  --bg-tertiary: #1c2541;
  /* Lighter Navy/Steel */

  /* Brand Accents (Luxurious Gold) */
  --primary: #d4af37;
  /* Metallic Gold */
  --primary-hover: #b89628;
  --accent: #f4c430;
  /* Bright Gold/Yellow */
  --accent-light: rgba(212, 175, 55, 0.1);

  /* Text Colors */
  --text-main: #ffffff;
  --text-secondary: #cbd5e1;
  /* Light Slate */
  --text-muted: #94a3b8;
  /* Muted Slate */

  /* UX Elements */
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-primary: 0 0 20px rgba(212, 175, 55, 0.2);
  /* Golden Glow */

  /* Typography */
  --font-heading: 'Cinzel', serif;
  /* Matching the logo's premium serif vibe */
  --font-body: 'Manrope', sans-serif;

  --container-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Overhaul */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  /* Gold Headings */
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  /* Often fits Cinematic/Luxury styles */
}

h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #fceabb 0%, #f8b500 50%, #fceabb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-primary {
  color: var(--primary);
}

.grid {
  display: grid;
  gap: 32px;
}

/* Navbar Redesign */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(5, 10, 20, 0.85);
  /* Dark Blur */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 50px;
  /* Adjust based on actual image aspect ratio */
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  /* Keep body font for nav for readability */
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: width 0.3s ease;
}

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

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 2px;
  /* Sharp corners for premium look */
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #b89628 100%);
  color: #000;
  /* Distinct contrast on gold */
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
}

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

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #fff;
  border-color: #fff;
}

/* Card System */
.card-base {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  /* Slight rounding */
  padding: 40px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.card-base:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Section Spacing */
section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

/* Footer Redesign */
footer {
  background: #02050a;
  /* Almost Black */
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --font-heading: 14px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .grid {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}