/* ============================= */
/* RESET */
/* ============================= */

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

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f6f3ef;
    color: #2c1a14;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.4s ease;
    padding: 20px 0;
}

#navbar.scrolled {
    background: rgba(44, 26, 20, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #d4a373;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* ============================= */
/* HERO (HOME) */
/* ============================= */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('https://images.unsplash.com/photo-1555244162-803834f70033') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.hero-content {
    max-width: 700px;
    animation: fadeUp 1s ease forwards;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #d4a373;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    background: #b5835a;
    transform: translateY(-3px);
}

/* ============================= */
/* PAGE HERO VARIANTS */
/* ============================= */

.page-hero {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-about {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1528715471579-d1bcf0ba5e83') center/cover;
}

.hero-services {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836') center/cover;
}

.hero-menu {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1555244162-803834f70033') center/cover;
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about-section {
    padding: 120px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ============================= */
/* SERVICES */
/* ============================= */

.services {
    padding: 120px 0;
    background: #f6f3ef;
    text-align: center;
}

.grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ============================= */
/* MENU */
/* ============================= */

.menu-section {
    padding: 120px 0;
    background: white;
}

.menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.menu-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s ease;
}

.menu-card:hover img {
    transform: scale(1.1);
}

.menu-card h3 {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
    font-size: 1.4rem;
}

/* ============================= */
/* CTA */
/* ============================= */

.cta-section {
    padding: 90px 0;
    text-align: center;
    background: #f6f3ef;
}

.cta-section.dark {
    background: #2c1a14;
    color: white;
}

/* ============================= */
/* CONTACT */
/* ============================= */

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4a373;
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    background: #2c1a14;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* ============================= */
/* ANIMATIONS */
/* ============================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 768px) {

    nav {
        position: absolute;
        top: 80px;
        right: 5%;
        flex-direction: column;
        background: rgba(44,26,20,0.97);
        padding: 30px;
        border-radius: 12px;
        display: none;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

}
