/* Template 58 - Graffiti Street / Urban Art */
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Bangers&family=Roboto:wght@400;500;700&display=swap');

:root {
    --concrete: #2d2d2d;
    --asphalt: #1a1a1a;
    --wall: #3d3d3d;
    --spray-pink: #ff2d95;
    --spray-cyan: #00f0ff;
    --spray-yellow: #ffe600;
    --spray-green: #39ff14;
    --spray-orange: #ff6b00;
    --white: #ffffff;
    --cream: #f5f5dc;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--white);
    background: var(--asphalt);
    font-weight: 400;
    position: relative;
}

/* Graffiti texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.02) 2px,
            rgba(255,255,255,0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Header - Street Style */
.site-header {
    background: var(--concrete);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--spray-pink);
    box-shadow: 0 4px 20px rgba(255, 45, 149, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    text-shadow: 
        3px 3px 0 var(--spray-cyan),
        -2px -2px 0 var(--spray-pink);
    transform: rotate(-2deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

.site-logo a:hover {
    transform: rotate(2deg) scale(1.05);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.site-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    background: var(--wall);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav a:hover {
    background: var(--spray-yellow);
    color: var(--asphalt);
    border-color: var(--asphalt);
    transform: rotate(-1deg);
}

/* Hero Section */
.section.head {
    padding: 6rem 0;
    text-align: left;
    position: relative;
}

.section.head::before {
    content: 'FRESH';
    position: absolute;
    top: 2rem;
    right: 5%;
    font-family: 'Permanent Marker', cursive;
    font-size: 8rem;
    color: var(--spray-cyan);
    opacity: 0.1;
    transform: rotate(15deg);
    pointer-events: none;
}

.section.head h1 {
    font-family: 'Bangers', cursive;
    font-size: 5rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 
        4px 4px 0 var(--spray-pink),
        8px 8px 0 var(--spray-cyan);
    transform: rotate(-1deg);
}

.section.head p {
    font-size: 1.25rem;
    color: var(--cream);
    max-width: 600px;
    padding: 1.5rem;
    background: var(--wall);
    border-left: 5px solid var(--spray-green);
    position: relative;
}

.section.head p::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-family: 'Permanent Marker', cursive;
    font-size: 4rem;
    color: var(--spray-yellow);
    opacity: 0.5;
}

/* Section Styling */
.section {
    padding: 5rem 0;
    position: relative;
}

.section header {
    margin-bottom: 3rem;
}

.section header h2 {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    letter-spacing: 0.03em;
    color: var(--white);
    text-shadow: 3px 3px 0 var(--spray-orange);
    display: inline-block;
    transform: rotate(-1deg);
}

.section header p {
    font-size: 1.125rem;
    color: var(--cream);
    max-width: 500px;
    margin-top: 1rem;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.75rem;
    color: var(--spray-cyan);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--concrete);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 5px solid;
    border-image: linear-gradient(90deg, var(--spray-pink), var(--spray-cyan), var(--spray-yellow), var(--spray-green)) 1;
    position: relative;
    z-index: 2;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-about {
    max-width: 350px;
}

.footer-tagline {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Bangers', cursive;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: var(--wall);
    border: 2px solid var(--spray-pink);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: var(--spray-pink);
    color: var(--white);
    transform: scale(1.05) rotate(2deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px dashed var(--wall);
}

.copyright {
    font-family: 'Permanent Marker', cursive;
    color: var(--cream);
    font-size: 1rem;
}

.copyright a {
    color: var(--spray-yellow);
    text-decoration: none;
}

/* Animations */
@keyframes spray {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px) rotate(-1deg); }
    75% { transform: translateX(2px) rotate(1deg); }
}

.fade-in {
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
