/* ===========================
   quirk.bar — Memphis Design
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --yellow:       #fbbf24;
    --pink:         #ec4899;
    --blue:         #3b82f6;
    --green:        #22c55e;
    --black:        #111111;
    --white:        #ffffff;
    --pastel-pink:  #fce7f3;
    --pastel-blue:  #dbeafe;
    --pastel-green: #dcfce7;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

/* ===========================
   NAVIGATION
   =========================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 2.5rem;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
}

.nav-logo {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 0 var(--pink);
    cursor: default;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--yellow);
}

/* ===========================
   HERO
   =========================== */

.hero {
    background: var(--yellow);
    min-height: 100vh;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 87%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 120px;
}

/* Pink circle — top right */
.hero-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.5;
    position: absolute;
    top: 8%;
    right: 8%;
    pointer-events: none;
}

/* Blue triangle — bottom left */
.hero-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 160px;
    height: 160px;
    background: var(--blue);
    opacity: 0.7;
    position: absolute;
    bottom: 12%;
    left: 6%;
    pointer-events: none;
}

/* Green squiggle SVG — horizontal center */
.hero-squiggle {
    position: absolute;
    bottom: 22%;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    opacity: 0.85;
}

/* Dot cluster — additional accent */
.hero-dot-cluster {
    position: absolute;
    top: 18%;
    left: 12%;
    display: flex;
    gap: 12px;
    pointer-events: none;
}

.dot {
    display: block;
    border-radius: 50%;
    opacity: 0.6;
}

.dot-yellow { width: 30px; height: 30px; background: var(--white); }
.dot-blue   { width: 18px; height: 18px; background: var(--blue); }
.dot-pink   { width: 24px; height: 24px; background: var(--black); }

/* Hero text content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 680px;
}

.hero-label {
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--black);
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.hero-title {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    text-shadow: 5px 5px 0 var(--pink);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
    background: var(--black);
    color: var(--yellow);
    border: 3px solid var(--black);
    box-shadow: 5px 5px 0 var(--pink);
}

.btn-primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--pink);
}

/* ===========================
   PATTERN STRIPS
   =========================== */

.pattern-strip {
    width: 100%;
    height: 44px;
    flex-shrink: 0;
}

.pattern-zigzag-pink {
    background: repeating-linear-gradient(
        45deg,
        var(--pink),
        var(--pink) 10px,
        var(--yellow) 10px,
        var(--yellow) 20px
    );
}

.pattern-dots-blue {
    background:
        radial-gradient(circle, var(--blue) 4px, transparent 4px),
        radial-gradient(circle, var(--pink) 3px, transparent 3px);
    background-size: 22px 22px, 22px 22px;
    background-position: 0 0, 11px 11px;
    background-color: var(--white);
}

.pattern-waves-green {
    background: repeating-linear-gradient(
        -45deg,
        var(--green),
        var(--green) 8px,
        var(--pastel-blue) 8px,
        var(--pastel-blue) 16px
    );
}

.pattern-zigzag-multi {
    background: repeating-linear-gradient(
        45deg,
        var(--blue),
        var(--blue) 7px,
        var(--green) 7px,
        var(--green) 14px,
        var(--yellow) 14px,
        var(--yellow) 21px,
        var(--pink) 21px,
        var(--pink) 28px
    );
}

/* ===========================
   CONTENT SECTIONS
   =========================== */

.content-section {
    position: relative;
    padding: 6rem 2.5rem;
    overflow: hidden;
}

.section-white  { background: var(--white); }
.section-pink   { background: var(--pastel-pink); }
.section-blue   { background: var(--pastel-blue); }
.section-green  { background: var(--pastel-green); }

/* Zigzag reading path — left/right offset */
.content-block {
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.block-left {
    margin-left: 10%;
    text-align: left;
}

.block-right {
    margin-left: auto;
    margin-right: 10%;
    text-align: right;
}

/* Section tag / label */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--black);
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.tag-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
}

.bullet-circle  { border-radius: 50%; }
.bullet-square  { border-radius: 0; }
.bullet-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
}

/* Section heading */
.section-heading {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

/* Body text */
.section-body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* ===========================
   DECORATIVE SHAPES (behind sections)
   =========================== */

.shape-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Pink section: blue circle top-left */
.shape-circle-blue {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.15;
    top: -40px;
    right: 5%;
}

/* Menu section: yellow triangle top-right */
.shape-triangle-yellow {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 140px;
    height: 140px;
    background: var(--yellow);
    opacity: 0.4;
    bottom: 10%;
    left: 3%;
}

/* Events section: pink square */
.shape-square-pink {
    width: 100px;
    height: 100px;
    background: var(--pink);
    opacity: 0.18;
    top: 15%;
    right: 4%;
    transform: rotate(22deg);
}

/* Visit section: yellow circle */
.shape-circle-yellow {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.28;
    bottom: -40px;
    left: 3%;
}

/* ===========================
   DRINK LIST (Menu)
   =========================== */

.drink-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drink-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.block-right .drink-item {
    flex-direction: row-reverse;
    text-align: right;
}

.drink-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--black);
    font-weight: 900;
}

.drink-item strong {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.drink-item span {
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ===========================
   EVENT CARDS
   =========================== */

.event-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.event-card {
    background: var(--white);
    border-left: 5px solid var(--pink);
    padding: 1rem 1.25rem;
    position: relative;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.12);
}

.block-left .event-card {
    border-left-width: 5px;
    border-right-width: 0;
}

.event-day {
    font-family: 'Rubik', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
    color: var(--black);
}

.event-card p {
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 500;
}

.event-card p strong {
    font-weight: 700;
}

.event-card span {
    font-weight: 400;
    opacity: 0.72;
    font-size: 0.88rem;
}

/* ===========================
   VISIT INFO
   =========================== */

.visit-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.visit-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.block-right .visit-row {
    flex-direction: row-reverse;
}

.visit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--black);
    padding: 5rem 2.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    opacity: 0.12;
}

.fs-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--pink);
    top: -40px;
    left: 5%;
}

.fs-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 120px;
    height: 120px;
    background: var(--blue);
    bottom: 20px;
    right: 8%;
}

.fs-square {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    top: 30%;
    left: 55%;
    transform: rotate(30deg);
}

.footer-domain {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--pink);
    letter-spacing: -0.02em;
    text-shadow:
        0 0 10px var(--pink),
        0 0 20px var(--pink),
        0 0 40px var(--pink),
        0 0 80px var(--pink);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    animation: neon-pulse 3s ease-in-out infinite alternate;
}

.footer-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.65;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-copy {
    font-family: 'Rubik', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    opacity: 0.35;
    position: relative;
    z-index: 2;
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes neon-pulse {
    0%   { text-shadow: 0 0 8px var(--pink), 0 0 16px var(--pink), 0 0 32px var(--pink), 0 0 60px var(--pink); }
    100% { text-shadow: 0 0 14px var(--pink), 0 0 28px var(--pink), 0 0 56px var(--pink), 0 0 100px var(--pink); }
}

@keyframes float-up-down {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

.hero-circle   { animation: float-up-down 6s ease-in-out infinite; }
.hero-triangle { animation: float-up-down 5s ease-in-out infinite 1s; }

@keyframes squiggle-slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-80px); }
}

.hero-squiggle {
    animation: squiggle-slide 5s linear infinite;
}

/* ===========================
   REVEAL ON SCROLL
   =========================== */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .nav-links { display: none; }

    .block-left  { margin-left: 5%; }
    .block-right {
        margin-right: 5%;
        text-align: left;
    }

    .block-right .drink-item  { flex-direction: row; text-align: left; }
    .block-right .visit-row   { flex-direction: row; }

    .hero-title {
        font-size: clamp(2.8rem, 14vw, 5rem);
    }
}
