* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F8F3EE;
    color: #3A2A24;
    line-height: 1.6;
}

/* container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

/* header */
header {
    background: #7A1E2C;
    padding: 20px 0;
}

.logo {
    font-family: 'Parisienne', cursive;
    color: white;
    font-size: 2.5rem;
}

.nav {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    list-style: none;
}

.nav a {
    color: white;
    text-decoration: none;
}

.nav a:hover {
    opacity: 0.7;
}

/* sections */
.section {
    padding: 70px 0;
}

/* hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: #EEDDD3;
}

.hero h2 {
    font-family: 'Parisienne', cursive;
    font-size: 3rem;
    color: #7A1E2C;
}

/* buttons */
.btn {
    display: inline-block;
    background: #7A1E2C;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 15px;
}

/* images */
img {
    width: 100%;
    border-radius: 12px;
}

/* footer */
footer {
    background: #7A1E2C;
    color: white;
    text-align: center;
    padding: 20px;
}

/* responsive */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero h2 {
        font-size: 2.2rem;
    }
}
.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}
.side-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}
.about-grid {
    align-items: center;
}

.image-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}
.image-row {
    display: flex;
    gap: 20px;
}

.image-row img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}
.section p {
    margin-bottom: 15px;
    line-height: 1.6;
}
.pdf-btn {
    display: inline-block;
    background: #7A1E2C;
    color: #F8F3EE;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pdf-btn:hover {
    background: #5e1622;
    transform: translateY(-2px);
}
.section img {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 15px;
}
.socials a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 15px;
    background: #7A1E2C;
    color: #F8F3EE;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.socials a:hover {
    background: #5e1622;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.menu-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.menu-item h3 {
    font-family: 'Parisienne', cursive;
    color: #7A1E2C;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}