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

/* JETLORIA Design System & Variables */
:root {
  --color-bg-primary: #05070B;
  --color-bg-secondary: #0B1320;
  --color-gold: #D4AF37;
  --color-gold-hover: #F4C542;
  --color-white: #F5F5F5;
  --color-gray: #A8B0BB;
  
  --card-glass-bg: rgba(255, 255, 255, 0.03);
  --card-glass-blur: blur(12px);
  --card-glass-border: 1px solid rgba(212, 175, 55, 0.12);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --gold-glow: 0 0 30px rgba(212, 175, 55, 0.18);
  
  --font-serif: 'Cinzel', 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', 'Manrope', 'Helvetica Neue', sans-serif;
  
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-primary);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--color-bg-primary);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
}

/* Typography Scales */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 1px;
}

/* Utility classes */
.text-gold { color: var(--color-gold) !important; }
.text-gray { color: var(--color-gray) !important; }
.text-center { text-align: center; }
.section-title {
  font-size: 2.75rem; /* 44px */
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.25rem; /* 20px */
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto 60px;
  font-weight: 400;
}
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

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

/* Premium Card System */
.glass-card {
  background: var(--card-glass-bg);
  backdrop-filter: var(--card-glass-blur);
  -webkit-backdrop-filter: var(--card-glass-blur);
  border: var(--card-glass-border);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), var(--gold-glow);
  border-color: rgba(212, 175, 55, 0.25);
}

/* Button Systems */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg-primary);
  border-radius: 14px;
  padding: 16px 32px;
}
.btn-primary:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: 14px;
  padding: 15px 31px;
}
.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

/* Global Sticky Navbar */
header.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  background: rgba(5, 7, 11, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}
header.navbar-container.scrolled {
  height: 80px;
  background: rgba(5, 7, 11, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 58px;
  width: 240px;
}
.logo-link img {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}

.nav-item a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-white);
  position: relative;
  padding: 8px 0;
}
.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}
.nav-item a:hover {
  color: var(--color-gold-hover);
}
.nav-item a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}
.nav-cta .btn {
  font-size: 0.95rem;
  padding: 12px 24px;
}

/* Mobile Navbar Toggle */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

/* Mobile Side Menu */
.mobile-menu-overlay {
  display: none;
}

/* Global Footer Layout */
footer.footer-container {
  background-color: var(--color-bg-primary);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.6fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col-brand .footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 24px;
}
.footer-col-brand p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--color-gray);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}
.social-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gray);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.social-item a:hover {
  color: var(--color-gold-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  color: var(--color-gray);
  font-size: 0.85rem;
}
.footer-affiliate-disc {
  color: var(--color-gray);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 16px;
  opacity: 0.85;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
  animation: fadeIn 1s ease forwards;
}
.animate-slideup {
  animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
