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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Header Styling */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 0.95em;
    font-style: italic;
    color: #ecf0f1;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 15px;
}

.navbar ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 20px;
    gap: 25px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

.navbar a:hover,
.navbar a.active {
    color: #f39c12;
    border-bottom-color: #f39c12;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.hero-content h2 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.hero img {
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    height: auto;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Featured Recipes Section */
.featured-recipes {
    margin-bottom: 60px;
}

.featured-recipes > h2 {
    font-size: 2.5em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Recipe Card */
.recipe-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.recipe-card img {
    flex: 0 0 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.recipe-info {
    flex: 1;
}

.recipe-info h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.recipe-meta {
    font-size: 1em;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 15px;
}

.recipe-summary {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.recipe-info h4 {
    font-size: 1.3em;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 12px;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 8px;
}

.recipe-info ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.recipe-info li {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.recipe-info p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.huge-words {
    font-size: 1.15em;
    color: #e74c3c;
    font-weight: bold;
    background: #fff9e6;
    padding: 15px;
    border-left: 4px solid #e74c3c;
    margin: 20px 0;
    display: block;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #229954;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    padding: 60px 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.why-choose h2 {
    font-size: 2.5em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature h3 {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 12px;
}

.feature p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #f39c12;
}

.footer-section p {
    color: #ecf0f1;
    line-height: 1.6;
    font-size: 1em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1em;
}

.footer-section a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .hero-content h2 {
        font-size: 2em;
    }

    .hero img {
        min-width: 100%;
        max-height: 300px;
    }

    .recipe-card {
        flex-direction: column;
        padding: 20px;
    }

    .recipe-card img {
        flex: 0 0 250px;
        width: 100%;
    }

    .logo h1 {
        font-size: 2em;
    }

    .navbar ul {
        gap: 15px;
        flex-direction: column;
    }

    .navbar a {
        font-size: 1em;
    }

    .featured-recipes > h2 {
        font-size: 2em;
    }

    .recipe-info h3 {
        font-size: 1.4em;
    }

    main {
        padding: 20px 15px;
    }

    .why-choose {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.6em;
    }

    .recipe-info h3 {
        font-size: 1.2em;
    }

    .recipe-info h4 {
        font-size: 1.1em;
    }

    .navbar ul {
        gap: 10px;
    }

    .logo h1 {
        font-size: 1.5em;
    }

    .tagline {
        font-size: 0.85em;
    }
}