:root {
  --primary: #1a1a2e;
  --secondary: #d4af37;
  --background: #0f0f1a;
  --footer-bg: #0a0a0f;
  --button: #d4af37;
  --section-1: #1a1a2e;
  --section-2: #16213e;
  --section-3: #0f3460;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--background);
  color: var(--text-light);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

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

a:hover {
  color: white;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--button);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn:hover:before {
  left: 100%;
}

.section {
  padding: 6rem 0;
}

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

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

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

.card {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
}

footer {
  background-color: var(--footer-bg);
  padding: 4rem 0;
}

.nav-link {
  position: relative;
  padding-bottom: 5px;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}