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

body {
    font-family: Arial, sans-serif;
    background-color: #fdf8f3;
    color: #2d2d2d;
    line-height: 1.6;
}

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

/* header */
header {
    background-color: #6b1e1e;
    color: white;
    padding: 20px 0;
}

header h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

nav {
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1rem;
}

nav a:hover {
    color: #ffd9b3;
}

/* hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #6b1e1e;
}

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

/* button */
.btn {
    display: inline-block;
    background-color: #6b1e1e;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #8c2b2b;
}

/* ifno box */
.info-section {
    display: flex;
    gap: 20px;
    padding: 50px 0;
    flex-wrap: wrap;
}

.box {
    background-color: white;
    flex: 1;
    min-width: 250px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.box h2 {
    margin-bottom: 10px;
    color: #6b1e1e;
}

/* about */
.about-preview {
    padding-bottom: 50px;
}

.about-text {
    background-color: #fff;
    padding: 30px;
    border-left: 6px solid #d4a373;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-text h2 {
    margin-bottom: 15px;
    color: #6b1e1e;
}

/* page selct */
.page-section {
    background-color: white;
    margin: 40px auto;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-section h1 {
    margin-bottom: 20px;
    color: #6b1e1e;
}

.page-section h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #a05a2c;
}

/* menu */
.menu-group {
    margin-bottom: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

/* contact */
.contact-box {
    background-color: #fff3e6;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

#message {
    margin-top: 15px;
    font-weight: bold;
    color: #6b1e1e;
}

/* footer */
footer {
    background-color: #6b1e1e;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* responsive */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }

    .hero-content {
        padding: 25px;
    }

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

    .menu-item {
        flex-direction: column;
        gap: 5px;
    }
}