* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Impact', 'Charcoal', sans-serif;
    color: #1e1e1e;
    line-height: 1.62;
    font-weight: 400;
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 29px;
}

/* Header */
.main-header {
    background: #e74c3c;
    padding: 1.48rem 0;
}

.main-header .content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    font-size: 2.72rem;
    color: white;
    font-weight: 900;
    letter-spacing: 2.5px;
}

.menu-bar {
    display: flex;
    gap: 2.62rem;
}

.menu-bar a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.96rem;
    transition: opacity 0.3s;
}

.menu-bar a:hover {
    opacity: 0.72;
}

/* Welcome */
.welcome-section {
    background: linear-gradient(to right, #e74c3c, #c0392b);
    padding: 172px 29px;
    text-align: center;
    color: white;
}

.welcome-text h2 {
    font-size: 3.92rem;
    margin-bottom: 1.48rem;
    font-weight: 900;
}

.welcome-text p {
    font-size: 1.52rem;
    margin-bottom: 2.72rem;
    font-weight: 400;
}

.discover-btn {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 19px 56px;
    text-decoration: none;
    border-radius: 9px;
    font-weight: 900;
    font-size: 1.18rem;
    transition: all 0.3s;
}

.discover-btn:hover {
    background: #fffbfb;
    box-shadow: 0 9px 30px rgba(0,0,0,0.24);
}

/* Main Section */
.main-section {
    padding: 96px 29px;
    background: #fadbd8;
}

.headline {
    text-align: center;
    font-size: 3.42rem;
    color: #e74c3c;
    margin-bottom: 4.12rem;
    font-weight: 900;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(366px, 1fr));
    gap: 2.92rem;
}

.meal-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
    transition: all 0.3s;
}

.meal-card:hover {
    transform: scale(1.05);
    box-shadow: 0 17px 44px rgba(0,0,0,0.2);
}

.meal-card img {
    width: 100%;
    height: 252px;
    object-fit: cover;
    display: block;
}

.card-text {
    padding: 2.12rem;
}

.card-text h3 {
    font-size: 1.68rem;
    color: #1e1e1e;
    margin-bottom: 1.12rem;
    font-weight: 900;
}

.card-text p {
    color: #666;
    margin-bottom: 1.42rem;
    line-height: 1.75;
    font-weight: 400;
}

.meal-info {
    display: flex;
    gap: 1.78rem;
    color: #e74c3c;
    font-weight: 900;
    font-size: 0.96rem;
}

/* End Section */
.end-section {
    background: #c0392b;
    color: white;
    padding: 3.92rem 29px 1.92rem;
}

.end-grid {
    display: grid;
    grid-template-columns: 2.7fr 1fr;
    gap: 3.92rem;
    margin-bottom: 2.92rem;
}

.end-grid h3, .end-grid h4 {
    margin-bottom: 1.48rem;
    font-weight: 900;
}

.end-grid ul {
    list-style: none;
}

.end-grid ul li {
    margin-bottom: 0.92rem;
}

.end-grid a {
    color: rgba(255,255,255,0.93);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.end-grid a:hover {
    color: white;
}

.end-grid p {
    font-weight: 400;
}

.final-text {
    text-align: center;
    padding-top: 2.38rem;
    border-top: 1px solid rgba(255,255,255,0.32);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header .content-wrap {
        flex-direction: column;
        gap: 1.38rem;
    }
    
    .menu-bar {
        flex-direction: column;
        gap: 1.12rem;
        text-align: center;
    }
    
    .welcome-text h2 {
        font-size: 2.52rem;
    }
    
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .end-grid {
        grid-template-columns: 1fr;
    }
}

