* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #9ff7e5;
    padding: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

.hero-box {
    background-color: #f5e7d3;
    margin: 20px;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

.hero-title {
    font-family: "Georgia", cursive;
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: "Georgia", cursive;
    font-size: 20px;
    margin-bottom: 20px;
}

.catering-info {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.catering-info h2 {
    font-family: "Georgia", cursive;
    font-size: 28px;
    color: #1f6b22;
    margin-bottom: 15px;
    text-align: center;
}

.catering-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.package {
    background-color: #f5e7d3;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}

.package h3 {
    font-family: "Georgia", cursive;
    font-size: 22px;
    color: #1f6b22;
    margin-bottom: 10px;
}

.package ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.package li {
    margin-bottom: 8px;
}

.package .price {
    font-size: 20px;
    font-weight: bold;
    color: #1f6b22;
    margin-top: 15px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    flex: 1;
}

.gallery img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
}

footer {
    background-color: #1f6b22;
    color: white;
    margin-top: auto;
    text-align: center;
    padding: 20px 0;
}

.footer-nav {
    margin-bottom: 10px;
}

.footer-nav a {
    color: white;
    margin: 0 10px;
    font-weight: bold;
    text-decoration: none;
}

footer p {
    font-size: 14px;
}