* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
}

.wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.main-header {
    background: #e67e22;
    padding: 1.2rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.main-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.site-logo {
    font-size: 2.4rem;
    color: white;
    font-weight: 700;
}

.subtitle {
    color: #ffeaa7;
    font-size: 0.85rem;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 2.2rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ffeaa7;
}

/* Hero */
.hero-area {
    background: linear-gradient(135deg, #e67e22, #d35400);
    padding: 140px 30px;
    text-align: center;
    color: white;
}

.hero-inner h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-inner p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-inner button {
    background: white;
    color: #e67e22;
    border: none;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-inner button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Recipes */
.recipe-showcase {
    padding: 90px 30px;
    background: #ecf0f1;
}

.showcase-title {
    text-align: center;
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 3.5rem;
}

.recipe-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.recipe-box {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.recipe-box:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.recipe-photo {
    height: 230px;
    background-size: cover;
    background-position: center;
}

.recipe-details {
    padding: 1.8rem;
}

.recipe-details h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.recipe-details p {
    color: #7f8c8d;
    margin-bottom: 1.2rem;
}

.info-row {
    display: flex;
    gap: 1.5rem;
    color: #e67e22;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer */
.page-footer {
    background: #34495e;
    color: white;
    padding: 3.5rem 30px 1.5rem;
}

.footer-flex {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-flex h3, .footer-flex h4 {
    color: #e67e22;
    margin-bottom: 1.2rem;
}

.footer-flex ul {
    list-style: none;
}

.footer-flex ul li {
    margin-bottom: 0.7rem;
}

.footer-flex a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-flex a:hover {
    color: white;
}

.copyright-text {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c3e50;
    color: #95a5a6;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header .wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-inner h2 {
        font-size: 2rem;
    }
    
    .recipe-box {
        flex: 0 0 100%;
    }
    
    .footer-flex {
        grid-template-columns: 1fr;
    }
}

