:root {
    --spice-red: #a61e1e;
    --spice-amber: #d97706;
    --spice-green: #0f766e;
    --spice-cream: #f8f1df;
    --spice-ink: #1f1711;
    --spice-brown: #3f2a20;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(248, 241, 223, 0.95), rgba(246, 234, 207, 0.98));
}

.texture-overlay {
    position: relative;
}

.texture-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03));
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-image-mask {
    clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%);
}

.section-pattern {
    background-image: linear-gradient(135deg, rgba(166, 30, 30, 0.08), transparent 45%), url('../images/pattern-2.jpeg');
    background-size: cover;
    background-position: center;
}

.menu-card,
.testimonial-card,
.detail-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card {
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.package-classic {
    background: linear-gradient(180deg, rgba(166, 30, 30, 0.08), rgba(255, 255, 255, 0.92));
}

.package-gold {
    background: linear-gradient(180deg, rgba(217, 119, 6, 0.12), rgba(255, 247, 225, 0.95));
}

.package-platinum {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.12), rgba(240, 252, 250, 0.95));
}

.image-card {
    position: relative;
    overflow: hidden;
}

.image-card img {
    transition: transform 220ms ease;
}

.image-card:hover img {
    transform: scale(1.04);
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(31, 23, 17, 0.45));
}

.modal-backdrop {
    background: rgba(17, 12, 9, 0.75);
    backdrop-filter: blur(12px);
}

.menu-card:hover,
.testimonial-card:hover,
.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(63, 42, 32, 0.16);
}

.spice-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(166, 30, 30, 0.35), rgba(217, 119, 6, 0.6), transparent);
}

.ring-pattern {
    position: relative;
    overflow: hidden;
}

.ring-pattern::before {
    content: '';
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 9rem;
    height: 9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
}

.ring-pattern::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: -2rem;
    width: 7rem;
    height: 7rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .menu-card,
    .testimonial-card,
    .detail-card {
        transition: none;
    }

    .image-card img {
        transition: none;
    }
}