* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: linear-gradient(to right, #0288d1 0%, #0277bd 25%, #01579b 50%, #fff 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 18px rgba(2, 136, 209, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #0277bd;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 2.4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.3rem;
}

.nav-links a {
    color: #e3f2fd;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(255,255,255,0.3);
}

.hero {
    background: linear-gradient(135deg, #0288d1 0%, #0277bd 30%, #01579b 60%, #1e88e5 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 6px solid #fff;
    position: relative;
}

.hero::before {
    content: '🫒';
    position: absolute;
    font-size: 12rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0277bd;
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 3px solid #e3f2fd;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: scale(1.08) translateY(-3px);
    background: #e3f2fd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.recipes-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 3rem;
    color: #0277bd;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 5px;
    background: linear-gradient(to right, #0288d1 0%, #01579b 100%);
    margin: 20px auto 0;
    border-radius: 3px;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(2, 136, 209, 0.25);
    transition: all 0.3s;
    border: 3px solid #bbdefb;
    cursor: pointer;
}

.recipe-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(2, 136, 209, 0.4);
    border-color: #0288d1;
}

.recipe-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s;
}

.recipe-card:hover img {
    transform: scale(1.1);
}

.recipe-content {
    padding: 2rem;
}

.recipe-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #0277bd;
    font-weight: 700;
}

.recipe-content p {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.recipe-meta {
    display: flex;
    gap: 2rem;
    color: #0288d1;
    font-weight: 700;
    font-size: 1.05rem;
}

.view-recipe-btn {
    margin-top: 1.2rem;
    padding: 14px 32px;
    background: linear-gradient(to right, #0288d1 0%, #0277bd 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.3);
}

.view-recipe-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(2, 136, 209, 0.5);
    background: linear-gradient(to right, #0277bd 0%, #01579b 100%);
}

.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
    border-radius: 10px;
    margin-top: 0;
}

.recipe-details.active {
    max-height: 2500px;
    transition: max-height 0.8s ease-in;
    padding: 2.5rem;
    margin-top: 1.5rem;
    border: 3px solid #81d4fa;
}

.recipe-section {
    margin-bottom: 2rem;
}

.recipe-section h4 {
    color: #0277bd;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.recipe-section ul, .recipe-section ol {
    padding-left: 2rem;
    color: #2c3e50;
}

.recipe-section li {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.recipe-section ol li {
    padding-left: 0.5rem;
}

footer {
    background: linear-gradient(to right, #0288d1 0%, #0277bd 25%, #01579b 50%, #0277bd 75%, #0288d1 100%);
    color: #e3f2fd;
    padding: 3.5rem 20px 2rem;
    margin-top: 4rem;
    border-top: 6px solid white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
}

.footer-section p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #bbdefb;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 3px solid rgba(227, 242, 253, 0.3);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}



