/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    padding: 20px;
}

.site-title {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Navigation styles */
.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.current {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main content styles */
.main-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

/* Featured dishes styles */
.dish-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

.dish-content {
    padding: 20px;
}

.dish-content h2 {
    color: #1e3c72;
    margin-bottom: 5px;
}

.dish-content h3 {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

/* Sidebar styles */
.sidebar {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.popular-recipes,
.contact-details {
    margin-bottom: 30px;
}

.popular-recipes h2,
.contact-details h2 {
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.popular-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popular-links a {
    color: #2a5298;
    text-decoration: none;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.popular-links a:hover {
    background-color: #f0f4f8;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer styles */
.footer {
    text-align: center;
    padding: 20px;
    background: #1e3c72;
    color: white;
    margin-top: 40px;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .dish-image {
        height: 200px;
    }
}