/* ===== CAFE HOLA LOLA - PREMIUM STYLES ===== */
/* Header spacer to account for fixed header */
.header-spacer {
    height: 120px; /* Adjust based on your header height */
}

@media (max-width: 768px) {
    .header-spacer {
        height: 80px;
    }
}

/* Header wrapper for better structure */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
:root {
    --primary-dark: #1a1a1a;
    --primary-gold: #d4af37;
    --gold-hover: #b8941f;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #fafafa;
    --bg-section: #f7f7f7;
    --border-light: #e5e5e5;
}

/* Logo Section - Reduced Height */
.cafe-logo-section {
    padding: 30px 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.logo-wrapper {
    max-width: 250px;
    margin: 0 auto;
}

.cafe-logo {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    opacity: 0.8;
}

/* About Section - Premium Chess Layout */
.cafe-about {
    padding: 120px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
    min-height: 500px;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(10%);
    transition: filter 0.5s ease;
}

.image-wrapper:hover img {
    filter: grayscale(0%);
}

.image-accent {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid var(--primary-gold);
    opacity: 0.3;
    z-index: -1;
}

.content-column {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.content-inner {
    width: 100%;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.1;
}

.section-divider {
    width: 40px;
    height: 1px;
    background: var(--primary-gold);
    margin-bottom: 35px;
    opacity: 0.8;
}

.text-content {
    margin-bottom: 40px;
}

.text-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

.text-content strong {
    color: var(--primary-dark);
    font-weight: 500;
}

.features-row {
    display: flex;
    gap: 40px;
    padding-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-primary);
}

.feature-item i {
    font-size: 16px;
    color: var(--primary-gold);
    opacity: 0.8;
}

/* Menu Preview Section - Premium Cards */
.cafe-menu-preview {
    padding: 120px 0;
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.section-header .section-divider {
    margin: 0 auto 25px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

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

.menu-card {
    background: white;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
}

.card-icon i {
    font-size: 24px;
    color: var(--primary-gold);
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Gallery Section - Premium Grid */
.cafe-gallery {
    padding: 120px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
    background: #f5f5f5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

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

.gallery-overlay i {
    font-size: 20px;
    color: white;
    background: var(--primary-gold);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Contact Section - Premium Cards */
.cafe-contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.cafe-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.contact-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

.contact-card .card-icon i {
    font-size: 24px;
    color: var(--primary-gold);
}

.contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: white;
}

.contact-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.contact-card a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: rotate(360deg);
}

.reservation-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.reservation-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-gold);
}

.btn-reserve:hover {
    background: transparent;
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -60px;
    pointer-events: none;
}

.lightbox-nav button {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    color: white;
    font-size: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.lightbox-nav button:hover {
    background: var(--primary-gold);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .content-column {
        min-height: auto;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .features-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .reservation-cta h3 {
        font-size: 1.5rem;
    }
}
/* ENHANCED MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .header-spacer {
        height: 80px;
    }
    
    /* Logo Section Mobile */
    .cafe-logo-section {
        padding: 20px 0;
    }
    
    .logo-wrapper {
        max-width: 200px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    /* About Section Mobile - Image First */
    .cafe-about {
        padding: 60px 0;
    }
    
    .content-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .image-column {
        order: 1;
    }
    
    .content-column {
        order: 2;
        min-height: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-divider {
        margin: 0 auto 20px;
    }
    
    .text-content {
        text-align: center;
    }
    
    .text-content p {
        font-size: 14px;
    }
    
    .features-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    /* Menu Preview Mobile */
    .cafe-menu-preview {
        padding: 60px 0;
    }
    
    .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .menu-card {
        padding: 35px 25px;
        min-height: auto;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 13px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 11px;
        width: auto;
    }
    
    /* Gallery Mobile */
    .cafe-gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Contact Section Mobile */
    .cafe-contact {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .contact-card {
        padding: 35px 25px;
    }
    
    .contact-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 13px;
    }
    
    .reservation-cta h3 {
        font-size: 1.3rem;
        padding: 0 20px;
    }
    
    .btn-reserve {
        padding: 15px 30px;
        font-size: 11px;
    }
    
    /* Lightbox Mobile */
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-nav {
        padding: 0;
    }
    
    .lightbox-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-close {
        font-size: 30px;
        top: -35px;
    }
}

@media (max-width: 480px) {
    /* Logo Section */
    .logo-wrapper {
        max-width: 160px;
    }
    
    /* Typography */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-label {
        font-size: 10px;
    }
    
    /* Menu Cards */
    .menu-grid {
        padding: 0 10px;
    }
    
    .menu-card {
        padding: 30px 20px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-card {
        padding: 30px 20px;
    }
    
    .reservation-cta h3 {
        font-size: 1.2rem;
    }
    
    /* Social Links */
    .social-links {
        margin-top: 15px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}

/* Image accent hide on mobile */
@media (max-width: 768px) {
    .image-accent {
        display: none;
    }
}