* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    background: #f7f1e8;
    color: #5a1f2d;
}

/* HEADER */

header {
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f1e8;
}

.logo {
    font-size: 30px;
    font-weight: bold;
}

nav a {
    text-decoration: none;
    color: #5a1f2d;
    margin-left: 24px;
    font-size: 15px;
}

/* PACKAGES */

.packages-section {
    padding: 65px 8%;
}

.title-box {
    text-align: center;
    margin-bottom: 45px;
}

.title-box h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.title-box p {
    font-size: 16px;
    color: #6f4c4f;
}

.packages-container {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.package-card {
    background: white;
    border: 1px solid #e1cfc6;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(90,31,45,0.08);
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-6px);
}

.package-card h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.package-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #7a4a52;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #9b5e68;
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.package-card li {
    font-size: 15px;
    margin: 10px 0;
    color: #4f3b3b;
}

.btn {
    display: inline-block;
    background: #5a1f2d;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
}

.hall-only {
    grid-column: 1 / span 2;
    max-width: 480px;
    margin: auto;
}



/* RESPONSIVE */

@media (max-width: 850px) {
    header {
        flex-direction: column;
        padding: 22px;
        gap: 14px;
    }

    nav a {
        margin: 0 8px;
        font-size: 14px;
    }

    .packages-container {
        grid-template-columns: 1fr;
    }

    .hall-only {
        grid-column: auto;
        max-width: 100%;
    }

    .title-box h1 {
        font-size: 32px;
    }
}

.welcome {
    margin-left: 25px;
    color: #5a1f2d;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
}