/* AMH Summer Hackathon - Official Wallboard Theme */

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Pacifico&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --navy: #16163f;
    --deep: #0d0d2b;
    --pink: #ff3d8b;
    --magenta: #d6259c;
    --orange: #ff8c2e;
    --yellow: #ffd23f;
    --teal: #1fb9b0;
    --cyan: #45e0dc;
    --cream: #fdf3e3;
    --sun-gradient: linear-gradient(180deg, var(--yellow) 0%, var(--orange) 45%, var(--pink) 75%, var(--magenta) 100%);
}

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

html { font-size: clamp(14px, 1vw, 18px); }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--deep);
    color: var(--cream);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ---- STAGE BACKGROUND (fixed scene) ---- */
.stage {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(180deg,
        #0d0d2b 0%, #2a1a5e 22%, #6b2382 42%, #c62b7d 62%, #ff6b4a 80%, #ffb347 100%);
    z-index: 0;
}

/* Stars */
.star {
    position: absolute;
    color: var(--cream);
    font-size: 14px;
    animation: twinkle 2.6s ease-in-out infinite;
    text-shadow: 0 0 8px currentColor;
    pointer-events: none;
    z-index: 1;
}

@keyframes twinkle {
    0%, 100% { opacity: .15; transform: scale(.7) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.15) rotate(20deg); }
}

/* Sun */
.sun-wrap {
    position: absolute;
    left: 50%; bottom: 26%;
    transform: translateX(-50%);
    width: min(52vmin, 600px);
    height: min(52vmin, 600px);
    z-index: 2;
    pointer-events: none;
}

.sun {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--sun-gradient);
    -webkit-mask: repeating-linear-gradient(180deg, #000 0 8.5%, transparent 8.5% 11%);
    mask: repeating-linear-gradient(180deg, #000 0 8.5%, transparent 8.5% 11%);
    animation: sunpulse 5s ease-in-out infinite;
}

.sun-glow {
    position: absolute;
    inset: -12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,140,46,.5) 0%, rgba(255,61,139,.25) 45%, transparent 70%);
    animation: sunpulse 5s ease-in-out infinite;
}

@keyframes sunpulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Grid floor */
.grid-floor {
    position: absolute;
    left: 50%; bottom: 0;
    width: 300vw; height: 34vh;
    transform: translateX(-50%) perspective(220px) rotateX(58deg);
    transform-origin: bottom center;
    --grid-cell: clamp(64px, 4vw, 120px);
    --grid-w: clamp(2px, .16vw, 4px);
    background-image:
        linear-gradient(rgba(69,224,220,.55) var(--grid-w), transparent var(--grid-w)),
        linear-gradient(90deg, rgba(69,224,220,.55) var(--grid-w), transparent var(--grid-w));
    background-size: var(--grid-cell) var(--grid-cell);
    animation: gridmove 1.6s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes gridmove {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 var(--grid-cell), 0 0; }
}

.grid-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 36vh;
    background: linear-gradient(180deg, rgba(13,13,43,0) 0%, rgba(13,13,43,.55) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Palms */
.palm {
    position: absolute;
    bottom: 8vh;
    width: min(22vmin, 320px);
    z-index: 4;
    pointer-events: none;
    filter: drop-shadow(0 0 14px rgba(13,13,43,.6));
}

.palm-left { left: -2vw; animation: sway 6s ease-in-out infinite; transform-origin: bottom center; }
.palm-right { right: -2vw; transform: scaleX(-1); animation: sway 7s ease-in-out infinite reverse; transform-origin: bottom center; }

@keyframes sway {
    0%, 100% { rotate: 0deg; }
    50% { rotate: 2.5deg; }
}

/* Waves */
.waves {
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 18vh;
    min-height: 100px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 200%; height: 100%;
    display: flex;
    will-change: transform;
}

.wave svg { width: 50%; height: 100%; flex: none; display: block; }
.wave-back { animation: drift 13s linear infinite; opacity: .85; height: 92%; }
.wave-mid { animation: drift 9s linear infinite reverse; height: 74%; }
.wave-front { animation: drift 6s linear infinite; height: 55%; }

@keyframes drift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* ---- NAVIGATION ---- */
.nav {
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    padding: 0 2rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 13, 43, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--cyan);
    box-shadow: 0 0 20px rgba(69, 224, 220, 0.3);
}

.nav-brand {
    font-family: 'Bungee', cursive;
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: var(--cyan);
    text-shadow: 2px 2px 0 var(--navy), 0 0 12px rgba(69, 224, 220, 0.5);
}

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

.nav-links a {
    color: rgba(253, 243, 227, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.nav-links a:hover {
    color: var(--cyan);
    background: rgba(69, 224, 220, 0.08);
}

.nav-links a.active {
    color: var(--cyan);
    text-shadow: 0 0 12px rgba(69, 224, 220, 0.6);
    background: rgba(69, 224, 220, 0.12);
}

/* ---- MAIN CONTENT ---- */
.main-content {
    position: relative;
    z-index: 10;
    padding-top: 56px;
    min-height: 100vh;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    text-align: center;
    padding: 4rem 2rem 6rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.2vh, 1rem);
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-label {
    font-family: 'Bungee', cursive;
    font-size: clamp(1.5rem, 5vw, 3rem);
    letter-spacing: 0.12em;
    color: var(--cyan);
    text-shadow: 3px 3px 0 var(--navy), 6px 6px 0 rgba(13, 13, 43, 0.55), 0 0 24px rgba(69, 224, 220, 0.65);
    transform: rotate(-3deg);
}

.hero h1 {
    font-family: 'Bungee', cursive;
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    transform: skewX(-6deg);
    background: repeating-linear-gradient(180deg,
        var(--cyan) 0 14%, var(--cream) 14% 18%, var(--yellow) 18% 40%,
        var(--orange) 40% 62%, var(--pink) 62% 84%, var(--magenta) 84% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(4px 4px 0 var(--navy)) drop-shadow(0 0 26px rgba(255, 61, 139, 0.45));
    animation: breathe 7s ease-in-out infinite;
    user-select: none;
}

@keyframes breathe {
    0%, 100% { opacity: 1; filter: drop-shadow(4px 4px 0 var(--navy)) drop-shadow(0 0 26px rgba(255, 61, 139, 0.45)); }
    50% { opacity: .85; filter: drop-shadow(4px 4px 0 var(--navy)) drop-shadow(0 0 52px rgba(255, 61, 139, 0.7)); }
}

.hero h1 .line1 { display: block; }

.hero-tagline {
    font-weight: 700;
    font-size: clamp(0.75rem, 2vw, 1.2rem);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 0 2px 0 var(--navy);
}

.hero-tagline .spark,
.spark {
    color: var(--cyan);
    text-shadow: 0 2px 0 var(--navy), 0 0 12px rgba(69, 224, 220, 0.7);
}

.hero-date-badge {
    display: inline-block;
    font-family: 'Bungee', cursive;
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    color: var(--navy);
    background: linear-gradient(180deg, var(--yellow), var(--orange));
    padding: 0.35em 0.9em;
    border: 4px solid var(--cream);
    border-radius: 18px;
    transform: rotate(2deg);
    box-shadow: 0 8px 0 rgba(13, 13, 43, 0.55), 0 0 30px rgba(255, 210, 63, 0.35);
}

.hero-date-badge .dates {
    color: var(--navy);
    font-family: inherit;
    font-size: inherit;
}

.hero-date-badge .sep { display: none; }

.hero-location {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1.3rem, 4vw, 2.5rem);
    color: var(--cream);
    text-shadow: 0 3px 0 var(--magenta), 0 0 22px rgba(255, 61, 139, 0.55);
    transform: rotate(-2deg);
}

/* ---- COUNTDOWN ---- */
.countdown {
    display: flex;
    gap: clamp(0.6rem, 1.5vw, 1.4rem);
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.countdown-item {
    background: rgba(13, 13, 43, 0.72);
    border: clamp(3px, 0.3vw, 6px) solid var(--cyan);
    border-radius: clamp(12px, 1.2vw, 20px);
    padding: clamp(0.5rem, 1.2vh, 1rem) clamp(0.7rem, 1.5vw, 1.5rem);
    min-width: clamp(4rem, 9vw, 7rem);
    text-align: center;
    box-shadow: 0 0 28px rgba(69, 224, 220, 0.45), inset 0 0 18px rgba(69, 224, 220, 0.14);
}

.countdown-item .number {
    font-family: 'Bungee', cursive;
    font-size: clamp(1.5rem, 5vw, 3rem);
    line-height: 1.05;
    color: var(--cyan);
    text-shadow: 0 0 22px rgba(69, 224, 220, 0.8);
    display: block;
    font-variant-numeric: tabular-nums;
}

.countdown-item .label {
    font-size: clamp(0.55rem, 1.2vw, 0.8rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.85;
}

/* ---- STATS BAR ---- */
.stats-bar {
    display: flex;
    gap: 3rem;
    justify-content: center;
    padding: 2rem 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.stat-item { text-align: center; }

.stat-item .value {
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
    color: var(--cyan);
    text-shadow: 0 0 18px rgba(69, 224, 220, 0.6);
}

.stat-item .label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.7;
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.page-title {
    font-family: 'Bungee', cursive;
    font-size: clamp(1.8rem, 5vw, 3rem);
    text-align: center;
    color: var(--cream);
    text-shadow: 3px 3px 0 var(--navy), 0 0 20px rgba(255, 61, 139, 0.4);
    margin-bottom: 2rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Bungee', cursive;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
    background: linear-gradient(180deg, var(--yellow), var(--orange));
    color: var(--navy);
    border: 3px solid var(--cream);
    box-shadow: 0 6px 0 rgba(13, 13, 43, 0.5), 0 0 20px rgba(255, 210, 63, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 0 rgba(13, 13, 43, 0.5), 0 0 30px rgba(255, 210, 63, 0.5);
}

.btn-secondary {
    background: rgba(13, 13, 43, 0.7);
    color: var(--cyan);
    border: 3px solid var(--cyan);
    box-shadow: 0 0 20px rgba(69, 224, 220, 0.3);
}

.btn-outline {
    background: rgba(13, 13, 43, 0.5);
    color: var(--cyan);
    border: 3px solid var(--cyan);
    box-shadow: 0 0 14px rgba(69, 224, 220, 0.25);
}

.btn-outline:hover {
    box-shadow: 0 0 28px rgba(69, 224, 220, 0.5);
    background: rgba(69, 224, 220, 0.08);
}

/* ---- CARDS ---- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.card {
    background: rgba(13, 13, 43, 0.75);
    border: 2px solid var(--pink);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.35s ease;
    box-shadow: 0 0 20px rgba(255, 61, 139, 0.15);
}

.card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(69, 224, 220, 0.3);
}

.card h3 {
    font-family: 'Bungee', cursive;
    color: var(--cream);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 var(--magenta), 0 0 14px rgba(214, 37, 156, 0.3);
}

.card p {
    color: rgba(253, 243, 227, 0.8);
    font-size: 0.88rem;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.75rem;
}

.badge-open { background: rgba(69, 224, 220, 0.15); color: var(--cyan); border: 1px solid rgba(69, 224, 220, 0.4); }
.badge-in-progress { background: rgba(255, 210, 63, 0.15); color: var(--yellow); border: 1px solid rgba(255, 210, 63, 0.4); }
.badge-completed { background: rgba(31, 185, 176, 0.2); color: var(--teal); border: 1px solid rgba(31, 185, 176, 0.4); }

/* ---- FORMS ---- */
.form-container {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(13, 13, 43, 0.8);
    border: 3px solid var(--pink);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 0 40px rgba(255, 61, 139, 0.2), inset 0 0 20px rgba(255, 61, 139, 0.05);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-family: 'Bungee', cursive;
    font-size: 0.65rem;
    color: var(--cyan);
    letter-spacing: 0.14em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(69, 224, 220, 0.4);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(13, 13, 43, 0.6);
    border: 2px solid rgba(69, 224, 220, 0.25);
    border-radius: 10px;
    color: var(--cream);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 14px rgba(69, 224, 220, 0.3), inset 0 0 8px rgba(69, 224, 220, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(253, 243, 227, 0.3); }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-group select { cursor: pointer; }

/* ---- SEARCH BAR ---- */
.search-bar { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }

.search-bar input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(13, 13, 43, 0.6);
    border: 2px solid rgba(69, 224, 220, 0.25);
    border-radius: 10px;
    color: var(--cream);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 14px rgba(69, 224, 220, 0.3);
}

/* ---- TIMELINE ---- */
.timeline {
    position: relative;
    padding-left: 2.5rem;
    max-width: 750px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan), var(--pink), var(--magenta), var(--orange));
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(69, 224, 220, 0.3);
}

.timeline-item {
    position: relative;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    background: rgba(13, 13, 43, 0.75);
    border: 2px solid rgba(255, 61, 139, 0.2);
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 61, 139, 0.1);
}

.timeline-item:hover {
    border-color: var(--cyan);
    transform: translateX(6px);
    box-shadow: 0 0 25px rgba(69, 224, 220, 0.2);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.95rem; top: 1.6rem;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--cyan);
    border: 3px solid var(--pink);
    box-shadow: 0 0 12px rgba(69, 224, 220, 0.6);
}

.timeline-item .time {
    font-family: 'Bungee', cursive;
    font-size: 0.6rem;
    color: var(--cyan);
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(69, 224, 220, 0.5);
}

.timeline-item h3 {
    font-family: 'Bungee', cursive;
    color: var(--cream);
    margin: 0.2rem 0 0.3rem;
    font-size: 0.95rem;
    text-shadow: 2px 2px 0 var(--magenta), 0 0 12px rgba(214, 37, 156, 0.3);
}

.timeline-item p {
    color: rgba(253, 243, 227, 0.75);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ---- TOAST ---- */
.toast {
    position: fixed;
    bottom: 2rem; right: 2rem;
    padding: 0.9rem 1.5rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 200;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show { transform: translateY(0); opacity: 1; }

.toast-success {
    background: rgba(13, 13, 43, 0.85);
    border: 2px solid var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(69, 224, 220, 0.4);
}

.toast-error {
    background: rgba(13, 13, 43, 0.85);
    border: 2px solid var(--pink);
    color: var(--pink);
    box-shadow: 0 0 20px rgba(255, 61, 139, 0.4);
}

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 3rem; }
.empty-state h3 { font-family: 'Bungee', cursive; color: var(--cyan); font-size: 1.1rem; margin-bottom: 0.5rem; text-shadow: 0 0 12px rgba(69, 224, 220, 0.5); }
.empty-state p { color: rgba(253, 243, 227, 0.5); }

/* ---- MODAL ---- */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); z-index: 150; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal { background: var(--navy); border: 3px solid var(--pink); border-radius: 20px; padding: 2rem; max-width: 500px; width: 90%; box-shadow: 0 0 40px rgba(255, 61, 139, 0.3); }
.modal h2 { font-family: 'Bungee', cursive; color: var(--cyan); margin-bottom: 1.5rem; }

/* ---- FLOATING PARTICLES ---- */
.tropical-particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; opacity: 0; animation: particleFloat linear infinite; }
.particle-1 { width: 40px; left: 10%; animation-duration: 22s; }
.particle-2 { width: 28px; left: 55%; animation-duration: 28s; animation-delay: 6s; }
.particle-3 { width: 35px; left: 80%; animation-duration: 24s; animation-delay: 12s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    8% { opacity: 0.5; }
    92% { opacity: 0.5; }
    100% { transform: translateY(-10vh) rotate(25deg); opacity: 0; }
}

/* ---- MOBILE NAV HAMBURGER ---- */
.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    font-size: 1.4rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero { padding: 4rem 1.5rem 2rem; min-height: auto; }
    .hero h1 { font-size: 2.8rem; }
    .hero-label { font-size: 1.2rem; }
    .hero-tagline { font-size: 0.65rem; letter-spacing: 0.2em; }
    .hero-date-badge { font-size: 1.1rem; padding: 0.3em 0.7em; }
    .hero-location { font-size: 1.2rem; }
    .sun-wrap { width: 55vmin; height: 55vmin; bottom: 20%; }
    .palm { display: none; }

    .nav {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        padding: 0.6rem 1rem;
    }

    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.2rem;
        padding-top: 0.5rem;
    }

    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.6rem 1rem; font-size: 0.9rem; text-align: center; }

    .countdown { gap: 0.5rem; }
    .countdown-item { min-width: 3.5rem; padding: 0.4rem 0.5rem; }
    .countdown-item .number { font-size: 1.3rem; }

    .card-grid { grid-template-columns: 1fr; }
    .stats-bar { gap: 1.5rem; }
    .stat-item .value { font-size: 1.8rem; }
    .form-container { padding: 1.25rem; margin: 0 0.5rem; }
    .page-title { font-size: 1.6rem; }
    .container { padding: 1rem; }

    .btn { display: block; width: 100%; text-align: center; margin-bottom: 0.5rem; }

    .timeline { padding-left: 2rem; }
    .timeline-item { padding: 1rem; }
    .timeline-item::before { left: -2.45rem; width: 10px; height: 10px; }

    .grid-floor { height: 25vh; }
    .waves { height: 12vh; min-height: 60px; }

    .admin-table { font-size: 0.75rem; }
    .admin-table th, .admin-table td { padding: 0.4rem; }

    .search-bar { flex-direction: column; }
}
