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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #333;
    min-height: 100vh;
}

.header {
    background: linear-gradient(rgba(30, 60, 114, 0.95), rgba(42, 82, 152, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ffffff" opacity="0.1" width="100%" height="100%"/><circle fill="%23ffffff" opacity="0.05" cx="200" cy="150" r="80"/><circle fill="%23ffffff" opacity="0.03" cx="800" cy="400" r="120"/></svg>');
    background-size: cover;
    color: white;
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.header .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.header .island-story {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.chef-intro {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #d4af37;
}

.chef-intro h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.menu-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.menu-section h2 {
    color: #1e3c72;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.dish-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.dish-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    background: #fff;
}

.dish-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.dish-description {
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.dish-details {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.recipe-btn {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    margin: 1rem 0.5rem 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    text-decoration: none;
    display: inline-block;
}

.recipe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

.back-btn {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    margin: 1rem 0.5rem 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    text-decoration: none;
    display: inline-block;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

.footer {
    text-align: center;
    padding: 2rem;
    color: white;
    margin-top: 3rem;
}

.chef-tips {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #333;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Styles pour les pages de recettes */
.recipe-page {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.recipe-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d4af37;
}

.recipe-title {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.recipe-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.ingredients, .instructions {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
}

.ingredients h3, .instructions h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
}

.ingredients ul {
    list-style: none;
}

.ingredients li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.ingredients li:before {
    content: "🥄 ";
    margin-right: 0.5rem;
}

.instructions ol {
    padding-left: 1.5rem;
}

.instructions li {
    margin: 1rem 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .recipe-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 1rem;
    }
}

.greek-flag {
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 1.5rem;
}