/* -------------------------------------------------------------------------- */
/* DESIGN SYSTEM & CUSTOM PROPERTIES                                          */
/* -------------------------------------------------------------------------- */
:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #111114;
    --bg-card: #18181d;
    --bg-card-hover: #202027;
    
    --text-primary: #f3f3f5;
    --text-secondary: #9ea0a7;
    --text-muted: #676970;
    
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3cf5a;
    --accent-gold-glow: rgba(212, 175, 55, 0.25);
    
    --border-color: rgba(212, 175, 55, 0.15);
    --border-color-muted: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(212, 175, 55, 0.4);
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --max-width: 1200px;
}

/* Theme accent override (for Florya Ristorante & Pizzeria) */
body.theme-florya {
    --accent-gold: #e27d60; /* Rose Gold / Copper accent */
    --accent-gold-hover: #e8a87c;
    --accent-gold-glow: rgba(226, 125, 96, 0.25);
    --border-color: rgba(226, 125, 96, 0.15);
    --border-hover: rgba(226, 125, 96, 0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border: 2px solid var(--bg-primary);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* -------------------------------------------------------------------------- */
/* TYPOGRAPHY & UTILITIES                                                     */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-secondary);
}

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

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.bg-alt {
    background-color: var(--bg-secondary);
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

/* Section Labels and Headers */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.section-header {
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-gold-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(24, 24, 29, 0.6);
    border: 1px solid var(--border-color-muted);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* -------------------------------------------------------------------------- */
/* MAIN STICKY HEADER                                                         */
/* -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 12, 0.75);
    border-bottom: 1px solid var(--border-color-muted);
    backdrop-filter: blur(16px);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(10, 10, 12, 0.95);
    height: 70px;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

/* Nav Menu */
.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--text-primary);
}

/* -------------------------------------------------------------------------- */
/* MULTI-RESTAURANT SWITCHER                                                  */
/* -------------------------------------------------------------------------- */
.restaurant-switcher-container {
    display: flex;
    align-items: center;
}

.restaurant-switcher {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color-muted);
    padding: 4px;
    border-radius: 50px;
    min-width: 280px;
}

.switcher-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--accent-gold);
    border-radius: 50px;
    z-index: 1;
    transition: var(--transition-smooth);
}

.switcher-btn {
    flex: 1;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    padding: 8px 16px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    transition: color 0.3s ease;
}

.switcher-btn.active {
    color: #000;
}

.icon-btn {
    font-size: 0.85rem;
}

/* Position Slider on Florya Active */
body.theme-florya .switcher-slider {
    transform: translateX(100%);
    background: var(--accent-gold);
}

/* -------------------------------------------------------------------------- */
/* MOBILE MENU TOGGLE                                                         */
/* -------------------------------------------------------------------------- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border-color-muted);
        padding: 120px 40px 40px 40px;
        z-index: 999;
        transition: var(--transition-smooth);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        right: 0;
        box-shadow: -20px 0 40px rgba(0,0,0,0.5);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* -------------------------------------------------------------------------- */
/* DYNAMIC TRANSITION STYLING                                                 */
/* -------------------------------------------------------------------------- */
.switching-transition {
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.switching-transition.switching-out {
    opacity: 0;
    transform: translateY(8px) scale(0.995);
}

/* -------------------------------------------------------------------------- */
/* PAGE SECTION STRUCTURING                                                   */
/* -------------------------------------------------------------------------- */
.page-section {
    display: none;
    padding-top: var(--header-height);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-section.active {
    display: block;
}

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

/* -------------------------------------------------------------------------- */
/* HOME PAGE ELEMENTS                                                         */
/* -------------------------------------------------------------------------- */

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 24px;
    transition: background-image 0.6s ease-in-out;
}

/* Hero Slideshow styles */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: none;
}

.hero-slideshow.active {
    display: block;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.slideshow-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slideshow-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent-gold-glow);
}

.hero-content {
    max-width: 650px;
    margin-left: max(0px, calc((100vw - var(--max-width)) / 2 - 24px));
    z-index: 2;
    animation: heroTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

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

.hero-badge {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--text-secondary);
}

.scroll-icon {
    font-size: 0.9rem;
    color: var(--accent-gold);
    animation: bounceDown 1.8s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Intro Section */
.intro-section {
    padding: 100px 24px;
}

.intro-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color-muted);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.feature-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.intro-img-block {
    display: flex;
    justify-content: center;
}

.glass-frame {
    position: relative;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color-muted);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(8px);
}

.intro-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: calc(var(--border-radius-md) - 8px);
}

.accent-badge-overlay {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--bg-card);
    border: 1px solid var(--accent-gold);
    padding: 20px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    z-index: 10;
}

.badge-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

@media (max-width: 768px) {
    .accent-badge-overlay {
        bottom: 16px;
        left: 16px;
    }
}

/* Specialties Section */
.specialties-section {
    padding: 100px 24px;
}

.specialty-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color-muted);
    transition: var(--transition-smooth);
}

.specialty-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: 0 20px 30px rgba(0,0,0,0.3);
}

.specialty-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.specialty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.specialty-info {
    padding: 24px;
}

.specialty-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.specialty-name {
    font-size: 1.25rem;
    font-family: var(--font-serif);
}

.specialty-price {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.specialty-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-sans);
}

.tag-chef {
    background-color: var(--accent-gold);
    color: #000;
}

.tag-veg {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.tag-gf {
    background-color: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

/* Quick Booking Banner */
.quick-booking-banner {
    padding: 60px 24px 100px 24px;
}

.booking-cta-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}

@media (min-width: 992px) {
    .booking-cta-card {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.booking-cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.booking-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* -------------------------------------------------------------------------- */
/* GENERAL PAGE HEADERS                                                       */
/* -------------------------------------------------------------------------- */
.page-header {
    width: 100%;
    padding: 100px 24px 80px 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid var(--border-color-muted);
}

.header-text {
    z-index: 2;
    position: relative;
}

.page-title {
    font-size: 2.75rem;
    margin-bottom: 12px;
    color: #fff;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* -------------------------------------------------------------------------- */
/* MENU PAGE SPECIFICS                                                        */
/* -------------------------------------------------------------------------- */
.menu-container {
    padding: 60px 24px 100px 24px;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.menu-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color-muted);
    color: var(--text-secondary);
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.menu-tab-btn:hover {
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

.menu-tab-btn.active {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px var(--accent-gold-glow);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

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

.menu-item-row {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color-muted);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.menu-item-row:hover {
    border-color: var(--border-color);
    transform: translateY(-2px);
}

.menu-item-img-wrapper {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.menu-item-name {
    font-size: 1.15rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.menu-item-price {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--accent-gold);
    margin-left: 12px;
    flex-shrink: 0;
}

.menu-item-ingredients {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Legend block */
.menu-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 20px;
    margin-top: 40px;
}

.legend-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* -------------------------------------------------------------------------- */
/* MAP PAGE SPECIFICS                                                         */
/* -------------------------------------------------------------------------- */
.map-section {
    padding: 80px 24px 100px 24px;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.3rem;
    color: var(--accent-gold);
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color-muted);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.info-block h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-block p {
    font-size: 0.95rem;
}

.map-actions {
    margin-top: 12px;
}

.map-iframe-container {
    height: 450px;
    padding: 12px;
    overflow: hidden;
}

.map-iframe-container iframe {
    border-radius: calc(var(--border-radius-md) - 12px);
}

/* -------------------------------------------------------------------------- */
/* CONTACTS PAGE SPECIFICS                                                    */
/* -------------------------------------------------------------------------- */
.contacts-container {
    padding: 80px 24px 100px 24px;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-intro-desc {
    margin-bottom: 32px;
}

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

.info-link-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color-muted);
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-smooth);
}

.info-link-item:hover {
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: block;
}

.info-value {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.social-links-block h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color-muted);
    background: rgba(255, 255, 255, 0.01);
    font-size: 1.05rem;
}

.social-icons a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Booking Form styling */
.booking-form-card {
    padding: 40px;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color-muted);
    padding-bottom: 16px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color-muted);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.4);
}

.readonly-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: var(--border-color-muted) !important;
    color: var(--accent-gold) !important;
    font-weight: 600;
    cursor: default;
}

/* Form Validation & Feedback states */
.form-feedback {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-feedback.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.form-feedback.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------------------- */
/* MAIN BRAND FOOTER                                                          */
/* -------------------------------------------------------------------------- */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color-muted);
    padding: 80px 24px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color-muted);
}

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

.footer-about h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links h4, 
.footer-locations h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul, 
.footer-locations ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-switch-btn {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color-muted);
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-smooth);
}

.footer-switch-btn:hover {
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

.footer-switch-btn.active {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.04);
    color: var(--text-primary);
}

/* Footer bottom */
.footer-bottom {
    padding: 30px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-flex {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
