* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #1f1f1f;
    line-height: 1.68;
}

.center-box {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 37px;
}

/* Header Bar */
.header-bar {
    background: #e67e22;
    padding: 1.58rem 0;
}

.header-bar .center-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-text {
    font-size: 2.88rem;
    color: white;
    font-weight: 900;
    letter-spacing: 3px;
}

.menu-links {
    display: flex;
    gap: 2.78rem;
}

.menu-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: opacity 0.3s;
}

.menu-links a:hover {
    opacity: 0.7;
}

/* Main Banner */
.main-banner {
    background: linear-gradient(to bottom, #e67e22, #d35400);
    padding: 184px 37px;
    text-align: center;
    color: white;
}

.banner-inner h1 {
    font-size: 4.12rem;
    margin-bottom: 1.58rem;
    font-weight: 900;
}

.banner-inner p {
    font-size: 1.64rem;
    margin-bottom: 2.88rem;
}

.banner-btn {
    display: inline-block;
    background: white;
    color: #e67e22;
    padding: 21px 62px;
    text-decoration: none;
    border-radius: 13px;
    font-weight: 900;
    font-size: 1.24rem;
    transition: all 0.3s;
}

.banner-btn:hover {
    background: #fffcfc;
    box-shadow: 0 14px 36px rgba(0,0,0,0.27);
}

/* Recipe Zone */
.recipe-zone {
    padding: 102px 37px;
    background: #fef5e7;
}

.zone-title {
    text-align: center;
    font-size: 3.62rem;
    color: #e67e22;
    margin-bottom: 4.4rem;
    font-weight: 900;
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(378px, 1fr));
    gap: 3.12rem;
}

.food-box {
    background: white;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 11px 34px rgba(0,0,0,0.17);
    transition: all 0.3s;
}

.food-box:hover {
    transform: translateY(-11px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.23);
}

.food-box img {
    width: 100%;
    height: 264px;
    object-fit: cover;
    display: block;
}

.box-text {
    padding: 2.28rem;
}

.box-text h3 {
    font-size: 1.8rem;
    color: #1f1f1f;
    margin-bottom: 1.24rem;
    font-weight: 900;
}

.box-text p {
    color: #666;
    margin-bottom: 1.56rem;
    line-height: 1.82;
}

.box-badges {
    display: flex;
    gap: 1.92rem;
    color: #e67e22;
    font-weight: 900;
}

/* Footer */
.footer-section {
    background: #ca6f1e;
    color: white;
    padding: 4.12rem 37px 2.12rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4.12rem;
    margin-bottom: 3.12rem;
}

.footer-columns h3, .footer-columns h4 {
    margin-bottom: 1.58rem;
    font-weight: 900;
}

.footer-columns ul {
    list-style: none;
}

.footer-columns ul li {
    margin-bottom: 1.04rem;
}

.footer-columns a {
    color: rgba(255,255,255,0.96);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-columns a:hover {
    color: white;
}

.footer-credit {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.38);
}

/* Responsive */
@media (max-width: 768px) {
    .header-bar .center-box {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .menu-links {
        flex-direction: column;
        gap: 1.24rem;
        text-align: center;
    }
    
    .banner-inner h1 {
        font-size: 2.68rem;
    }
    
    .zone-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

