* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', sans-serif;
    color: #252525;
    line-height: 1.72;
}

.page-container {
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 35px;
}

/* Navigation */
.navigation-bar {
    background: #9b59b6;
    padding: 1.52rem 0;
    box-shadow: 0 4px 13px rgba(0,0,0,0.13);
}

.navigation-bar .page-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-title {
    font-size: 2.78rem;
    color: white;
    font-weight: 900;
}

.nav-options {
    display: flex;
    list-style: none;
    gap: 2.68rem;
}

.nav-options a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-options a:hover {
    color: #d7bde2;
}

/* Banner */
.banner-section {
    background: linear-gradient(rgba(155, 89, 182, 0.9), rgba(155, 89, 182, 0.9)),
                url('https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?w=1600') center/cover;
    padding: 176px 35px;
    text-align: center;
    color: white;
}

.banner-overlay h1 {
    font-size: 3.98rem;
    margin-bottom: 1.52rem;
    font-weight: 900;
}

.banner-overlay p {
    font-size: 1.56rem;
    margin-bottom: 2.78rem;
}

.call-to-action {
    display: inline-block;
    background: white;
    color: #9b59b6;
    padding: 20px 58px;
    text-decoration: none;
    border-radius: 11px;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.call-to-action:hover {
    background: #fefefe;
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* Content Section */
.content-section {
    padding: 98px 35px;
    background: #f4ecf7;
}

.primary-heading {
    text-align: center;
    font-size: 3.48rem;
    color: #9b59b6;
    margin-bottom: 4.2rem;
    font-weight: 900;
}

.display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 2.98rem;
}

.recipe-element {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 9px 30px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.recipe-element:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 46px rgba(0,0,0,0.21);
}

.element-photo {
    height: 256px;
    background-size: cover;
    background-position: center;
}

.element-details {
    padding: 2.18rem;
}

.element-details h3 {
    font-size: 1.72rem;
    color: #252525;
    margin-bottom: 1.16rem;
    font-weight: 900;
}

.element-details p {
    color: #666;
    margin-bottom: 1.48rem;
    line-height: 1.78;
}

.element-meta {
    display: flex;
    gap: 1.82rem;
    color: #9b59b6;
    font-weight: 900;
    font-size: 0.98rem;
}

/* Footer */
.bottom-footer {
    background: #7d3c98;
    color: white;
    padding: 3.98rem 35px 1.98rem;
}

.footer-structure {
    display: grid;
    grid-template-columns: 2.8fr 1fr;
    gap: 3.98rem;
    margin-bottom: 2.98rem;
}

.footer-structure h3, .footer-structure h4 {
    margin-bottom: 1.52rem;
    font-weight: 900;
}

.footer-structure ul {
    list-style: none;
}

.footer-structure ul li {
    margin-bottom: 0.96rem;
}

.footer-structure a {
    color: rgba(255,255,255,0.94);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-structure a:hover {
    color: white;
}

.bottom-line {
    text-align: center;
    padding-top: 2.42rem;
    border-top: 1px solid rgba(255,255,255,0.34);
}

/* Responsive */
@media (max-width: 768px) {
    .navigation-bar .page-container {
        flex-direction: column;
        gap: 1.42rem;
    }
    
    .nav-options {
        flex-direction: column;
        gap: 1.16rem;
        text-align: center;
    }
    
    .banner-overlay h1 {
        font-size: 2.58rem;
    }
    
    .display-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-structure {
        grid-template-columns: 1fr;
    }
}

