:root {
    --emerald-950: #031911;
    --emerald-900: #06281c;
    --emerald-800: #0b3d2a;
    --gold-300: #f0d08a;
    --gold-400: #e8bf6b;
    --gold-500: #d9a441;
    --cream: #f6ecd7;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(240, 208, 138, 0.35);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.32);
    --shadow-strong: 0 30px 70px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--cream);
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at 12% 15%, rgba(228, 181, 86, 0.2), transparent 25%),
        radial-gradient(circle at 85% 25%, rgba(37, 120, 86, 0.26), transparent 32%),
        linear-gradient(165deg, var(--emerald-950), var(--emerald-900) 40%, #02120d 100%);
    min-height: 100vh;
    position: relative;
    opacity: 0;
    transition: opacity 650ms ease;
}

body.page-loaded {
    opacity: 1;
}

.pattern-overlay {
    position: fixed;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            30deg,
            rgba(240, 208, 138, 0.07) 0,
            rgba(240, 208, 138, 0.07) 1px,
            transparent 1px,
            transparent 21px
        ),
        repeating-linear-gradient(
            -30deg,
            rgba(240, 208, 138, 0.07) 0,
            rgba(240, 208, 138, 0.07) 1px,
            transparent 1px,
            transparent 21px
        );
    pointer-events: none;
    opacity: 0.4;
    z-index: -2;
}

#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 208, 138, 0.8), rgba(240, 208, 138, 0.05));
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    from {
        transform: translateY(10vh) scale(0.7);
        opacity: 0;
    }
    20% {
        opacity: 0.75;
    }
    to {
        transform: translateY(-110vh) scale(1.1);
        opacity: 0;
    }
}

#loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.8rem;
    background: linear-gradient(180deg, rgba(2, 18, 13, 0.98), rgba(3, 30, 21, 0.98));
    z-index: 9999;
    transition: opacity 450ms ease, visibility 450ms ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 76px;
    height: 76px;
    border: 3px solid rgba(240, 208, 138, 0.22);
    border-top-color: var(--gold-400);
    border-radius: 50%;
    animation: spin 1.1s linear infinite;
}

.loader-text {
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--gold-300);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.glass-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: 1.1rem;
}

.hero-card {
    padding: 2rem 1.2rem;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -45% 8% auto;
    height: 160px;
    background: radial-gradient(circle at center, rgba(240, 208, 138, 0.35), transparent 70%);
    filter: blur(18px);
}

.logo-frame {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(240, 208, 138, 0.3), rgba(6, 40, 28, 0.65));
    border: 2px solid rgba(240, 208, 138, 0.6);
    box-shadow: 0 0 35px rgba(232, 191, 107, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.15);
}

.restaurant-logo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}

.brand-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-300);
    letter-spacing: 0.12em;
    text-shadow: 0 8px 30px rgba(217, 164, 65, 0.4);
}

.brand-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-weight: 500;
    color: #f8efda;
    letter-spacing: 0.08em;
}

.tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: var(--gold-300);
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.95rem 1rem;
    text-decoration: none;
    color: var(--cream);
    position: relative;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.action-btn:hover,
.action-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(240, 208, 138, 0.7);
}

.btn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.8rem;
    background: rgba(3, 25, 17, 0.65);
    display: grid;
    place-items: center;
    color: var(--gold-300);
    flex-shrink: 0;
}

.btn-icon.whatsapp {
    color: #25d366;
}

.btn-text {
    flex: 1;
    font-weight: 700;
    font-size: 1rem;
}

.btn-subtext {
    font-size: 0.75rem;
    color: rgba(246, 236, 215, 0.7);
    font-weight: 500;
}

.btn-arrow {
    color: rgba(246, 236, 215, 0.65);
}

.social-card {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--cream);
    gap: 0.45rem;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.social-card:hover,
.social-card:focus-visible {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.social-icon {
    font-size: 1.35rem;
}

.social-icon.facebook {
    color: #80a9ff;
}

.social-icon.instagram {
    color: #ff9bc9;
}

.social-icon.tiktok {
    color: #9cd6ff;
}

.social-icon.web {
    color: var(--gold-400);
}

.about-section {
    padding: 1.2rem;
}

.about-text {
    opacity: 0.92;
    line-height: 1.8;
    margin-top: 0.7rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    font-weight: 600;
}

.feature-card i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(240, 208, 138, 0.16);
    color: var(--gold-300);
}

.address-card {
    padding: 1.2rem;
}

.hours {
    color: var(--gold-300);
    font-weight: 600;
}

.mini-btn {
    display: inline-block;
    text-decoration: none;
    color: #061e15;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    padding: 0.52rem 0.95rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.86rem;
}

.map-card {
    padding: 0.6rem;
    overflow: hidden;
}

.map-card iframe {
    border-radius: 0.85rem;
}

.fab {
    position: fixed;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    z-index: 50;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.fab-left {
    left: 14px;
    background: linear-gradient(145deg, #d9a441, #9b6d1f);
}

.fab-right {
    right: 14px;
    background: linear-gradient(145deg, #25d366, #147a3a);
}

.pulse {
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.4);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(217, 164, 65, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 164, 65, 0);
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 550ms linear;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

footer {
    color: rgba(246, 236, 215, 0.72);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .hero-card {
        padding: 2.3rem 2rem;
    }

    .logo-frame {
        width: 175px;
        height: 175px;
    }

    .restaurant-logo {
        width: 150px;
        height: 150px;
    }

    .tagline {
        font-size: 1.02rem;
    }

    .fab {
        bottom: 24px;
        width: 58px;
        height: 58px;
    }

    .fab-left {
        left: 24px;
    }

    .fab-right {
        right: 24px;
    }
}
