:root {
  --bg-dark: #0a0a0a;
  --card-bg: #161616;
  --accent: #d35a9a; /* Rose Pink */
  --gold: #c5a059;   /* Luxury Gold */
  --text-main: #e0e0e0;
  --text-muted: #a0a0a0;
  --glow: rgba(211, 90, 154, 0.3);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  letter-spacing: 1px;
}

/* Luxury Card Effect */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

/* Navigation - Floating Glass Effect */
.topnav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 15px 0;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-inner a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-inner a:hover {
  color: var(--gold);
}

/* Call to Action Button */
.cta {
  background: linear-gradient(135deg, var(--gold), #8a6d3b);
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px var(--glow);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
/* Navigation Polish */
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links a {
    font-size: 0.75rem;
  }
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
