:root {
    --primary-orange: #FF6B35;
    --primary-red: #D32F2F;
    --dark-charcoal: #1a1a1a;
    --light-cream: #FFF8F0;
    --accent-gold: #FFB74D;
    --white: #FFFFFF;
    --off-white: #f9f9f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --header-height: 90px;
    --border-radius: 16px;
    --container-width: 1400px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    --gradient-gold: linear-gradient(135deg, var(--accent-gold), #FF9800);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background: var(--light-cream);
    color: var(--dark-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { 
    text-align: center; 
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo img {
    height: 100px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.loading-progress {
    width: 250px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: var(--dark-charcoal);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 650px;
    margin: 30px auto 0;
    line-height: 1.6;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px;
}

.header-logo {
    height: 60px;
    transition: var(--transition);
}

.header-logo:hover {
    transform: scale(1.05);
}

.desktop-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.desktop-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: var(--transition);
    border-radius: 2px;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--primary-orange);
}

.header-actions {
    display: flex;
    align-items: center;
}

.glf-button {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 8px 16px !important;
    border-radius: var(--border-radius) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border: none !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    display: inline-block !important;
    text-align: center;
    font-family: var(--font-body) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glf-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    transition: all 0.6s;
    z-index: -1;
}

.glf-button:hover::before {
    left: 0;
}

.glf-button:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4) !important;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-orange);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.5), rgba(26, 26, 26, 0.7));
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
    padding: 25px;
}

.hero-logo {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
    animation: pulseLogo 3s ease-in-out infinite;
}

@keyframes pulseLogo {
    0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.3)); }
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 0 20px;
    max-width: 850px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.8rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    margin-bottom: 50px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.hero-scroll-btn {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero-scroll-btn:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-25px) translateX(-50%);
    }
    60% {
        transform: translateY(-12px) translateX(-50%);
    }
}

.features {
    background: var(--white);
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    text-align: center;
}

.feature-item {
    padding: 50px 35px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--off-white);
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.6s ease;
}

.feature-item:hover::before {
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    color: var(--dark-charcoal);
    transform: scale(1.15) rotate(5deg);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--dark-charcoal);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-title {
    color: var(--dark-charcoal);
}

.feature-text {
    color: #666;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.feature-item:hover .feature-text {
    color: #333; 
}

.about {
    background: linear-gradient(135deg, var(--light-cream) 50%, var(--off-white) 50%);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23FF6B35" fill-opacity="0.05" d="M32.8,-38.2C46.3,-27.8,64.4,-22.9,73.2,-9.8C82,3.3,81.6,24.6,71.1,38.2C60.6,51.8,40.1,57.7,21.5,61.8C2.9,65.9,-13.8,68.2,-26.2,62.5C-38.6,56.8,-46.7,43.1,-55.4,28.2C-64.1,13.3,-73.4,-2.8,-70.9,-16.9C-68.4,-31,-54.1,-43.1,-39.2,-53.1C-24.3,-63.1,-8.9,-71.1,2.3,-73.8C13.5,-76.5,26.9,-73.9,32.8,-38.2Z" transform="translate(100 100)"/></svg>');
    background-repeat: no-repeat;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #444;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-3deg);
    transition: var(--transition);
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-container:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-image-container {
        max-height: 400px;
        transform: none;
    }
}
.menu-preview {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* BARRA DECORATIVA CENTRADA - ESTILO CORREGIDO */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.menu-card-img-container {
    overflow: hidden;
    height: 250px;
    position: relative;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-bottom: 12px;
    text-align: center;
}

.menu-card-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex-grow: 1;
}

.menu-card-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    text-align: center;
    margin-top: auto;
    font-family: var(--font-heading);
}

.menu-cta {
    margin-top: 40px;
}

.glf-button-menu {
    padding: 14px 28px !important;
    font-size: 1rem !important;
}

@media (max-width: 768px) {
    .menu-preview {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .menu-card-img-container {
        height: 220px;
    }
    
    .menu-card-body {
        padding: 20px;
    }
    
    .menu-card-title {
        font-size: 1.4rem;
    }
    
    .menu-card-price {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .menu-preview {
        padding: 50px 0;
    }
    
    .menu-card-img-container {
        height: 200px;
    }
    
    .menu-card-body {
        padding: 15px;
    }
    
    .section-title::after {
        width: 60px;
    }
}


.cta-parallax {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)), url('../img/cta-bg.jpg') center/cover fixed;
    padding: 150px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.cta-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="url(%23gradient)" opacity="0.1"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-text {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.gallery-preview {
    background: var(--white);
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-button {
    display: inline-block;
    background: var(--dark-charcoal);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 30px;
    font-family: var(--font-body);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-button:hover {
    background: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
    .gallery-preview {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-preview {
        padding: 50px 0;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
}


.map-section {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 900px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .map-section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .map-container {
        height: 350px;
        border-radius: 12px;
    }
    
    .section-title::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 50px 0;
    }
    
    .map-container {
        height: 300px;
    }
}



.footer {
    background: linear-gradient(to bottom, #151515, #1a1a1a);
    color: var(--white);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-logo {
    height: 150px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.5;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-contact {
    margin-top: 15px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact .contact-item i {
    font-size: 1.1rem;
    color: var(--primary-orange);
    min-width: 20px;
}

.footer-contact .contact-item p {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.footer-hours {
    margin-top: 10px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-row:last-child {
    border-bottom: none;
}

.day {
    color: #ccc;
    font-weight: 500;
    font-size: 0.95rem;
}

.time {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border-radius: 12px;
    align-self: start;
}

.footer-cta h4 {
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    .footer-hours {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
}

.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/gallery-hero.jpg') center/cover no-repeat;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
    margin-top: var(--header-height);
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.gallery-subtitle {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.full-gallery {
    padding: 100px 0;
    background: var(--light-cream);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item-full {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item-full:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.gallery-item-full img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-full:hover img {
    transform: scale(1.1);
}

.gallery-item-full figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item-full:hover figcaption {
    transform: translateY(0);
}

.gallery-cta {
    background: var(--dark-charcoal);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.gallery-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-button-secondary {
    display: inline-block;
    padding: 8px 24px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-orange);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-body);
    align-items: center;
}

.cta-button-secondary:hover {
    background: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 250px;
    }
    
    .hero-content {
        margin-top: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    .footer-hours {
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
    
.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
}

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-grid, .gallery-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 450px;
    height: 100vh;
    background: var(--dark-charcoal);
    transition: right 0.4s ease-in-out;
    padding: 110px 40px 50px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    box-shadow: -5px 0 35px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    position: absolute;
    top: 35px;
    right: 35px;
}

.mobile-menu-close {
    font-size: 2.2rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--primary-orange);
    transform: rotate(90deg);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-orange);
    padding-left: 15px;
}