:root {
    --dark-brown: #6B2E0E;
    --medium-brown: #8C3B13;
    --gold: #E6C07B;
    --cream: #F5EFE6;
    --beige: #ECE7E1;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--beige);
    color: var(--dark-brown);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 80px 0;
}

.center {
    text-align: center;
    margin-bottom: 50px;
}

/* ================= NAVBAR ================= */

.navbar {
    background: var(--dark-brown);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active state */
.nav-links a.active {
    color: var(--gold);
}

/* ================= HERO ================= */

.hero {
    height: 90vh;
    background: 
        linear-gradient(rgba(107,46,14,0.7), rgba(107,46,14,0.7)),
        url('../img/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
}

.hero-logo {
    margin-bottom: 5px;
    animation: fadeIn 1.5s ease;
}

.hero-logo img {
    height: 350px;
    width: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.hero p {
    margin-top: -20px;
    margin-bottom: 30px;
    letter-spacing: 3px;
    animation: fadeIn 2s ease;
}

/* ================= BUTTONS ================= */

.btn-primary,
.btn-outline {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Primary */
.btn-primary {
    background: var(--gold);
    color: var(--dark-brown);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Click animation */
.btn-primary:active,
.btn-outline:active {
    transform: scale(0.95);
}

/* ================= ABOUT ================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 15px;
}

/* ================= DARK SECTION ================= */

/* DARK SECTION */
.dark-section {
    background: var(--dark-brown);
    color: var(--cream);
}

/* ================= MENU ================= */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.menu-card {
    background: var(--cream);
    color: var(--dark-brown);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card h3 {
    margin: 15px 0;
}

/* ================= GALLERY SLIDER ================= */

.gallery-slider {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 40px;
}

.gallery-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;        /* Firefox */
}

.gallery-container::-webkit-scrollbar {
    display: none;                /* Chrome, Safari */
}

.gallery-item {
    min-width: 300px;
    height: 280px;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* BUTTON */

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 30px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 20;
    transition: 0.3s;
}

.nav-btn:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ================= TESTIMONIAL ================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--medium-brown);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* ================= CONTACT ================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-link i {
    font-size: 18px;
    color: var(--medium-brown);
    transition: 0.3s;
}

.contact-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-link:hover i {
    color: var(--gold);
}
/* MENU PAGE */
.menu-page {
    background: var(--beige);
}

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.pdf-card {
    background: var(--cream);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

.pdf-card:hover {
    transform: translateY(-8px);
}

.pdf-card h3 {
    margin-bottom: 20px;
}

.pdf-card iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    border: none;
    margin-bottom: 20px;
}
/* ================= FOOTER ================= */

.footer {
    background: var(--dark-brown);
    color: var(--cream);
    text-align: center;
    padding: 20px;
}

/* ================= ANIMATION ================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

/* ===== TABLET (≤1024px) ===== */
@media (max-width: 1024px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero-logo img {
        height: 260px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pdf-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}


/* ===== MOBILE LARGE (≤768px) ===== */
@media (max-width: 768px) {

    .section {
        padding: 60px 0;
    }

    .nav-links {
        display: none;
    }

    .hero {
        height: auto;
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-logo img {
        height: 180px;
    }

    .btn-primary,
    .btn-outline {
        display: block;
        margin: 10px auto;
        width: 80%;
        text-align: center;
    }

    .menu-grid,
    .gallery-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .pdf-card iframe {
        height: 350px;
    }
}


/* ===== MOBILE SMALL (≤480px) ===== */
@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-logo img {
        height: 150px;
    }

    .center {
        margin-bottom: 30px;
    }

    .pdf-card iframe {
        height: 300px;
    }

    .contact iframe {
        width: 100%;
        height: 200px;
    }
}


/* ===== EXTRA SMALL DEVICES (≤360px) ===== */
@media (max-width: 360px) {

    .hero h1 {
        font-size: 20px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero-logo img {
        height: 130px;
    }
}