/*
  Neobrutalist Theme for Arbor Brew
  Vibe: Playful, Stark, High-Contrast
*/

/* --- Typography & Base Resets --- */
/*
  Space Grotesk for chunky, legible sans-serif
*/

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: #ffffff;
    /* Harsh White */
    color: #000000;
    /* Pitch Black */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    /* Custom thick border around the entire viewport */
    border: 8px solid #000000;
    min-height: 100vh;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #ffffff;
    border-left: 3px solid #000000;
}

body::-webkit-scrollbar-thumb {
    background-color: #000000;
}

/* --- Neobrutalist Utilities --- */

/* Hard Drop Shadow (The core of the aesthetic) */
.neo-shadow {
    box-shadow: 6px 6px 0px 0px #000000;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* Active state for buttons (Click down) */
.neo-shadow:active,
.neo-button:active {
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px 0px #000000;
}

/* Thick structural borders */
.neo-border {
    border: 3px solid #000000;
}

.neo-border-b {
    border-bottom: 3px solid #000000;
}

.neo-border-t {
    border-top: 3px solid #000000;
}

.neo-border-l {
    border-left: 3px solid #000000;
}

.neo-border-r {
    border-right: 3px solid #000000;
}

/* --- Buttons --- */
.neo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFD500;
    /* Bright Yellow Default */
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 3px solid #000000;
    box-shadow: 6px 6px 0px 0px #000000;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
    cursor: pointer;
}

.neo-button:hover {
    background-color: #FF90E8;
    /* Bubblegum Pink on hover */
}

/* Specific button colors */
.neo-button.pink {
    background-color: #FF90E8;
}

.neo-button.pink:hover {
    background-color: #FFD500;
}

.neo-button.white {
    background-color: #ffffff;
}

.neo-button.white:hover {
    background-color: #38bdf8;
    /* Blue */
}


/* --- Cards --- */
.neo-card {
    background-color: #ffffff;
    border: 3px solid #000000;
    box-shadow: 8px 8px 0px 0px #000000;
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neo-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px 0px #000000;
}

/* --- Layout & Structure --- */

/* Badge */
.neo-badge {
    display: inline-block;
    background-color: #ffffff;
    border: 2px solid #000000;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 9999px;
    /* Pill shape is okay for badges here */
    box-shadow: 3px 3px 0px 0px #000000;
    margin-bottom: 1rem;
}

/* Navigation */
.neo-nav {
    background-color: #ffffff;
    border-bottom: 3px solid #000000;
    z-index: 50;
}

/* Images */
.neo-img-container {
    border: 3px solid #000000;
    box-shadow: 8px 8px 0px 0px #000000;
    overflow: hidden;
    background-color: #FF90E8;
    /* Underlying color in case image hasn't loaded */
}

.neo-img-container img {
    filter: saturate(1.2) contrast(1.1);
    /* Punch up the colors slightly */
    transition: transform 0.3s ease;
}

.neo-img-container:hover img {
    transform: scale(1.05);
}

/* Custom Selection */
::selection {
    background-color: #10b981;
    /* Emerald Green */
    color: #ffffff;
}

/* --- Marquee Animation --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
    padding: 1.5rem 0;
    background-color: #38bdf8;
    /* Bright Blue */
    display: flex;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 15s linear infinite;
    padding-right: 2rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000000;
}

.marquee-content i {
    margin: 0 2rem;
    font-size: 1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}