/* ==========================================================================
   Aurelia Fine Dining - Main Styles
   Premium Luxury Restaurant Website
   ========================================================================== */

/* Custom Properties (CSS Variables) */
:root {
    /* Color Palette */
    --primary-black: #000000;
    --rich-black: #0a0a0a;
    --soft-black: #1a1a1a;
    --charcoal: #2d2d2d;
    --dark-gray: #3d3d3d;
    --medium-gray: #6d6d6d;
    --light-gray: #a0a0a0;
    
    --gold-primary: #D4AF37;
    --gold-light: #F4E4B8;
    --gold-dark: #B8941F;
    --gold-accent: #FFD700;
    
    --white-pure: #FFFFFF;
    --white-soft: #F8F8F8;
    --white-warm: #FBF9F5;
    
    --red-accent: #C41E3A;
    --green-accent: #228B22;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --element-spacing: 30px;
    
    /* Border Radius */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(212, 175, 55, 0.1);
    --shadow-medium: 0 4px 16px rgba(212, 175, 55, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Z-index scale */
    --z-header: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
    
    /* Layout dimensions */
    --navbar-height: 80px;
    
    /* Device-adaptive properties */
    --touch-target-size: 44px;
    --scroll-padding: calc(var(--navbar-height) + 20px);
    --content-max-width: 65ch;
    --grid-gap-base: 2rem;
    --element-margin-base: 1rem;
    
    /* Performance-based properties */
    --animation-duration: 0.3s;
    --scroll-behavior: smooth;
    --backdrop-blur: blur(15px);
    
    /* Accessibility properties */
    --focus-ring-width: 2px;
    --focus-ring-offset: 2px;
    --focus-ring-color: var(--gold-primary);
    --high-contrast-border: 2px;
    
    /* Interactive element sizing */
    --button-min-height: 44px;
    --input-min-height: 44px;
    --nav-item-min-height: 48px;
}

/* Device-specific custom property overrides */
@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
        --grid-gap-base: 1.5rem;
        --element-margin-base: 0.875rem;
        --touch-target-size: 48px;
        --button-min-height: 48px;
        --input-min-height: 48px;
        --nav-item-min-height: 52px;
    }
}

@media (max-width: 480px) {
    :root {
        --navbar-height: 65px;
        --grid-gap-base: 1.25rem;
        --element-margin-base: 0.75rem;
        --touch-target-size: 52px;
        --button-min-height: 52px;
        --input-min-height: 52px;
        --nav-item-min-height: 56px;
    }
}

@media (max-width: 320px) {
    :root {
        --navbar-height: 60px;
        --grid-gap-base: 1rem;
        --element-margin-base: 0.625rem;
    }
}

/* High DPI display adaptations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    :root {
        --high-contrast-border: 0.5px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    :root {
        --animation-duration: 0.01ms;
        --scroll-behavior: auto;
        --transition-fast: 0.01ms;
        --transition-medium: 0.01ms;
        --transition-slow: 0.01ms;
    }
}

/* High contrast mode adaptations */
@media (prefers-contrast: high) {
    :root {
        --gold-primary: #FFD700;
        --gold-light: #FFFF99;
        --primary-black: #000000;
        --white-pure: #FFFFFF;
        --focus-ring-width: 3px;
        --high-contrast-border: 2px;
    }
}

/* Touch device adaptations */
@media (hover: none) and (pointer: coarse) {
    :root {
        --touch-target-size: 48px;
        --button-min-height: 48px;
        --backdrop-blur: none;
        --animation-duration: 0.15s;
    }
}

/* Large screen adaptations */
@media (min-width: 1200px) {
    :root {
        --navbar-height: 90px;
        --grid-gap-base: 3rem;
        --element-margin-base: 1.25rem;
        --content-max-width: 75ch;
    }
}

@media (min-width: 1920px) {
    :root {
        --navbar-height: 100px;
        --grid-gap-base: 4rem;
        --element-margin-base: 1.5rem;
        --content-max-width: 85ch;
    }
}

/* ==========================================================================
   Global Background Animations
   ========================================================================== */

/* Subtle Ambient Background Animation for All Pages */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(255, 107, 53, 0.02) 0%, transparent 45%),
        radial-gradient(circle at 50% 10%, rgba(231, 76, 60, 0.025) 0%, transparent 50%),
        radial-gradient(circle at 20% 90%, rgba(212, 175, 55, 0.02) 0%, transparent 35%);
    opacity: 0.8;
    animation: globalAmbientFlow 30s ease-in-out infinite;
    pointer-events: none;
    z-index: -100;
}

@keyframes globalAmbientFlow {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateX(20px) translateY(-15px) scale(1.02);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-10px) translateY(20px) scale(0.98);
        opacity: 0.9;
    }
    75% {
        transform: translateX(15px) translateY(-10px) scale(1.01);
        opacity: 0.7;
    }
}

/* Floating Geometric Shapes */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06) 2px, transparent 3px),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.04) 1px, transparent 2px),
        radial-gradient(circle at 60% 20%, rgba(212, 175, 55, 0.05) 1.5px, transparent 2.5px),
        radial-gradient(circle at 30% 80%, rgba(231, 76, 60, 0.03) 2.5px, transparent 3.5px);
    background-size: 300px 300px, 250px 250px, 400px 400px, 350px 350px;
    opacity: 0.5;
    animation: geometricDrift 40s linear infinite;
    pointer-events: none;
    z-index: -99;
}

@keyframes geometricDrift {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        transform: rotate(0deg);
    }
    25% {
        background-position: 25% 25%, -25% 25%, 25% -25%, -25% -25%;
        transform: rotate(0.5deg);
    }
    50% {
        background-position: 50% 50%, -50% 50%, 50% -50%, -50% -50%;
        transform: rotate(-0.5deg);
    }
    75% {
        background-position: 75% 75%, -75% 75%, 75% -75%, -75% -75%;
        transform: rotate(0.3deg);
    }
    100% {
        background-position: 100% 100%, -100% 100%, 100% -100%, -100% -100%;
        transform: rotate(0deg);
    }
}

/* ==========================================================================
   Global Styles and Variables
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: var(--scroll-behavior);
    scroll-padding-top: var(--scroll-padding);
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white-pure);
    background-color: var(--primary-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white-pure);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white-soft);
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gold-light);
}

.small-text {
    font-size: 0.875rem;
    color: var(--light-gray);
}

/* ==========================================================================
   Navigation Logo Styles
   ========================================================================== */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    transition: transform var(--transition-medium);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    object-fit: cover;
}

.logo-image:hover {
    transform: scale(1.1);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 0;
    line-height: 1;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(212, 175, 55, 0.4);
    animation: logoGoldGlow 6s ease-in-out infinite alternate;
}

@keyframes logoGoldGlow {
    0% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 15px rgba(212, 175, 55, 0.4);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 25px rgba(212, 175, 55, 0.6);
    }
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gold-light);
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .nav-logo {
        gap: 0.5rem;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gold-light);
    font-weight: 300;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--white-soft);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.section-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 2rem auto;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    z-index: var(--z-header);
    transition: var(--transition-medium);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(255, 107, 53, 0.1) 30%,
        rgba(212, 175, 55, 0.08) 60%,
        transparent 100%);
    opacity: 0.8;
    animation: navbarGoldGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

@keyframes navbarGoldGlow {
    0% {
        opacity: 0.8;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
    100% {
        opacity: 0.9;
        transform: scaleY(1.1);
    }
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 
        var(--shadow-medium),
        0 0 30px rgba(212, 175, 55, 0.15);
}

.navbar.scrolled::after {
    opacity: 1;
    height: 25px;
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(255, 107, 53, 0.15) 30%,
        rgba(212, 175, 55, 0.12) 60%,
        transparent 100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: var(--navbar-height);
    height: var(--navbar-height);
    position: relative;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 100px;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(212, 175, 55, 0.08) 0%, 
        transparent 70%);
    animation: navAmbientLeft 10s ease-in-out infinite alternate;
    pointer-events: none;
}

.nav-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 107, 53, 0.06) 0%, 
        transparent 70%);
    animation: navAmbientRight 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes navAmbientLeft {
    0% {
        opacity: 0.5;
        transform: scaleX(1);
    }
    100% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
}

@keyframes navAmbientRight {
    0% {
        opacity: 0.4;
        transform: scaleX(1.1);
    }
    100% {
        opacity: 0.7;
        transform: scaleX(1.3);
    }
}

.nav-logo {
    text-decoration: none;
    color: inherit;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--white-soft);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--white-soft);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: all var(--transition-medium);
}
.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-medium);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--border-radius-medium);
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--primary-black);
    box-shadow: var(--shadow-medium);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: calc(var(--navbar-height) + 180px);
    padding-bottom: 100px;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%),
        url('../images/p.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 70%);
    z-index: -1;
}

.hero-container {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    margin-top: 40px; /* Additional margin for extra spacing */
    position: relative;
    z-index: 10;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--white-soft);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white-soft);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--white-soft);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: var(--gold-primary);
    position: relative;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 750px;
        padding-top: calc(70px + 120px); /* Even larger gap for mobile proper spacing */
        padding-bottom: 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 650px;
        padding-top: calc(70px + 100px); /* Adjusted for very small screens */
        padding-bottom: 60px;
    }
    
    .hero-container {
        padding: 0 1rem;
        margin-top: 20px;
    }
}

/* ==========================================================================
   Page Headers
   ========================================================================== */

.page-header {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: calc(var(--navbar-height) + 40px); /* Extra space to prevent text hiding */
    padding-bottom: 40px;
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(0, 0, 0, 0.9) 100%),
        url('../images/page-header-bg.jpg') center/cover no-repeat;
    z-index: -2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.page-header-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--white-soft);
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Cards & Content Blocks
   ========================================================================== */

.card {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.9) 0%, 
        rgba(45, 45, 45, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-light);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(212, 175, 55, 0.4);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--white-soft);
    font-weight: 300;
}

.card-content {
    color: var(--white-soft);
    line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: linear-gradient(135deg, 
        var(--rich-black) 0%, 
        var(--soft-black) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--white-soft);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white-soft);
    text-decoration: none;
    transition: var(--transition-medium);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-medium);
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.contact-info p,
.opening-hours p {
    color: var(--white-soft);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info i,
.opening-hours i {
    color: var(--gold-primary);
    width: 16px;
}

.opening-hours span {
    font-weight: 500;
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--light-gray);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-gold {
    color: var(--gold-primary);
}

.text-white {
    color: var(--white-pure);
}

.text-gray {
    color: var(--white-soft);
}

.bg-black {
    background: var(--primary-black);
}

.bg-gold {
    background: var(--gold-primary);
    color: var(--primary-black);
}

.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .navbar::after {
        height: 15px;
        background: linear-gradient(180deg, 
            rgba(212, 175, 55, 0.12) 0%, 
            rgba(255, 107, 53, 0.08) 30%,
            rgba(212, 175, 55, 0.06) 60%,
            transparent 100%);
    }
    
    .nav-container::before,
    .nav-container::after {
        width: 80px;
        opacity: 0.7;
    }
    
    .logo-text {
        animation-duration: 8s;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-heavy);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .page-header {
        padding-top: calc(var(--navbar-height) + 35px);
        padding-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-container,
    .page-header-content {
        padding: 0 1rem;
    }
    
    .page-header {
        min-height: 400px;
        padding-top: calc(70px + 30px); /* Adjusted for mobile navbar */
        padding-bottom: 30px;
    }
    
    .card {
        padding: 1.5rem;
    }
}
