/* =========================================
   THE BEAT BOUTIQUE - ENTERPRISE DESIGN SYSTEM
   ========================================= */

:root {
    /* Color Palette */
    --primary-navy: #0a192f;
    --primary-teal: #003d4d;
    --accent-gold: #d4af37;
    --accent-gold-dark: #8b6b1b;
    --accent-gold-dim: #b5952f;
    --text-cream: #f4f1ea;
    --text-dark: #2f3f50;
    --text-muted: rgba(244, 241, 234, 0.7);
    --dark-overlay: rgba(10, 25, 47, 0.85);
    
    /* Typography - Fluid Scale */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --h1-size: clamp(3rem, 5vw + 1rem, 5.5rem);
    --h2-size: clamp(2rem, 3vw + 1rem, 3.5rem);
    --h3-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
    --body-size: clamp(1rem, 0.5vw + 0.8rem, 1.125rem);
    
    /* Spacing */
    --section-padding: clamp(60px, 10vh, 120px);
    --container-width: 1800px; /* Increased for large screens */
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(212, 175, 55, 0.2);
    --box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--primary-navy);
    color: var(--text-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-cream);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-serif { font-family: var(--font-serif); font-style: italic; }

/* --- LIGHT SECTIONS --- */
.theme-light {
    color: var(--primary-navy);
}

.theme-light h1,
.theme-light h2,
.theme-light h3,
.theme-light h4,
.theme-light .section-title {
    color: var(--primary-navy);
}

.theme-light p,
.theme-light li,
.theme-light span,
.theme-light small {
    color: var(--text-dark);
}

.theme-light a {
    color: var(--primary-navy);
}

.theme-light .text-gold {
    color: var(--accent-gold-dark);
}

.theme-light .btn-primary {
    color: var(--accent-gold-dark);
    border-color: var(--accent-gold-dark);
}

/* --- VENUE PAGES (LIGHT CONTENT AREA) --- */
.venue-content {
    background: #ffffff;
    color: var(--primary-navy);
}

.venue-content h1,
.venue-content h2,
.venue-content h3,
.venue-content h4 {
    color: var(--primary-navy);
}

.venue-content p,
.venue-content li,
.venue-content span {
    color: var(--text-dark);
}

.venue-content .venue-sidebar {
    color: var(--text-cream);
}

.venue-content .venue-sidebar h1,
.venue-content .venue-sidebar h2,
.venue-content .venue-sidebar h3,
.venue-content .venue-sidebar h4,
.venue-content .venue-sidebar p,
.venue-content .venue-sidebar li,
.venue-content .venue-sidebar span {
    color: var(--text-cream);
}

.section-title {
    font-size: var(--h2-size);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 15px auto 0;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 2px; /* Sharper, more premium look than rounded */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-primary {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent-gold);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--primary-navy);
}

.btn-primary:hover::before {
    width: 100%;
}

.hero-cta::before {
    display: none;
}

.hero-cta:hover {
    color: #fff;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

/* Desktop: Hidden initially, fades in */
@media (min-width: 769px) {
    .navbar {
        transform: translateY(0); /* Default visible */
        background-color: transparent;
        transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    }
    .navbar.navbar-hidden {
        transform: translateY(-100%);
    }
    .navbar.navbar-scrolled {
        background-color: var(--primary-navy);
        box-shadow: var(--box-shadow);
    }
}

/* Mobile: Always visible, transparent to solid */
@media (max-width: 768px) {
    .navbar {
        background-color: transparent;
    }
    .navbar.navbar-scrolled {
        background-color: var(--primary-navy);
        box-shadow: var(--box-shadow);
    }
}

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

.logo-img {
    height: 90px; /* Larger logo for more impact */
    width: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-cream);
    position: relative;
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 24px;
    }
    .nav-link {
        font-size: 0.8rem;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.nav-cta {
    border: 1px solid var(--text-cream);
    padding: 8px 20px;
    font-size: 0.8rem;
    border-radius: 2px;
}

.navbar .nav-cta.btn-primary::before {
    display: none;
}

.navbar .nav-cta.btn-primary:hover {
    color: var(--accent-gold);
}

/* Mobile Menu Toggle */
.menu-toggle { display: none; cursor: pointer; }
.bar {
    width: 25px; height: 2px; background-color: var(--text-cream); margin: 6px 0; transition: 0.4s;
}

/* --- HERO SECTION --- */
.hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,25,47,0.3), rgba(10,25,47,0.1), rgba(10,25,47,0.8));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    text-align: center;
    width: 100%;
    max-width: 1000px;
    z-index: 2;
    padding: 0 20px;

    /* Animation Params */
    opacity: 0;
    animation: heroFadeIn 0.8s ease-out 0.2s forwards;
}

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

.hero-title {
    font-size: var(--h1-size);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    opacity: 0.8;
    cursor: pointer;
}

.arrow-down {
    width: 15px; height: 15px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translate(0,0); }
    50% { transform: rotate(45deg) translate(-6px, -6px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

/* --- SHOWCASE SECTION --- */
.showcase-section {
    padding: var(--section-padding) 0;
    background-color: var(--primary-teal);
    position: relative;
}

.event-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.event-date {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-family: var(--font-serif);
    margin: 1rem 0;
}

.event-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--primary-navy);
}

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

.about-img-container {
    position: relative;
}

.about-img-container::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 1px solid var(--accent-gold);
    z-index: 0;
}

.about-img {
    position: relative;
    z-index: 1;
    filter: sepia(20%) contrast(110%);
    width: 100%;
    box-shadow: var(--box-shadow);
}

/* --- EXPERIENCE SECTION (Parallax) --- */
.experience-section {
    padding: var(--section-padding) 0;
    background-color: var(--primary-teal);
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0,61,77,0.9), rgba(0,61,77,0.9)), url('../assets/images/the-beat-boutique-wedding-band-dublin.webp');
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.4;
}

.experience-content {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(10, 25, 47, 0.6);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid var(--accent-gold);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(10, 25, 47, 0.8);
}

.feature-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
}

/* --- FAQ --- */
.faq-section {
    background-color: var(--primary-teal);
}

.faq-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.faq-subtitle {
    margin: 0;
    opacity: 0.85;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.2rem 1.5rem;
    box-shadow: var(--box-shadow);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-cream);
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: var(--font-sans);
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-left: 1rem;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0 0 1.25rem;
    opacity: 0.8;
}

.faq-item a {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* --- LOCATION PAGES --- */
.location-hero {
    background-color: var(--primary-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 190px 0 120px;
    text-align: center;
    color: var(--text-cream);
}

.location-hero.photo-1 {
    background-image: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.85)), url('../assets/images/the_beat_boutique_wedding_band_dublin_ireland.webp');
}

.location-hero.photo-2 {
    background-image: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.85)), url('../assets/images/the_beat_boutique_wedding_band_dublin_ireland.webp');
}

.location-hero.photo-3 {
    background-image: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.85)), url('../assets/images/the-beat-boutique-wedding-band-dublin.webp');
}

.location-hero-content {
    max-width: 860px;
    margin: 0 auto;
}

.location-hero h1 {
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    margin-bottom: 1rem;
}

.location-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.location-lead {
    max-width: 720px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.location-hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.location-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto;
    max-width: 720px;
}

.location-hero-stats div {
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.location-hero-stats span {
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.location-section {
    padding: var(--section-padding) 0;
    background-color: var(--primary-teal);
}

.location-section-alt {
    background-color: #071525;
}

.location-intro {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.location-intro.light .section-title,
.location-intro.light p {
    color: var(--text-cream);
}

.location-intro p {
    opacity: 0.85;
    margin: 0;
}

.location-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.location-card {
    background: rgba(10, 25, 47, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.location-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.location-card p {
    margin: 0;
    opacity: 0.8;
}

.location-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.location-panel {
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    gap: 1.25rem;
}

.location-panel h4 {
    margin: 0 0 0.35rem;
    color: var(--accent-gold);
}

.location-panel p {
    margin: 0;
    opacity: 0.85;
}

.location-venue-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.location-venue-card {
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: var(--box-shadow);
    color: var(--text-cream);
}

.location-venue-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.location-venue-card p {
    margin: 0;
    opacity: 0.85;
}

.location-venue-card.is-linked {
    text-decoration: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-venue-card.is-linked span {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.location-venue-card.is-linked:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.location-highlight {
    margin-top: 3rem;
    background: rgba(10, 25, 47, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
}

.location-highlight h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.location-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.location-highlight-grid h4 {
    margin: 0 0 0.5rem;
    color: var(--accent-gold);
}

.location-highlight-grid p {
    margin: 0;
    opacity: 0.85;
}

.location-reviews {
    background: var(--primary-navy);
    color: var(--text-cream);
}

.location-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.location-review-card {
    background: rgba(0, 61, 77, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.location-review-card p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
}

.location-review-card span {
    display: block;
    margin-top: 1rem;
    opacity: 0.75;
}

.location-stars {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.location-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.location-pill {
    background: rgba(10, 25, 47, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-cream);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.location-cta {
    background: var(--primary-teal);
}

.location-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.location-cta h2 {
    margin-bottom: 0.75rem;
}

.location-cta p {
    margin: 0;
    opacity: 0.85;
}

/* --- START HERE SECTION --- */
.start-here-section {
    background-color: var(--primary-teal);
}

.start-here-content {
    position: relative;
    z-index: 1;
}

.start-here-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.start-here-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.start-here-title {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
}

.start-here-subtitle {
    opacity: 0.85;
    margin: 0;
}

.start-here-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.start-here-card {
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.2rem;
    border-top: 2px solid var(--accent-gold);
    text-align: left;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: var(--box-shadow);
}

.start-here-card::after {
    display: none;
}

.start-here-card:hover {
    transform: translateY(-8px);
    background: rgba(10, 25, 47, 0.85);
}

.start-here-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.start-here-index {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    color: var(--accent-gold);
    opacity: 0.28;
    line-height: 1;
}

.start-here-tag {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold);
}

.start-here-card h3 {
    margin: 0 0 0.75rem;
    color: var(--text-cream);
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

.start-here-card p {
    opacity: 0.75;
    margin: 0 0 1.75rem;
}

.start-here-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.start-here-link::after {
    content: '→';
    font-size: 0.95rem;
    opacity: 0.75;
}

/* --- MEDIA SECTION --- */
.media-section {
    padding: var(--section-padding) 0;
    background-color: #050c18; /* Darker Navy */
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--box-shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

/* --- REVIEWS --- */
.reviews-section {
    padding: var(--section-padding) 0;
    background-color: var(--primary-teal);
    position: relative;
    overflow: hidden;
}

/* Carousel Layout */
.review-carousel {
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
    cursor: grab;
}

.review-carousel::-webkit-scrollbar { 
    display: none; /* Hide scrollbar Chrome/Safari */
}

.review-container { 
    display: flex; 
    gap: 30px; 
    width: max-content;
    padding: 10px;
}

/* Individual Review Card */
.review-item {
    flex: 0 0 350px;
    background: rgba(10, 25, 47, 0.4); /* Dark glass effect */
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.review-item:hover { 
    transform: translateY(-10px); 
    border-color: var(--accent-gold);
    background: rgba(10, 25, 47, 0.6);
}

/* Review Content Styling */
.review-header { 
    display: flex; 
    align-items: center; 
    margin-bottom: 20px; 
    justify-content: space-between;
}

.google-logo-placeholder { 
    width: 24px; 
    height: 24px; 
    object-fit: contain;
}

.review-rating { 
    color: var(--accent-gold); 
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-content {
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.8;
    flex-grow: 1;
    color: var(--text-cream);
    opacity: 0.9;
}

.review-author { 
    font-weight: 600; 
    color: var(--accent-gold); 
    font-size: 0.75rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
}

/* Navigation Buttons (Arrows) */
.review-nav-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-navy);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
}

.review-nav-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.review-nav-prev { left: -25px; }
.review-nav-next { right: -25px; }

/* "See All Reviews" Button */
.review-link {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.review-link:hover { 
    background-color: var(--accent-gold); 
    color: var(--primary-navy);
}

@media (max-width: 1200px) {
    .review-nav-prev { left: 10px; }
    .review-nav-next { right: 10px; }
    .review-item { flex: 0 0 300px; }
}

/* --- CONTACT --- */
.contact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    position: relative;
}

/* --- QUICK AVAILABILITY --- */
.quick-availability-section {
    padding: 80px 0;
    background: #f7f3ea;
    color: var(--primary-navy);
}

.quick-availability-card {
    background: #ffffff;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-radius: 4px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.quick-availability-content h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.quick-availability-content p {
    color: #3b4a5a;
    opacity: 0.9;
}

.quick-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold-dark);
    margin-bottom: 1rem;
}

.quick-trust {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: #2f3f50;
    font-weight: 500;
}

.quick-trust li::before {
    content: '✓';
    color: var(--accent-gold-dark);
    margin-right: 8px;
}

.quick-availability-form .form-group {
    margin-bottom: 1.5rem;
}

.quick-availability-form .btn-submit {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.quick-availability-form .btn-submit:hover {
    background: var(--accent-gold-dim);
}

.quick-availability-note {
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #5f6b76;
}

@media (max-width: 900px) {
    .quick-availability-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .quick-availability-section {
        padding: 60px 0;
    }

    .quick-availability-card {
        padding: 32px;
    }

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

.contact-container {
    background: #fff;
    display: flex;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border-radius: 4px; /* Subtle premium corner */
    overflow: hidden;
}

.contact-info-box {
    flex: 0.8;
    background: var(--primary-navy);
    padding: 5rem 4rem;
    color: var(--text-cream);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info-box::before {
    /* Pattern overlay effect could go here */
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 60%);
    pointer-events: none;
}

.contact-form-box {
    flex: 1.2;
    background: #ffffff;
    padding: 5rem 4rem;
    color: var(--primary-navy);
}

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

.form-group { margin-bottom: 2rem; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-navy);
    opacity: 0.8;
}

.form-input {
    width: 100%;
    padding: 15px 0; /* Underline style */
    border: none;
    border-bottom: 2px solid rgba(10, 25, 47, 0.1);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--primary-navy);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-input::placeholder {
    color: rgba(10, 25, 47, 0.3);
    font-weight: 300;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
    background: linear-gradient(to bottom, transparent 95%, rgba(212, 175, 55, 0.05) 100%);
}

/* Submit Button - Statement Piece */
.btn-submit {
    display: block;
    width: 100%;
    padding: 20px;
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    border: none;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* --- FOOTER --- */
.footer {
    background: linear-gradient(180deg, #0a1b33 0%, #071525 100%);
    padding: 6rem 0 2rem;
    color: var(--text-cream);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary-navy), var(--accent-gold), var(--primary-navy));
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; /* 4 Columns */
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

/* Footer Brand Column */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-lg {
    width: 140px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo-lg:hover { opacity: 1; }

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer Navigation & Contact */
.footer-nav, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-nav li, .footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-nav a:hover {
    color: var(--accent-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

.footer-contact a, .footer-contact span {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-contact a:hover {
    color: var(--text-cream);
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: var(--accent-gold);
}

/* Footer Map */
.footer-map-container {
    width: 100%;
    height: 250px; /* More compact but visible */
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%) hue-rotate(180deg);
    transition: filter 0.5s ease;
}

.footer-map-container:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.footer-map-container:hover iframe {
    filter: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-map-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand { padding-right: 0; }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-map-col {
        grid-column: span 1;
    }
}


/* --- ANIMATIONS --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .about-grid, .contact-container, .features-grid, .start-here-grid {
        grid-template-columns: 1fr;
    }
    .location-hero-stats {
        grid-template-columns: 1fr;
    }
    .location-grid-3,
    .location-split,
    .location-venue-grid,
    .location-highlight-grid,
    .location-review-grid {
        grid-template-columns: 1fr;
    }
    .location-cta .container {
        flex-direction: column;
        text-align: center;
    }
    .contact-section { background: var(--primary-navy); }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: var(--primary-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        box-shadow: -10px 0 20px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .menu-toggle { display: block; z-index: 1001; }
    .menu-toggle.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}

@media (max-width: 768px) {
    .hero-content {
        top: 55%;
    }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Hidden by default */
    left: 0;
    width: 100%;
    background-color: var(--primary-navy);
    border-top: 1px solid var(--accent-gold);
    color: var(--text-cream);
    padding: 20px;
    z-index: 2000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.cookie-banner.visible {
    bottom: 0;
}

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

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border: none;
    padding: 10px 25px;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background-color: #fff;
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--text-cream);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 25px;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
    border-color: var(--text-cream);
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}


.location-quicklinks {
    background: rgba(10, 25, 47, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.location-quicklinks .container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding: 0.9rem 0;
    font-size: 0.9rem;
}

.location-quicklinks a {
    color: var(--text-cream);
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.location-quicklinks a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

@media (max-width: 700px) {
    .location-quicklinks .container {
        gap: 0.9rem;
        font-size: 0.85rem;
    }
}


.internal-links {
    padding: var(--section-padding) 0;
    background: rgba(10, 25, 47, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.internal-links-header {
    max-width: 640px;
}

.internal-links-header p {
    opacity: 0.8;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.internal-link-card {
    display: block;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--text-cream);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.internal-link-card h3 {
    margin: 0 0 0.75rem;
}

.internal-link-card span {
    font-size: 0.9rem;
    opacity: 0.75;
}

.internal-link-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
    .internal-links-grid {
        grid-template-columns: 1fr;
    }
}
