/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Utility ── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E86A5E;
    background: #FFF0EE;
    padding: 0.4em 1em;
    border-radius: 100px;
}

.section-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #2D2D2D;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #5A5A5A;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-coral {
    background: #E86A5E;
    color: #fff;
    border-color: #E86A5E;
}

.btn-coral:hover {
    background: #D4554A;
    border-color: #D4554A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 106, 94, 0.35);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ── Inputs ── */
.input {
    background: #FEFCFA;
    border: 1.5px solid #E5E5E5;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #2D2D2D;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.input:focus {
    border-color: #E86A5E;
    box-shadow: 0 0 0 4px rgba(232, 106, 94, 0.1);
}

.input::placeholder {
    color: #A0A0A0;
}

/* ── Navigation ── */
.nav {
    background: rgba(254, 252, 250, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 106, 94, 0.1);
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A4A4A;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E86A5E;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: #E86A5E;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D2D2D;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #E86A5E;
}

/* ── Hero ── */
.hero {
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #E86A5E 0%,
        #D4554A 25%,
        #C04038 50%,
        #2D2D2D 75%,
        #1A1A1A 100%
    );
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ── Features ── */
.feature-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* ── Menu ── */
.menu-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #F5F0EB;
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ── About ── */
.about-img-main {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-float {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ── Gallery ── */
.gallery-item {
    aspect-ratio: 3 / 2;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(6) {
    aspect-ratio: 3 / 2.5;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* ── Visit ── */
/* ── CTA ── */
.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(232, 106, 94, 0.85) 0%,
        rgba(192, 64, 56, 0.9) 50%,
        rgba(45, 45, 45, 0.95) 100%
    );
}

/* ── Footer ── */
.footer {
    background: #2D2D2D;
}

/* ── Scroll Reveal ── */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
    .hero-scroll {
        animation: none;
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .about-img-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -2rem;
        margin-left: 1rem;
        width: 40%;
    }

    .about-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 1rem;
        display: inline-block;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }
}
