@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}
.animate-fade-in-up {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Strict Heading Hierarchy as per Guidelines */
/* Responsive Heading Hierarchy */
h1, .h1 { font-size: 32px !important; }
h2, .h2 { font-size: 28px !important; }
h3, .h3 { font-size: 24px !important; }
h4, .h4 { font-size: 22px !important; }
h5, .h5 { font-size: 20px !important; }
h6, .h6 { font-size: 18px !important; }

@media (min-width: 1024px) {
  h1, .h1 { font-size: 48px !important; }
  h2, .h2 { font-size: 40px !important; }
  h3, .h3 { font-size: 32px !important; }
  h4, .h4 { font-size: 28px !important; }
  h5, .h5 { font-size: 24px !important; }
  h6, .h6 { font-size: 20px !important; }
}

/* Strict Section Spacing */
section:not(#hero-slider) {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* Custom scrollbar for luxury feel */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #c5a059; /* Brand Primary */
  border-radius: 10px;
}

/* Page Headers */
/* Page Headers */
.page-header {
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 240px !important; /* Significantly Increased Spacer from Nav */
    padding-bottom: 100px;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .page-header {
        padding-top: 320px !important; /* Significantly Increased Spacer for Desktop */
        padding-bottom: 120px;
        background-attachment: fixed;
    }
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
}
.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}
.page-tagline {
    display: none; /* Ensure tagline is removed as per previous requests */
}

/* Hero Slider Text Override */
#hero-slider h1 {
    font-size: 3rem !important;
    line-height: 1.2;
}
@media (min-width: 768px) {
    #hero-slider h1 {
        font-size: 6rem !important;
    }
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
}
.breadcrumb a {
    color: white;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: #C5A059;
}
.breadcrumb span {
    color: #C5A059;
}

/* Glass Nav */
.glass-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}
.dark .glass-nav {
  background: rgba(2, 6, 23, 0.95);
}
