/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ========== BACKGROUND BLOBS ========== */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    pointer-events: none;
}
.blob-plum {
    width: 600px; height: 600px;
    background: #7B2D8E;
    top: -150px; left: -150px;
}
.blob-amber {
    width: 500px; height: 500px;
    background: #F5C518;
    bottom: -100px; right: -100px;
    opacity: .3;
}
.blob-light {
    width: 350px; height: 350px;
    background: #f5e0f7;
    top: 40%; right: 20%;
    opacity: .5;
}

/* ========== BADGE ========== */
.badge {
    display: inline-block;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7B2D8E;
    background: #f5e0f7;
    padding: .4em 1em;
    border-radius: 999px;
}
.badge-light {
    color: #ebc0ee;
    background: rgba(255,255,255,.12);
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 800;
    font-size: .95rem;
    padding: .85rem 1.75rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
    background: #7B2D8E;
    color: #fff;
    box-shadow: 0 4px 14px rgba(123,45,142,.35);
}
.btn-primary:hover {
    background: #622472;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123,45,142,.45);
}
.btn-secondary {
    background: #fff;
    color: #7B2D8E;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    border: 2px solid #ebc0ee;
}
.btn-secondary:hover {
    background: #faf0fb;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
}

/* ========== FLOATING CARDS ========== */
.float-card {
    position: absolute;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}
.float-1 { top: 10%; left: -10%; animation-delay: 0s; }
.float-2 { bottom: 15%; right: -8%; animation-delay: 1.5s; }
.float-3 { animation-delay: 2.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* ========== HERO IMAGE ========== */
.hero-img-wrapper {
    box-shadow: 0 25px 60px rgba(62,23,71,.25);
    border: 4px solid rgba(255,255,255,.2);
}

/* ========== HIGHLIGHT CARDS ========== */
.highlight-card {
    transition: transform .25s, box-shadow .25s;
}
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(123,45,142,.12);
}

/* ========== MENU CARDS ========== */
.menu-card {
    transition: transform .3s, box-shadow .3s;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(123,45,142,.15);
}
.menu-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.07);
}
.menu-card-tag {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(123,45,142,.88);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3em .75em;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* ========== ABOUT IMAGE ========== */
.about-img-wrapper {
    box-shadow: 0 25px 60px rgba(62,23,71,.2);
}

/* ========== GALLERY ========== */
.gallery-img {
    cursor: default;
    transition: transform .3s;
}
.gallery-img:hover {
    transform: scale(1.02);
}
.gallery-img img {
    transition: transform .5s;
}
.gallery-img:hover img {
    transform: scale(1.08);
}

/* ========== INPUTS ========== */
.input-field {
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid #ebc0ee;
    border-radius: 14px;
    background: #fff;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: .95rem;
    color: #3e1747;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.input-field:focus {
    border-color: #7B2D8E;
    box-shadow: 0 0 0 3px rgba(123,45,142,.15);
}
.input-field::placeholder { color: #dd95e0; }

/* ========== SCROLL REVEAL (progressive enhancement) ========== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Fallback: always visible if JS is disabled or prefers-reduced-motion */
@media not all and (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .float-card { animation: none; }
    .gallery-img img, .menu-card-img img { transition: none; }
}

/* ========== MOBILE MENU ========== */
#mobile-menu {
    animation: slideDown .25s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
    .float-1 { left: 4%; top: 5%; }
    .float-2 { right: 4%; bottom: 8%; }
    .float-3 { margin-left: 0; }
    h1 { font-size: 2.6rem !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    h1 { font-size: 3.2rem !important; }
}
