* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Calibri', 'Gill Sans', sans-serif;
    line-height: 1.7;
    color: #1a3a52;
    background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, #0277bd 0%, #01579b 100%);
    padding: 1.3rem 0;
    box-shadow: 0 6px 20px rgba(2, 119, 189, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #e1f5fe;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    color: #e1f5fe;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e1f5fe;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0288d1 0%, #0277bd 100%);
    color: white;
    padding: 130px 20px;
    text-align: center;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
}

.hero-content h2 {
    font-size: 3.4rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0277bd;
    padding: 17px 50px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Recipes Section */
.recipes-section {
    padding: 85px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.9rem;
    margin-bottom: 3.5rem;
    color: #0277bd;
    font-weight: 700;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.recipe-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(2, 119, 189, 0.2);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(2, 119, 189, 0.3);
    border-color: #0288d1;
}

.recipe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.recipe-content {
    padding: 2rem;
}

.recipe-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    color: #0277bd;
    font-weight: 700;
}

.recipe-content p {
    color: #455a64;
    margin-bottom: 1.2rem;
}

.recipe-meta {
    display: flex;
    gap: 1.8rem;
    color: #0288d1;
    font-weight: 600;
}

.view-recipe-btn {
    margin-top: 1.2rem;
    padding: 13px 30px;
    background: linear-gradient(135deg, #0288d1 0%, #0277bd 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.view-recipe-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(2, 136, 209, 0.4);
}

.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #e1f5fe;
    border-radius: 12px;
    margin-top: 0;
}

.recipe-details.active {
    max-height: 2000px;
    transition: max-height 0.8s ease-in;
    padding: 2.5rem 2rem;
    margin-top: 1.2rem;
}

.recipe-section {
    margin-bottom: 2.2rem;
}

.recipe-section:last-child {
    margin-bottom: 0;
}

.recipe-section h4 {
    color: #0277bd;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.recipe-section ul, .recipe-section ol {
    padding-left: 1.8rem;
    color: #37474f;
}

.recipe-section li {
    margin-bottom: 0.9rem;
    line-height: 1.7;
}

.recipe-card {
    cursor: pointer;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0277bd 0%, #01579b 100%);
    color: #e1f5fe;
    padding: 4rem 20px 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #b3e5fc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(225, 245, 254, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.3rem;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
    }
}

