body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: #111111;
    background: #f5efe6;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

/* ----- TYPOGRAPHY ----- */

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    color: #f68189;
}

/* ----- NAVIGATION ----- */

header {
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5dbd0;
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #5c3d2e;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #111111;
    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #b37b75;
}

/* ----- HERO SECTION ----- */

.hero {
    background: url('../images/Gemini_Generated_Image_30keg630keg630ke.png') center/cover no-repeat;
    color: white;
    padding: 140px 0;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #b37b75;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 1rem;
    transition: 0.3s;
}

.btn:hover {
    background: #8f5b55;
}

/* ----- INTRO SECTION ----- */

.intro {
    text-align: center;
}

.intro p {
    max-width: 750px;
    margin: auto;
}

/* ----- FEATURE CARDS ----- */

.features {
    display: flex;
    justify-content: center;   
    gap: 2rem;
    margin: 3rem auto;
    width: 100%;
    max-width: 1100px;         
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    
}

.feature-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    border: 1px solid #f3d6d8;
}

/* ----- MENU PAGE ----- */

.menu-intro {
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid #f3d6d8;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
    transform: translateY(-6px);
}

.price {
    color: #5c3d2e;
    font-weight: bold;
}



.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.rounded-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* ----- FOOTER ----- */

footer {
    text-align: center;
    padding: 2rem 0;
    color: #5c3d2e;
    font-size: 0.9rem;
    margin-top: 3rem;
}

.citation {
    font-size: 0.8rem;
    opacity: 0.8;
}



@media (max-width: 850px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

.homepage-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #f3d6d8;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
