*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
}

/* ── Hero Gradient ── */
.hero-gradient {
    background: linear-gradient(145deg, #8a4128 0%, #C2704E 30%, #e87642 55%, #e0b04a 80%, #f4dfa8 100%);
}

/* ── Navigation ── */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(61, 34, 23, 0.08);
}

.nav-logo-text {
    transition: color 0.4s ease;
}

#navbar.scrolled .nav-logo-text {
    color: #3D2217;
}

.nav-link {
    position: relative;
}

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

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

#navbar:not(.scrolled) .nav-link {
    color: rgba(61, 34, 23, 0.7);
}

/* ── Mobile Menu ── */
.mobile-link {
    transition: transform 0.3s ease;
}

.mobile-link:hover {
    transform: scale(1.05);
}

/* ── Hero Animations ── */
.hero-badge {
    animation: heroFadeDown 0.8s ease forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.hero-title {
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.hero-ctas {
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.55s;
    opacity: 0;
    transform: translateY(30px);
}

.hero-scroll {
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes heroFadeDown {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Hero Buttons ── */
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #C2704E;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 60px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.35s ease;
    text-decoration: none;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.2);
    background: #fefdf8;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary-hero:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 60px;
    transition: all 0.35s ease;
    text-decoration: none;
}

.btn-secondary-hero:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

/* ── Scroll Dot ── */
.scroll-dot {
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.4; }
}

/* ── Floating Shapes ── */
.hero-float-1 { animation: float1 6s ease-in-out infinite; }
.hero-float-2 { animation: float2 5s ease-in-out infinite; }
.hero-float-3 { animation: float3 7s ease-in-out infinite; }
.hero-float-4 { animation: float1 8s ease-in-out infinite reverse; }

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -20px) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 15px) scale(1.1); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 10px) scale(0.95); }
}

/* ── Section Tags ── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #C2704E;
    background: rgba(194, 112, 78, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

/* ── Section Headings ── */
.section-heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #3D2217;
    line-height: 1.2;
}

/* ── Body Text ── */
.body-text {
    color: #6B5744;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 600;
}

/* ── Divider ── */
.divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8c9a0, transparent);
    border-radius: 2px;
}

/* ── About Image ── */
.about-img-wrapper {
    box-shadow: 0 25px 60px rgba(61, 34, 23, 0.15);
}

.about-img {
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.03);
}

/* ── Stats ── */
.stat-item {
    text-align: left;
}

.stat-label {
    color: #6B5744;
}

/* ── Menu Card ── */
.menu-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(228, 201, 160, 0.4);
}

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

/* ── Gallery ── */
.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 34, 23, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-img {
    transition: transform 0.6s ease;
}

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

/* ── Visit Cards ── */
.visit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(61, 34, 23, 0.1);
}

/* ── Form Inputs ── */
.input-field {
    border: 2px solid #f0e0cc;
    border-radius: 14px;
    padding: 14px 18px;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3D2217;
    background: #fefdf8;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
}

.input-field::placeholder {
    color: #b89a7e;
}

.input-field:focus {
    border-color: #C2704E;
    box-shadow: 0 0 0 4px rgba(194, 112, 78, 0.1);
}

/* ── Submit Button ── */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #C2704E, #e87642);
    color: white;
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(194, 112, 78, 0.35);
    transition: all 0.35s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(194, 112, 78, 0.45);
}

.btn-submit-arrow {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-submit:hover .btn-submit-arrow {
    transform: translate(3px, -3px);
}

/* ── Reveal Animations ── */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-float-1, .hero-float-2, .hero-float-3, .hero-float-4 {
        display: none;
    }
}

@media (min-width: 769px) {
    .about-floating-card {
        animation: floatCard 4s ease-in-out infinite;
    }
}

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