/* --- CORE VARIABLES --- */
:root {
    --baci-orange: #f15a24;
    --baci-dark: #2d2d2d;
    --baci-gold: #FACC15;
    --baci-red: #DC2626;
    --baci-red-hover: #B91C1C;
    --text-white: #ffffff;
    --text-white-dim: rgba(255, 255, 255, 0.9);
    --whatsapp: #25D366;
    --font-sans: 'Noto Sans', sans-serif;
    --font-serif: 'Noto Serif', serif;
    --navbar-bg: rgba(45, 45, 45, 0.95);
    --hero-height: 80vh;
    --tripadvisor-green: #00AA6C;
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--baci-orange);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Defensive H1 sizing to avoid UA-dependent sizing deprecation */
h1 {
    font-size: clamp(1.5rem, 6vw, 5.25rem);
    line-height: 1.1;
    margin: 0 0 0.5rem;
}

/* Accessibility: Skip-to-content link (visible on focus) */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    background: var(--text-white);
    color: var(--baci-dark);
    padding: 0.5rem 1rem;
    z-index: 2000;
}

/* --- HEADER, HERO & NAVIGATION --- */

/* Main header styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    backdrop-filter: none;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

/* Logo and tagline container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-img {
    width: 64px;
    height: auto;
}

.slogan {
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.1;
    background-color: var(--baci-orange);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

/* Hide tagline by default */
.tagline-box {
    display: none;
}

/* Show tagline on home page */
.home-page .tagline-box {
    display: block;
}

/* Hero section styles */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive height control */
@media (max-width: 767px) {
    .hero-image {
        height: 60vh;
        min-height: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-image {
        height: 70vh;
        min-height: 400px;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        height: 80vh;
        max-height: 800px;
    }
}

/* Hero text overlay */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 5.625rem;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 300;
}

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-text h2 {
        font-size: 1.2rem;
    }
}

/* Legacy Hero Styles (kept for reference or other elements) */
.hero {
    position: relative;
    width: 100%;
    height: var(--hero-height);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
    overflow: hidden;
}

.hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-stripe img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero h1, .hero h2 {
    font-size: 6rem;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.1;
    max-width: 90%;
    z-index: 1;
}



/* Navigation styles */
.main-nav {
    background-color: transparent;
    padding: 0;
}

/* Burger Menu Button (Hidden on Desktop) */
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: #DC2626;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    display: flex;
}
.nav-list li {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-link {
    color: var(--text-white);
    background-color: var(--baci-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    text-align: center;
    width: 120px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-icons a i {
    font-size: 2.5rem;
    color: var(--baci-orange);
    transition: color 0.3s;
}

.social-icons a:hover i {
    color: var(--text-white);
}

.nav-link.active, .nav-link:hover {
    background-color: var(--text-white);
    color: var(--baci-orange);
}

@media (max-width: 768px) {
    .main-header {
        flex-wrap: nowrap;
        padding: 0.5rem 1rem;
    }

    .burger-menu {
        display: block;
    }

    .nav-list {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--baci-dark);
        padding: 1rem;
    }

    .nav-list.active {
        display: flex;
    }

    .logo-img {
        width: 45px;
    }

    .slogan {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .social-icons a i {
        font-size: 1.5rem;
    }

    /* Mobile Typography Reset: Regular font for most text */
    body, p, a, span, div, li, .nav-link, .item-name, .item-price, .btn, .widget-title, .rating-number, .ta-rating-val, .font-bold, .slogan {
        font-weight: 400 !important;
    }

    /* Keep Headings Bold */
    h1, h2, h3, h4, h5, h6, .page-intro h1, .page-intro h2, .privacy-policy-h1, .privacy-policy-h2, .menu-header-title h2, strong, b {
        font-weight: 700 !important;
    }

    .page-intro h1,
    .privacy-policy-h1,
    .page-intro h2 {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .page-intro p {
        text-align: justify;
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .item-name {
        font-size: 0.85rem;
    }

    .menu-list {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Enforce 10px padding on mobile for main containers */
    main[style], .reviews-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}


.coming-soon-badge {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: inline-block;
    max-width: 28rem;
}
.badge-label {
    background-color: var(--text-white);
    color: var(--baci-orange);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.badge-desc { font-size: 0.875rem; opacity: 0.9; }

/* --- BUTTONS --- */
.action-area { width: 100%; margin-bottom: 2rem; display: flex; justify-content: center; }
.btn-directions {
    background-color: var(--baci-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.2s;
    width: 100%;
    max-width: 200px;
}
.btn-directions:hover {
    background-color: var(--baci-red-hover);
    transform: scale(1.05);
}
.btn-directions i { font-size: 0.875rem; margin-right: 0.5rem; }

.page-intro {
    text-align: center;
    margin: 2rem 0;
    color: var(--text-white);
}

.page-intro h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-intro h2 {
    padding: 10px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.page-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary {
    background-color: var(--baci-orange);
    color: white;
}

.btn-primary:hover {
    background-color: #d84c1c;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--baci-dark);
    transform: scale(1.05);
}

/* --- WHATSAPP FLOATING --- */
.fab-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: var(--whatsapp);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
    font-size: 2.25rem;
    border: 4px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
    animation: pulse-slow 3s infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); animation: none; }

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* --- BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 6.5rem;
    right: 1.5rem;
    background-color: var(--baci-dark);
    color: var(--text-white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 40;
    border: 2px solid var(--baci-orange);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--baci-orange); transform: translateY(-3px); }

/* --- MENU ACCORDION --- */
.menu-section {
    width: 100%;
    background-color: rgba(45, 45, 45, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.menu-header-title {
    padding: 1rem;
    background-color: rgba(45, 45, 45, 0.4);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menu-header-title h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}
.accordion-btn:hover { background-color: rgba(255,255,255,0.05); }
.accordion-btn:last-child { border-bottom: none; }

.cat-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}
.cat-icon {
    color: var(--baci-gold);
    font-size: 1.5rem;
    margin-right: 0.75rem;
    width: 30px;
    text-align: center;
}
.chevron { font-size: 0.75rem; opacity: 0.7; transition: transform 0.3s; }

/* Content Panel */
.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background-color: rgba(0,0,0,0.2);
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
.accordion-content.active { opacity: 1; }

.menu-list { padding: 1.25rem 1.5rem; list-style: none; }
.menu-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.menu-item:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
    .menu-item { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 1rem; }
    .menu-price-mobile { display: none; }
    .menu-price-desktop { display: block; }
    .btn-directions { padding: 0.75rem 2.5rem; font-size: 0.85rem; max-width: 240px; }
}
@media (max-width: 767px) {
    .menu-price-desktop { display: none; }
    .menu-price-mobile { float: right; }
}

.item-name { font-weight: 700; color: rgba(255,255,255,0.95); }
.item-desc { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); font-style: italic; margin-top: 0.25rem; line-height: 1.4; }
.item-price { color: var(--baci-gold); font-weight: 600; white-space: nowrap; }

/* --- FOOTER LINK SEPARATOR --- */
.link-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.75rem;
    font-weight: 300;
}

/* Mobile responsiveness for the links */
@media (max-width: 768px) {
    .footer-address p {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    
    .link-separator {
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-address p {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .link-separator {
        display: none; /* Hide separator on very small screens */
    }
}

/* --- FOOTER --- */
.footer {
    text-align: center;
    margin-top: auto;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    width: 100%;
    padding-bottom: 2rem;
}
.social-links { font-size: 3rem; margin-bottom: 1rem; }
.social-links a { margin: 0 0.75rem; transition: color 0.2s; }
.social-links a:hover { color: white; }

.footer-info p { margin-bottom: 0.25rem; }
.footer-address {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    margin: 0 2rem;
    margin-top: 1rem;
}
.footer-restaurant-name {
    color: var(--baci-gold); /* CHANGED: from --baci-red to --baci-gold */
    font-weight: 700;
    font-size: 1.25em;
}
/* FIX: Text-only underline for links */
.phone-link, .directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

/* Only underline the text part, not the icon */
.phone-link span, .directions-link span {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 2px;
}

.phone-link:hover, .directions-link:hover {
    color: white;
}

.phone-link:hover span, .directions-link:hover span {
    text-decoration-color: white;
}

.footer-copyright {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
}
.footer-links {
    margin-top: 0.5rem;
}
.footer-links a {
    text-decoration: underline;
}

/* --- REVIEW WIDGETS --- */
.reviews-widgets-section {
    padding: 40px 20px;
    background-color: transparent;
    font-family: var(--font-sans);
}
.reviews-widgets-section h2 {
    text-align: center;
    color: var(--text-white);
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}
.widgets-grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.widget-card {
    background-color: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(4px);
    border: 2px solid #c44011;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 160px;
    box-sizing: border-box;
    text-decoration: none;
    flex: 1 1 300px;
    max-width: 300px;
}
.widget-card:hover {
    transform: translateY(-4px);
    border-color: var(--baci-orange);
    box-shadow: 0 8px 20px rgba(241, 90, 36, 0.2);
}
.widget-top-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}
.widget-title { font-size: 1.25rem; font-weight: 600; margin: 0 0 5px 0; color: var(--text-white); letter-spacing: 0.5px; font-family: var(--font-serif); }
.widget-subtitle { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 10px; font-weight: 400; margin-top: 0; font-family: var(--font-sans); }
.widget-content-row { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 10px; width: 100%; }
.rating-number { font-size: 1.125rem; font-weight: 700; margin-left: 8px; font-family: var(--font-serif); }
.widget-link {
    font-size: 0.875rem;
    color: var(--baci-orange);
    text-decoration: underline;
    text-decoration-color: rgba(241, 90, 36, 0.5);
    transition: all 0.2s;
    margin-top: auto;
    padding-top: 15px;
    display: inline-block;
    font-family: var(--font-sans);
}
.widget-link:hover { color: var(--baci-gold); text-decoration-color: var(--baci-gold); }
.google-rating-text { color: var(--baci-gold); }
.google-stars { display: flex; gap: 2px; }
.google-star-icon { width: 18px; height: 18px; fill: var(--baci-gold); }
.google-logo-svg { width: 42px; height: 42px; }
.rg-rating-text { color: var(--baci-red); }
.rg-stars { display: flex; gap: 2px; }
.rg-star-icon { width: 16px; height: 16px; fill: var(--baci-red); }
.rg-logo-svg { width: 45px; height: 45px; fill: none; stroke: var(--baci-red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tripadvisor-badge { text-decoration: none; color: inherit; }
.ta-logo-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white; 
    border-radius: 50%;
    padding: 2px; 
    border: 2px solid var(--baci-dark);
}
.ta-logo { width: 44px; height: 44px; filter: invert(46%) sepia(78%) saturate(3685%) hue-rotate(133deg) brightness(93%) contrast(101%); }
.star-rating-text { color: var(--tripadvisor-green); font-size: 18px; letter-spacing: 1px; line-height: 1; font-family: var(--font-serif); }
.ta-rating-val { color: var(--tripadvisor-green); font-weight: 700; font-size: 16px; margin-left: 5px; font-family: var(--font-serif); }

.rating-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.rating-line .rating-number, .rating-line .ta-rating-val {
    margin-left: 0;
}

@media (max-width: 768px) {
    .reviews-widgets-section { padding: 30px 10px; }
    .widgets-grid-container { gap: 20px; }
    .widget-card { 
        max-width: 100%; 
        flex: 1 1 100%; 
        padding: 10px;
        min-height: auto;
    }
    .widget-top-content { margin-bottom: 5px; }
    .widget-subtitle { margin-bottom: 5px; }
    .widget-content-row { margin-bottom: 5px; }
    .widget-link { padding-top: 5px; }
}
@media (max-width: 480px) {
    .widget-content-row { flex-direction: column; gap: 10px; }
    .rating-number { margin-left: 0; }
}

/* --- REAL TESTIMONIALS --- */
.reviews-container { max-width: 672px; margin: 0 auto; padding: 0 1rem; }
.review-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: left;
    color: var(--baci-dark);
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; }
.review-header h3 { font-size: 1rem; font-weight: 700; color: var(--baci-dark); }
.review-header .stars { color: var(--baci-gold); letter-spacing: 2px; }
.review-text { text-align: justify; line-height: 1.6; font-style: italic; color: #4a4a4a; }
/* Utilities */
.font-bold { font-weight: 700; }
.italic { font-style: italic; }

/* --- CONTACT FORM --- */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background-color: rgba(45, 45, 45, 0.4);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-white);
}
.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--baci-orange);
    background-color: rgba(0, 0, 0, 0.4);
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    width: 100%;
    cursor: pointer;
    margin-top: 0.5rem;
}

/* Features Section Styling */
.features-section {
  max-width: 672px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--baci-orange);
}

.features-section h3 {
  color: var(--baci-gold);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.features-list li {
  color: var(--text-white);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.features-list li:before {
  content: "✓";
  color: var(--baci-orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .features-list {
    grid-template-columns: 1fr;
  }
  .features-section {
    margin: 1.5rem auto;
    padding: 10px;
  }
}

/* --- PRIVACY POLICY --- */
.privacy-policy-ol {
    padding-left: 2rem;
}

.privacy-policy-ul {
    padding-left: 2rem;
    list-style-type: disc;
}

.privacy-policy-h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* --- IMAGE STRIPE --- */
.image-stripe {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 10px;
}

.image-stripe picture {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.image-stripe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.image-stripe img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .image-stripe {
        flex-direction: column;
    }
}

/* --- IMAGE MODAL --- */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 90vh;
    object-fit: contain;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform:scale(0.1)}
    to {transform:scale(1)}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--baci-orange);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 95%;
    }
    .close-modal {
        top: 10px;
        right: 20px;
    }
}

/* --- MENU HIGHLIGHTS --- */
.menu-highlights {
    margin-top: 1.5rem;
    color: var(--baci-gold);
    font-weight: 600;
    line-height: 1.8;
    padding: 10px;
    list-style: none;
    text-align: center;
}

.menu-highlights li {
    display: inline-block;
}

.menu-highlights li::before {
    content: "•";
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .menu-highlights {
        display: inline-block;
        text-align: left;
        padding-left: 2rem;
    }
    .menu-highlights li {
        display: list-item;
        list-style-type: disc;
        margin-bottom: 0.5rem;
    }
    .menu-highlights li::before {
        content: none;
    }
}