:root {
    --gold: #FFC107;
    --brick: #B71C1C;
    --brand-red: #B71C1C;
    --brick-glow: rgba(183, 28, 28, 0.4);
    --glass-bg: #FFFFFF;
    --glass-border: rgba(0, 0, 0, 0.08);
    --text-main: #1C1C1C;
    --text-muted: #4A4A4A;
    --bg-main: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-main); }
body { font-family: 'Outfit', sans-serif; line-height: 1.6; color: var(--text-main); overflow-x: hidden; background: var(--bg-main); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 12px; }

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 4px 15px rgba(255,193,7,0.3); }
    50% { box-shadow: 0 4px 25px rgba(255,193,7,0.6); }
    100% { box-shadow: 0 4px 15px rgba(255,193,7,0.3); }
}

/* -------- NAVBAR -------- */
#navbar { position: fixed; top: 0; width: 100%; z-index: 1000; transition: 0.4s; background: var(--brick); }
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

.nav-container {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 1rem 20px;
}
.brand { justify-self: center; display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 50px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.3s; }
.brand:hover .brand-logo { transform: scale(1.05); }

.nav-links { display: flex; gap: 2rem; align-items: center; justify-self: start; }
.nav-links a { font-weight: 600; font-size: 1rem; color: #FFFFFF; transition: 0.3s; position: relative; text-decoration: none; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: -6px; left: 0; background-color: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-right { justify-self: end; display: flex; align-items: center; }
.nav-cta {
    background: var(--gold); color: #000;
    padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    animation: pulse-glow 3s infinite;
    text-decoration: none; transition: 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); background: #ffca28; }

.mobile-menu-btn { display: none; color: #FFF; font-size: 1.5rem; cursor: pointer; background: none; border: none; justify-self: end; grid-column: 3; }

/* -------- GLOBAL TICKER -------- */
.global-ticker {
    background: var(--gold); color: #000; font-weight: 800; font-size: 1rem;
    padding: 10px 0; width: 100%; text-transform: uppercase; letter-spacing: 1px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}
.global-ticker marquee { vertical-align: middle; width: 100%; }

/* -------- HERO -------- */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 10rem 0 6rem; position: relative; overflow: hidden;
    background: var(--brick); color: #FFFFFF;
}
.hero-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,193,7,0.15) 0%, transparent 50%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 4rem; text-align: left; }
.hero-text { max-width: 600px; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; font-size: 0.95rem; background: rgba(0,0,0,0.15); padding: 8px 16px; border-radius: 50px; }

.hero h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; color: #FFFFFF; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; max-width: 500px; }

/* -------- BUTTONS -------- */
.btn-group { display: flex; gap: 1.5rem; justify-content: flex-start; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 1rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: #000; box-shadow: 0 4px 15px rgba(255,193,7,0.3); }
.btn-primary:hover { background: #FFCA28; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,193,7,0.5); }
.btn-outline { background: rgba(255,255,255,0.1); color: #FFFFFF; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: #FFFFFF; color: var(--brick); transform: translateY(-3px); }

.hero-visual { position: relative; perspective: 1000px; }
.hero-image-wrapper {
    position: relative; border-radius: 24px; padding: 12px;
    background: linear-gradient(135deg, rgba(255,193,7,0.3), rgba(183,28,28,0.1));
    animation: float 8s ease-in-out infinite;
}
.hero-image { border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); width: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* -------- STATS -------- */
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-top: 3rem; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.2); }
.stat-item h4 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); margin-bottom: 0.5rem; }
.stat-item p { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* -------- GALLERY CAROUSEL -------- */
.photo-carousel {
    display: flex; gap: 1.5rem; overflow-x: auto; padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory; width: 100%;
}
.photo-carousel::-webkit-scrollbar { height: 8px; }
.photo-carousel::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.photo-carousel::-webkit-scrollbar-thumb { background: var(--brick); border-radius: 10px; }
.photo-carousel img {
    height: 350px; width: auto; object-fit: cover; border-radius: 16px;
    scroll-snap-align: center; box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s; flex-shrink: 0;
}
.photo-carousel img:hover { transform: scale(1.03); }

/* -------- SECTIONS -------- */
.section { padding: 6rem 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--text-main); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* -------- MENU GRID -------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.menu-card { padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; background: #FFFFFF; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: all 0.4s; border: 1px solid var(--glass-border); }
.menu-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: rgba(183,28,28,0.3); }
.menu-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(183,28,28,0.1); color: var(--brick); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.menu-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text-main); }
.menu-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; flex-grow: 1; }
.menu-price { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--brick); font-size: 1.5rem; }

/* -------- REVIEWS -------- */
.reviews-wrapper { display: flex; gap: 2rem; overflow-x: auto; padding: 1rem 0 3rem; scroll-snap-type: x mandatory; }
.reviews-wrapper::-webkit-scrollbar { height: 6px; }
.reviews-wrapper::-webkit-scrollbar-thumb { background: rgba(183,28,28,0.3); border-radius: 10px; }
.review-card {
    min-width: 400px; scroll-snap-align: center;
    padding: 3rem; border-radius: 20px;
    background: #FFFFFF; border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.stars { color: var(--gold); margin-bottom: 1.2rem; font-size: 1.2rem; display: flex; gap: 5px; }
.review-text { font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; color: var(--text-main); font-style: italic; }
.client-info { display: flex; align-items: center; gap: 15px; }
.client-avatar {
    width: 55px; height: 55px; border-radius: 50%;
    background: var(--brick); display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 1.3rem;
}
.client-details h4 { color: var(--text-main); font-weight: 700; }
.client-details span { color: var(--text-muted); font-size: 0.9rem; }

/* -------- LOCATION & FOOTER -------- */
.location-section { position: relative; padding: 6rem 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-card { padding: 3rem; border-radius: 24px; position: relative; }
.info-row { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 2rem; }
.info-icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(183,28,28,0.1); color: var(--brick); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; }
.info-text h4 { color: var(--text-main); margin-bottom: 0.3rem; font-size: 1.1rem; }
.info-text p { color: var(--text-muted); font-size: 0.95rem; }
.map-container { border-radius: 24px; overflow: hidden; height: 450px; border: 1px solid var(--glass-border); }
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3); }

footer { background: #1a1a1a; padding: 4rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); color: #fff; }
.footer-logo { margin-bottom: 1rem; }
.footer-links-wrapper { display: flex; justify-content: center; gap: 4rem; margin: 2.5rem 0; flex-wrap: wrap; }
.footer-links-group { display: flex; flex-direction: column; align-items: center; }
.footer-links-group h5 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 1px; }
.copyright { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-top: 1rem; }

.socials { display: flex; justify-content: center; gap: 1rem; }
.socials a { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; font-size: 1.3rem; }
.socials a:hover { transform: translateY(-5px) scale(1.1); }
.social-fb { background: #1877F2; color: #fff; }
.social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }
.social-wa { background: #25D366; color: #fff; }
.social-del { background: #00CCBC; color: #fff; }
.social-je { background: #FF8000; color: #fff; }
.social-glovo { background: #FFC244; color: #1C120D; }

/* -------- MOBILE OVERLAY MENU -------- */
.mobile-nav-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--brick); z-index: 2000;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-overlay.active { right: 0; }
.close-menu-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #FFF; font-size: 2.5rem; cursor: pointer; }
.mobile-nav-links { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 2rem; }
.mobile-nav-links a { color: #FFF; font-size: 1.8rem; font-weight: 700; text-decoration: none; font-family: 'Playfair Display', serif; }

/* -------- MOBILE ONLY / DESKTOP ONLY -------- */
.mobile-only { display: none !important; }

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
    .nav-container { grid-template-columns: 1fr auto 1fr; padding: 0.8rem 15px; }
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; align-items: center; justify-self: start; }

    .mobile-call {
        background: var(--gold); color: #000; font-weight: 800; font-size: 0.85rem;
        text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none;
        display: flex; align-items: center; gap: 6px;
        padding: 8px 14px; border-radius: 50px;
        box-shadow: 0 4px 15px rgba(255,193,7,0.4);
        animation: pulse-glow 2s infinite;
    }
    .mobile-call i { color: #000; font-size: 1rem; }

    .brand { grid-column: 2; }
    .brand-logo { content: url('img/logo_mobile.webp'); height: 55px; width: auto; object-fit: contain; }

    .mobile-menu-btn { display: block; color: #FFF; justify-self: end; grid-column: 3; }

    .hero { padding: 9rem 0 4rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-text { max-width: 100%; }
    .hero p { margin: 0 auto 2rem; }
    .hero-visual { max-width: 350px; margin: 0 auto; }
    .hero h1 { font-size: 3rem; }
    .eyebrow { margin: 0 auto 1.5rem; }
    .btn-group { flex-direction: column; width: 100%; align-items: center; justify-content: center; }
    .btn { width: 100%; max-width: 300px; }

    .stats-bar { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .stat-item h4 { font-size: 1.6rem; }

    .location-grid { grid-template-columns: 1fr; }
    .review-card { min-width: 300px; padding: 2rem; }
    .photo-carousel img { height: 250px; }
    .section-header h2 { font-size: 2.2rem; }
    .footer-links-wrapper { gap: 2rem; }
}
