:root {
  --deep-navy: #0B192C;
  --charcoal: #333333;
  --ivory: #F8F9FA;
  --gold: #D4AF37;
  --gold-hover: #e6c863;
  --light-gray: #EAEAEA;
  --dark-overlay: rgba(11, 25, 44, 0.85);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  --spacing-sm: 1rem;
  --spacing-md: 2.5rem;
  --spacing-lg: 5rem;
  --radius: 8px;
}

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

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--deep-navy);
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--deep-navy);
}

/* Reusable Layout Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--light-gray);
  padding: 1rem 0;
}

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

.navbar .logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-navy);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Animations */
.fadeIn {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.slideUp {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
.site-footer {
  background: var(--deep-navy);
  color: var(--ivory);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

.footer-credits {
  font-size: 0.85rem;
  color: rgba(248, 249, 250, 0.7);
}

.footer-credits a {
  color: var(--gold);
  font-weight: bold;
}

.footer-contact {
  font-size: 0.9rem;
}

.footer-contact strong {
  color: var(--gold);
}

/* Page Transition Overlay */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--deep-navy);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}

.page-transition.active {
  transform: scaleY(1);
  transform-origin: top;
}
