/* ==========================================================================
   The Monarch Imperial - Luxury Dining & Convention Center
   Complete Stylesheet - Emerald + Rose Gold + Champagne Theme
   ========================================================================== */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
    --emerald-deep: #0A3622;
    --emerald: #1A6B45;
    --emerald-light: #2D8B5E;
    --emerald-muted: rgba(26, 107, 69, 0.12);
    --rose-gold: #B76E79;
    --rose-gold-light: #D4949C;
    --champagne: #D4A574;
    --champagne-light: #E8C9A0;
    --gold: #C9A961;
    --gold-light: #D4B96A;
    --dark: #051A10;
    --dark-alt: #0A0F14;
    --dark-card: #0D1A12;
    --white: #FFFFFF;
    --off-white: #FAF8F3;
    --cream: #F5F0E8;
    --warm-gray: #F0EDE6;
    --text: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #7A7A7A;
    --text-muted: #A0A0A0;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-script: 'Great Vibes', cursive;

    --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-medium: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    --section-padding: 120px 0;
    --container-max: 1400px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

::selection {
    background-color: var(--gold);
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: var(--section-padding);
}

.accent {
    color: var(--gold);
}

.script-font {
    font-family: var(--font-script);
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--emerald);
    border-radius: var(--radius-full);
    pointer-events: none;
    z-index: 100000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--emerald);
    border-radius: var(--radius-full);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--transition-smooth),
                height 0.3s var(--transition-smooth),
                border-color 0.3s,
                background-color 0.3s;
}

.cursor-follower.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--emerald-light);
    background-color: rgba(26, 107, 69, 0.05);
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--transition-smooth),
                visibility 0.6s var(--transition-smooth);
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.crown-icon {
    width: 80px;
    height: 64px;
    margin: auto 30px;
    color: var(--gold);
    animation: crownFloat 2s ease-in-out infinite;
}

.crown-icon svg {
    width: 100%;
    height: 100%;
}

.crown-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: crownDraw 2s var(--transition-smooth) forwards;
}

.crown-dot {
    opacity: 0;
    animation: crownDot 0.3s ease forwards;
}

.crown-dot:nth-child(2) { animation-delay: 0.5s; }
.crown-dot:nth-child(3) { animation-delay: 0.7s; }
.crown-dot:nth-child(4) { animation-delay: 0.9s; }
.crown-dot:nth-child(5) { animation-delay: 1.1s; }
.crown-dot:nth-child(6) { animation-delay: 1.3s; }

.crown-base {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: crownDraw 1s var(--transition-smooth) 1s forwards;
}

.preloader-text {
    color: var(--gold);
    font-family: var(--font-heading);
    text-align: center;
}

.preloader-line {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-smooth) 0.5s forwards;
    display: block;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(201, 169, 97, 0.2);
    margin: 20px auto 0;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.3s linear;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.nav-header.scrolled {
    background-color: rgba(5, 26, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.navbar {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    z-index: 10002;
}

.logo-crown {
    width: 44px;
    height: 36px;
}

.logo-crown svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--gold);
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 500px;
    height: 100vh;
    background: var(--dark);
    padding: 100px 60px 60px;
    transition: right 0.6s var(--transition-smooth);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-menu.open {
    right: 0;
}

.menu-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateX(30px);
}

.nav-menu.open .nav-link {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.open .nav-link:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.open .nav-link:nth-child(2) { transition-delay: 0.15s; }
.nav-menu.open .nav-link:nth-child(3) { transition-delay: 0.2s; }
.nav-menu.open .nav-link:nth-child(4) { transition-delay: 0.25s; }
.nav-menu.open .nav-link:nth-child(5) { transition-delay: 0.3s; }
.nav-menu.open .nav-link:nth-child(6) { transition-delay: 0.35s; }
.nav-menu.open .nav-link:nth-child(7) { transition-delay: 0.4s; }

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    padding-left: 10px;
}

.nav-link-number {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.4;
}

.nav-link-admin {
    font-family: var(--font-heading);
    font-size: 2rem;
}

/* Menu Footer inside nav-menu */
.menu-footer {
    margin-top: auto;
    padding-top: 40px;
}

.menu-footer-info {
    margin-bottom: 20px;
}

.menu-footer-info p {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.menu-footer-socials {
    display: flex;
    gap: 16px;
}

.menu-footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.menu-footer-socials a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Nav Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10002;
    position: relative;
}

.toggle-bar {
    display: block;
    height: 1px;
    background-color: var(--gold);
    transition: all var(--transition-medium);
}

.toggle-bar:nth-child(1) {
    width: 30px;
}

.toggle-bar:nth-child(2) {
    width: 22px;
}

.toggle-bar:nth-child(3) {
    width: 28px;
}

.toggle-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.menu-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--gold);
    border-radius: var(--radius-full);
    opacity: 0;
    animation: particleFloat linear infinite;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 80px;
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
}

.title-line:nth-child(1) .title-word {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.title-line:nth-child(2) .title-word {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

.title-line:nth-child(3) .title-word {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-style: italic;
}

.title-word.script-font {
    font-family: var(--font-script);
    color: var(--gold) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
}

.title-word.accent {
    color: var(--gold);
    text-shadow: 0 0 60px rgba(201, 169, 97, 0.3);
}

.hero-desc {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
    transform-origin: top;
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-lr;
}

.hero-side-info {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.side-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
}

.side-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.6;
}

.side-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
}

.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 5;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.slider-dot span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.6s ease;
}

.slider-dot.active span {
    width: 100%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s var(--transition-smooth);
}

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

.btn-icon {
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 30px rgba(201, 169, 97, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 0.8rem;
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.7rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee-section {
    padding: 24px 0;
    background-color: var(--dark);
    overflow: hidden;
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(201, 169, 97, 0.6);
    white-space: nowrap;
}

.marquee-separator {
    color: var(--gold);
    font-size: 0.6rem;
    opacity: 0.4;
    flex-shrink: 0;
}

/* ==========================================================================
   Section Tags & Titles
   ========================================================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.tag-line {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.tag-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: var(--cream);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-desc p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 4px;
}

.about-image-stack {
    position: relative;
    height: 600px;
}

.about-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 80%;
}

.about-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 40%;
}

.about-experience-badge {
    position: absolute;
    bottom: 80px;
    right: -20px;
    background: var(--gold);
    color: var(--dark);
    padding: 30px;
    text-align: center;
    z-index: 5;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
}

.image-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.image-placeholder-content i {
    font-size: 3rem;
    opacity: 0.5;
}

.image-placeholder-content span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ==========================================================================
   Features Section (Dark)
   ========================================================================== */
.features-section {
    padding: 80px 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 50px 36px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: rgba(201, 169, 97, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    color: var(--gold);
    font-size: 1.5rem;
}

.icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    transition: all var(--transition-medium);
}

.feature-card:hover .icon-ring {
    transform: scale(1.15);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.feature-number {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 169, 97, 0.06);
    line-height: 1;
}

/* ==========================================================================
   Dining / Menu Section
   ========================================================================== */
.dining-section {
    background-color: var(--white);
    overflow: hidden;
}

.dining-header {
    text-align: center;
    margin-bottom: 60px;
}

.dining-header .section-tag {
    justify-content: center;
}

.dining-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.dining-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 28px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.category-btn:hover,
.category-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    background: var(--cream);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.menu-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.menu-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2.5rem;
    transition: transform var(--transition-slow);
}

.menu-card:hover .menu-img-placeholder {
    transform: scale(1.05);
}

.menu-card-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.menu-price {
    background: var(--rose-gold);
    color: var(--white);
    padding: 6px 14px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.menu-price-mobile {
    display: none;
}

.menu-card-content {
    padding: 24px;
}

.menu-card-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.menu-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
}

.menu-dots {
    flex: 1;
    border-bottom: 1px dotted var(--text-muted);
    min-width: 20px;
    margin-bottom: 5px;
}

.menu-card-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

.menu-tags {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.menu-tag {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b6914;
    padding: 4px 10px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.dining-cta {
    text-align: center;
    margin-top: 50px;
}

.menu-card.hidden {
    display: none;
}

/* ==========================================================================
   Parallax Quote Section
   ========================================================================== */
.parallax-quote {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 26, 16, 0.92) 0%, rgba(10, 54, 34, 0.88) 100%);
    z-index: 1;
}

.parallax-quote .container {
    position: relative;
    z-index: 2;
}

.quote-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 30px;
    opacity: 0.5;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 30px;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.author-name {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.author-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Convention Section
   ========================================================================== */
.convention-section {
    background-color: var(--cream);
    overflow: hidden;
}

.convention-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.convention-image {
    position: relative;
}

.convention-img-frame {
    overflow: hidden;
    position: relative;
    height: 500px;
}

.convention-img-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.convention-stat-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: var(--dark);
    padding: 30px 40px;
    z-index: 5;
}

.float-stat {
    display: flex;
    flex-direction: column;
}

.float-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.float-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
}

.convention-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.venue-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.venue-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-fast);
}

.venue-item:hover {
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateX(6px);
}

.venue-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold);
    font-size: 0.9rem;
}

.venue-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 3px;
}

.venue-info p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    background-color: var(--dark);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header .section-tag {
    justify-content: center;
}

.gallery-header .section-title {
    color: var(--white);
}

.gallery-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.5);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.15);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: transform var(--transition-slow);
}

.gallery-placeholder i {
    font-size: 2rem;
    opacity: 0.4;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(5, 26, 16, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-info p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.gallery-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-expand:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.gallery-item.hidden-filter {
    display: none;
}

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.lightbox-content {
    position: relative;
    max-width: 80vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-placeholder {
    width: 60vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d1810;
    color: rgba(255, 255, 255, 0.2);
    font-size: 4rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: var(--white);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-tag {
    justify-content: center;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 60px;
    text-align: center;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 30px;
    color: var(--rose-gold);
    font-size: 0.85rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-author .author-info {
    text-align: left;
}

.testimonial-author .author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    display: block;
}

.testimonial-author .author-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--dark);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ==========================================================================
   Instagram Feed Section
   ========================================================================== */
.instagram-section {
    padding: 60px 0 0;
    background-color: var(--cream);
}

.instagram-header {
    text-align: center;
    margin-bottom: 30px;
}

.instagram-header i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.instagram-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.instagram-header p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-light);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.insta-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    transition: transform var(--transition-slow);
}

.instagram-item:hover .insta-placeholder {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 97, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.instagram-item:hover .insta-overlay {
    opacity: 1;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background-color: var(--white);
    overflow: hidden;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-fast);
}

.contact-item:hover {
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateX(6px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold);
    font-size: 1rem;
}

.contact-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 50px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-group.full-width {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A961' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-medium);
}

.form-group input:focus ~ .input-line,
.form-group select:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
    height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #2d1810;
}

.map-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.5) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.map-pin {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.map-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    animation: mapPulse 2s ease-out infinite;
}

.map-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 4px;
}

.map-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(26, 107, 69, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-logo .logo-crown {
    width: 36px;
    height: 30px;
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 97, 0.15);
    color: var(--gold);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-newsletter p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.newsletter-input-wrapper {
    display: flex;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.newsletter-input-wrapper input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.newsletter-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-input-wrapper button {
    padding: 14px 20px;
    background: var(--gold);
    border: none;
    color: var(--dark);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.newsletter-input-wrapper button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--transition-fast);
}

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

/* ==========================================================================
   Back to Top
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-medium);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--gold-light);
    transform: translateY(-4px);
}

/* ==========================================================================
   Reveal Animations
   ========================================================================== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s var(--transition-smooth);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ==========================================================================
   Keyframe Animations
   ========================================================================== */
@keyframes crownDraw {
    to {
        stroke-dashoffset: 0;
    }
}

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

@keyframes crownFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

@keyframes particleFloat {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.3;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(80px) scale(0.5);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.001% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes mapPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ==========================================================================
   Scrollbar Styling
   ========================================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ==========================================================================
   Responsive - Large Screens (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 90px 0;
    }

    .container {
        padding: 0 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-stack {
        height: 500px;
        max-width: 500px;
        margin: 0 auto;
    }

    .convention-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .convention-image {
        order: -1;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .hero-side-info {
        display: none;
    }

    .hero-slider-nav {
        right: 30px;
        bottom: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-carousel {
        max-width: 100%;
    }

    .testimonial-card {
        padding: 0 40px;
    }
}

/* ==========================================================================
   Responsive - Tablets (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 0 20px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 0 20px;
        padding-top: 60px;
    }

    .hero-scroll-indicator {
        left: 20px;
        bottom: 30px;
    }

    .hero-side-info {
        display: none;
    }

    .hero-slider-nav {
        right: 20px;
        bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-card {
        padding: 0 20px;
    }

    .nav-menu {
        padding: 100px 30px 30px;
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .about-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .about-image-stack {
        height: 400px;
    }

    .dining-categories {
        gap: 6px;
    }

    .category-btn {
        padding: 8px 20px;
        font-size: 0.65rem;
    }

    .gallery-filter {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.65rem;
    }

    .parallax-quote {
        padding: 100px 0;
    }

    .convention-img-frame {
        height: 350px;
    }

    .convention-stat-float {
        bottom: -15px;
        right: -10px;
        padding: 20px 25px;
    }

    .float-number {
        font-size: 2rem;
    }

    .map-section {
        height: 300px;
    }
}

/* ==========================================================================
   Responsive - Mobile (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 0 16px;
    }

    .hero {
        min-height: 550px;
    }

    .badge-text {
        font-size: 0.65rem;
        letter-spacing: 0.3em;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        flex-direction: column;
        gap: 25px;
    }

    .about-image-stack {
        height: 350px;
    }

    .menu-card-header h4 {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 0 10px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .venue-item {
        padding: 16px;
    }

    .contact-item {
        padding: 16px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 16px;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-input-wrapper button {
        padding: 12px;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }

    .marquee-content {
        animation: none;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .nav-header,
    .nav-menu,
    .menu-overlay,
    .preloader,
    .cursor,
    .cursor-follower,
    .back-to-top,
    .hero-particles,
    .hero-scroll-indicator,
    .hero-side-info,
    .hero-slider-nav,
    .lightbox,
    .map-section {
        display: none !important;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .section-padding {
        padding: 30px 0;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }
}
