* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    color: #2c2c2c;
    line-height: 1.7;
}

.wrapper-main {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.page-header {
    background: #c0392b;
    padding: 1.5rem 0;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.page-header .wrapper-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branding h1 {
    font-size: 2.6rem;
    color: white;
    font-weight: 700;
}

.motto {
    color: #f8d7da;
    font-size: 0.88rem;
    font-style: italic;
}

.header-nav {
    display: flex;
    gap: 2.4rem;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: #f8d7da;
}

/* Masthead */
.masthead {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    padding: 165px 32px;
    text-align: center;
    color: white;
}

.masthead-inner h2 {
    font-size: 3.7rem;
    margin-bottom: 1.4rem;
    font-weight: 700;
}

.masthead-inner p {
    font-size: 1.45rem;
    margin-bottom: 2.6rem;
    line-height: 1.6;
}

.action-btn {
    display: inline-block;
    background: white;
    color: #c0392b;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
}

.action-btn:hover {
    background: #fafafa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Recipe Area */
.recipe-area {
    padding: 92px 32px;
    background: #fef5e7;
}

.area-title {
    text-align: center;
    font-size: 3.2rem;
    color: #c0392b;
    margin-bottom: 3.8rem;
    font-weight: 700;
}

.recipe-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(355px, 1fr));
    gap: 2.8rem;
}

.dish-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 25px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.dish-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}

.dish-image {
    height: 245px;
    background-size: cover;
    background-position: center;
}

.dish-content {
    padding: 2rem;
}

.dish-content h3 {
    font-size: 1.6rem;
    color: #2c2c2c;
    margin-bottom: 1.1rem;
}

.dish-content p {
    color: #666;
    margin-bottom: 1.4rem;
    line-height: 1.7;
}

.dish-stats {
    display: flex;
    gap: 1.7rem;
    color: #c0392b;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Footer */
.page-footer {
    background: #922b21;
    color: white;
    padding: 3.8rem 32px 1.8rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3.6rem;
    margin-bottom: 2.8rem;
}

.footer-layout h3, .footer-layout h4 {
    margin-bottom: 1.4rem;
    font-weight: 700;
}

.footer-layout ul {
    list-style: none;
}

.footer-layout ul li {
    margin-bottom: 0.9rem;
}

.footer-layout a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-layout a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.3rem;
    border-top: 1px solid rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header .wrapper-main {
        flex-direction: column;
        gap: 1.3rem;
    }
    
    .header-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .masthead-inner h2 {
        font-size: 2.4rem;
    }
    
    .recipe-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
    }
}

