/* WIZZA - Feeling Saucy! Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --wizza-red: #c41e3a;
    --wizza-yellow: #ffd700;
    --wizza-orange: #ff6b35;
    --wizza-cream: #fff8e7;
    --wizza-brown: #8b4513;
    --wizza-dark: #2c1810;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--wizza-cream);
    color: var(--wizza-dark);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--wizza-red) 0%, var(--wizza-orange) 100%);
    padding: 2rem;
    text-align: center;
}

.hero-image {
    max-width: 1200px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Main Content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 3rem 0;
}

.intro h1 {
    font-family: 'Bangers', cursive;
    font-size: 3.5rem;
    color: var(--wizza-red);
    text-shadow: 3px 3px 0 var(--wizza-yellow);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    color: var(--wizza-orange);
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Recipe Section */
.recipe {
    padding: 2rem 0;
}

.recipe h2 {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    color: var(--wizza-red);
    text-align: center;
    margin-bottom: 2rem;
}

.recipe-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ingredients h3,
.instructions h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--wizza-orange);
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--wizza-yellow);
    padding-bottom: 0.5rem;
}

.ingredients ul {
    list-style: none;
}

.ingredients li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #ddd;
    font-size: 1.1rem;
}

.ingredients .amount {
    font-weight: 700;
    color: var(--wizza-red);
}

.ingredients .metric {
    color: #888;
    font-size: 0.9rem;
}

.instructions ol {
    padding-left: 1.5rem;
}

.instructions li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
}

.instructions li::marker {
    color: var(--wizza-red);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Pro Tips */
.pro-tips {
    background: linear-gradient(135deg, var(--wizza-yellow) 0%, #ffed4a 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.pro-tips h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--wizza-red);
    margin-bottom: 1rem;
}

.pro-tips ul {
    list-style: none;
}

.pro-tips li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.pro-tips li::before {
    content: "🧇 ";
}

/* Gallery Section */
.gallery {
    padding: 3rem 0;
}

.gallery h2 {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    color: var(--wizza-red);
    text-align: center;
    margin-bottom: 0.5rem;
}

.gallery-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-item h4 {
    padding: 1rem;
    text-align: center;
    color: var(--wizza-orange);
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 3rem 0;
}

.cta h2 {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    color: var(--wizza-red);
    margin-bottom: 1rem;
}

.mascot-container {
    margin-top: 2rem;
}

.mascot {
    max-width: 200px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--wizza-dark);
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer-tagline {
    color: var(--wizza-yellow);
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recipe-card {
        grid-template-columns: 1fr;
    }

    .intro h1 {
        font-size: 2.5rem;
    }

    .recipe h2,
    .gallery h2,
    .cta h2 {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 100%;
    }

    main {
        padding: 1rem;
    }

    .recipe-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .intro h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .ingredients li,
    .instructions li {
        font-size: 1rem;
    }
}
