/* --- Global Styles --- */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #fdfcfb;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-content {
    padding-top: 40px;
    padding-bottom: 40px;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #c0392b; /* A subtle red */
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.75rem;
    color: #333;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

li::before {
    content: '✓';
    color: #c0392b;
    position: absolute;
    left: 0;
    top: 0;
}

/* --- Header & Navigation --- */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    text-decoration: none;
    color: #333;
}

.navbar nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: #555;
    margin-left: 25px;
    font-size: 1rem;
    padding-bottom: 5px;
}

.navbar nav a.active,
.navbar nav a:hover {
    color: #c0392b;
    border-bottom: 2px solid #c0392b;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    height: 60vh; /* 60% of the viewport height */
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is key! */
    filter: brightness(0.6);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 0;
}

/* --- Menu Grid --- */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.menu-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- Contact Page --- */
.contact-section {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.contact-details {
    font-size: 1.25rem;
    margin: 20px 0;
}

.contact-image {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-top: 20px;
}

/* --- Catering Packages --- */
.catering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.catering-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.catering-card h3 {
    text-align: center;
    margin-top: 0;
}

.catering-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c0392b;
    text-align: center;
    margin: 10px 0;
}

.catering-card ul {
    flex-grow: 1; /* Makes all cards equal height */
}

/* --- Footer --- */
.footer {
    background-color: #333;
    color: #fdfcfb;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer p {
    margin: 5px 0;
    font-size: 1.1rem;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
    }
    
    .navbar nav {
        margin-top: 15px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .menu-grid,
    .gallery-grid,
    .catering-grid {
        grid-template-columns: 1fr;
    }
}
