/* gazza.news - Graffiti Street Style Promo */
/* Palette: #1a1a1a, #facc15, #ef4444, #22c55e, #f5f5f5, #2a2a2a */

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

body {
    background: #1a1a1a;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   SPLATTERS - Spray-paint radial gradients
   ============================================ */
.splatter {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.splatter-yellow {
    background: radial-gradient(circle at 50% 50%, #facc15 0%, transparent 70%);
}

.splatter-red {
    background: radial-gradient(circle at 50% 50%, #ef4444 0%, transparent 70%);
}

.splatter-green {
    background: radial-gradient(circle at 50% 50%, #22c55e 0%, transparent 70%);
}

/* Hero splatters */
.s1 { width: 260px; height: 260px; top: 8%; left: 5%; opacity: 0.55; }
.s2 { width: 180px; height: 180px; top: 45%; right: 8%; opacity: 0.5; }
.s3 { width: 140px; height: 140px; bottom: 15%; left: 35%; opacity: 0.45; }
.s4 { width: 100px; height: 100px; top: 20%; right: 25%; opacity: 0.35; }
.s5 { width: 90px; height: 90px; bottom: 30%; left: 15%; opacity: 0.3; }

/* Headlines splatters */
.hl-splat-1 { width: 120px; height: 120px; top: 10%; right: -30px; opacity: 0.3; }
.hl-splat-2 { width: 100px; height: 100px; bottom: 20%; left: -20px; opacity: 0.25; }

/* More stories splatter */
.ms-splat-1 { width: 150px; height: 150px; top: -30px; right: 10%; opacity: 0.25; }

/* Close splatter */
.close-splat-1 { width: 100px; height: 100px; top: 20%; left: 10%; opacity: 0.2; }

/* ============================================
   DRIP LINES
   ============================================ */
.drip {
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, #facc15 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.drip-1 { height: 120px; top: 55%; left: 12%; transform: rotate(2deg); }
.drip-2 { height: 80px; top: 25%; right: 18%; background: linear-gradient(to bottom, #ef4444 0%, transparent 100%); transform: rotate(-1deg); }
.drip-3 { height: 60px; bottom: 10%; left: 42%; background: linear-gradient(to bottom, #22c55e 0%, transparent 100%); }
.drip-close { height: 70px; top: 0; left: 50%; background: linear-gradient(to bottom, #facc15 0%, transparent 100%); opacity: 0.25; }

/* ============================================
   ARROW MARKS - Graffiti > symbols
   ============================================ */
.arrow-mark {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #facc15;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.arrow-1 { font-size: 4rem; bottom: 18%; right: 12%; transform: rotate(15deg); }
.arrow-2 { font-size: 2.5rem; top: 30%; left: 8%; transform: rotate(-10deg); color: #ef4444; }
.arrow-story { font-size: 1.8rem; top: -8px; right: -8px; transform: rotate(20deg); opacity: 0.4; }

/* ============================================
   HERO SECTION - The Wall
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 12vw, 8rem);
    color: #f5f5f5;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
}

.brand-dot {
    color: #facc15;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ============================================
   HEADLINES SECTION
   ============================================ */
.headlines {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.story-block {
    background: #2a2a2a;
    padding: 1.5rem 1.75rem;
    position: relative;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-block:hover {
    transform: rotate(0deg) scale(1.01);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.7);
}

.rot-neg {
    transform: rotate(-2deg);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
    border-left-color: #facc15;
}

.rot-pos {
    transform: rotate(1.5deg);
    box-shadow: -3px 4px 0 rgba(0, 0, 0, 0.5);
    border-left-color: #ef4444;
}

.rot-neg-sm {
    transform: rotate(-0.8deg);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    border-left-color: #22c55e;
}

.rot-pos-sm {
    transform: rotate(1deg);
    box-shadow: -2px 3px 0 rgba(0, 0, 0, 0.5);
    border-left-color: #facc15;
}

/* Stickers */
.sticker {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    background: #facc15;
    color: #1a1a1a;
    padding: 3px 10px;
    border: 2px solid #1a1a1a;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
    transform: rotate(-3deg);
}

.sticker-red {
    background: #ef4444;
    color: #f5f5f5;
    border-color: #f5f5f5;
    transform: rotate(2deg);
}

.story-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    color: #f5f5f5;
}

.story-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

/* ============================================
   TAGS CLOUD - Scattered stickers
   ============================================ */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
}

.tag {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border: 2px solid currentColor;
    display: inline-block;
    cursor: default;
    transition: transform 0.2s ease, background 0.2s ease;
}

.tag:hover {
    background: currentColor;
}

.tag:hover {
    color: #1a1a1a;
}

.t1 { color: #facc15; transform: rotate(-3deg); font-size: 0.75rem; }
.t2 { color: #ef4444; transform: rotate(2.5deg); }
.t3 { color: #22c55e; transform: rotate(-1.5deg); font-size: 0.7rem; }
.t4 { color: #facc15; transform: rotate(4deg); }
.t5 { color: #ef4444; transform: rotate(-2deg); font-size: 0.75rem; }
.t6 { color: #22c55e; transform: rotate(3deg); }
.t7 { color: #facc15; transform: rotate(-4deg); font-size: 0.7rem; }
.t8 { color: #ef4444; transform: rotate(1.5deg); }
.t9 { color: #22c55e; transform: rotate(-2.5deg); font-size: 0.75rem; }

/* Tag hover fix: restore border color */
.t1:hover { background: #facc15; border-color: #facc15; }
.t2:hover { background: #ef4444; border-color: #ef4444; }
.t3:hover { background: #22c55e; border-color: #22c55e; }
.t4:hover { background: #facc15; border-color: #facc15; }
.t5:hover { background: #ef4444; border-color: #ef4444; }
.t6:hover { background: #22c55e; border-color: #22c55e; }
.t7:hover { background: #facc15; border-color: #facc15; }
.t8:hover { background: #ef4444; border-color: #ef4444; }
.t9:hover { background: #22c55e; border-color: #22c55e; }

/* ============================================
   HOT TAKE SECTION
   ============================================ */
.hot-take {
    background: #facc15;
    color: #1a1a1a;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hot-take::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #1a1a1a 0px,
        #1a1a1a 8px,
        transparent 8px,
        transparent 16px
    );
}

.hot-take::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #1a1a1a 0px,
        #1a1a1a 8px,
        transparent 8px,
        transparent 16px
    );
}

.hot-take-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hot-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: #1a1a1a;
    color: #facc15;
    padding: 4px 14px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hot-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    line-height: 1.5;
    color: #1a1a1a;
}

/* ============================================
   MORE STORIES SECTION
   ============================================ */
.more-stories {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

/* ============================================
   CLOSE SECTION - Street
   ============================================ */
.close {
    text-align: center;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.close-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #888;
    position: relative;
    z-index: 1;
}

.close-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    color: #555;
    display: block;
    margin-top: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    position: relative;
    z-index: 1;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Story blocks keep their rotation when visible */
.rot-neg.fade-in.visible { transform: rotate(-2deg); }
.rot-pos.fade-in.visible { transform: rotate(1.5deg); }
.rot-neg-sm.fade-in.visible { transform: rotate(-0.8deg); }
.rot-pos-sm.fade-in.visible { transform: rotate(1deg); }

/* ============================================
   SPLATTER PULSE ANIMATION
   ============================================ */
@keyframes splatterPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.08); opacity: 0.55; }
}

.hero .splatter {
    animation: splatterPulse 6s ease-in-out infinite;
}

.s2 { animation-delay: -2s; }
.s3 { animation-delay: -4s; }
.s4 { animation-delay: -1s; }
.s5 { animation-delay: -3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .headlines,
    .more-stories {
        padding: 2rem 1rem;
    }

    .story-block {
        padding: 1.25rem 1.25rem;
    }

    .hot-take {
        padding: 3rem 1.25rem;
    }

    .close {
        padding: 4rem 1rem;
    }

    .s1 { width: 180px; height: 180px; }
    .s2 { width: 120px; height: 120px; }
    .s3 { width: 100px; height: 100px; }

    .arrow-mark { display: none; }
}
