/* ==========================================
   JET LAG MOTEL - Main Stylesheet
   ========================================== */

/* CSS Variables */
:root {
    --neon-cyan: #4df3ff;
    --neon-orange: #ff6b35;
    --neon-pink: #ff3864;
    --neon-yellow: #ffc700;
    --dark-bg: #0a0a1a;
    --glow-cyan: 0 0 8px var(--neon-cyan), 0 0 15px var(--neon-cyan);
    --glow-orange: 0 0 1px var(--neon-orange), 0 0 2px var(--neon-orange), 0 0 20px rgba(255, 107, 53, 0.15);
    --glow-pink: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--dark-bg);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==========================================
   STARFIELD BACKGROUND
   ========================================== */

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Gradient overlay */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(77, 243, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26, 26, 58, 0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Shooting stars */
.shooting-star {
    position: fixed;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #fff, transparent);
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.3);
    animation: shoot 8s infinite linear;
    opacity: 0;
    z-index: 1;
}

.shooting-star:nth-child(2) {
    animation-delay: 3s;
    top: 20%;
    left: 70%;
}

.shooting-star:nth-child(3) {
    animation-delay: 6s;
    top: 40%;
    left: 30%;
}

@keyframes shoot {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    5% {
        opacity: 1;
    }
    20% {
        opacity: 0;
        transform: translateX(300px) translateY(300px);
    }
    100% {
        opacity: 0;
        transform: translateX(300px) translateY(300px);
    }
}

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.95) 0%, transparent 100%);
}

.nav-link {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #888;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.nav-link.active {
    color: var(--neon-cyan);
    border-bottom: 2px solid var(--neon-cyan);
}

/* ==========================================
   MAIN CONTAINER
   ========================================== */

.container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
    text-align: center;
}

/* ==========================================
   LOGO
   ========================================== */

.logo-section {
    margin-bottom: 1rem;
    animation: floatIn 1s ease-out;
}

.logo-section img {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(77, 243, 255, 0.4));
    animation: logoGlow 4s ease-in-out infinite;
}

.logo-small img {
    max-width: 200px;
}

.logo-small a {
    display: inline-block;
}

@keyframes floatIn {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(77, 243, 255, 0.4)); }
    50% { filter: drop-shadow(0 0 50px rgba(77, 243, 255, 0.7)); }
}

/* ==========================================
   TAGLINE & LOCATION
   ========================================== */

.tagline {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    margin-top: 1.5rem;
    text-align: center;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.location {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================
   SINGLE ANNOUNCEMENT
   ========================================== */

.single-announcement {
    margin-top: 3rem;
    text-align: center;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.new-single {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
    text-transform: uppercase;
    background: rgba(255, 56, 100, 0.15);
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--neon-pink);
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {
    0%, 100% { border-color: var(--neon-pink); box-shadow: 0 0 10px rgba(255, 56, 100, 0.3); }
    50% { border-color: var(--neon-orange); box-shadow: 0 0 20px rgba(255, 107, 53, 0.4); }
}

.single-title {
    font-family: 'Bungee Shade', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--neon-orange);
    text-shadow: var(--glow-orange);
    letter-spacing: 0.05em;
    animation: neonFlicker 5s infinite;
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: var(--glow-orange);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.85;
    }
}

.featuring {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: #aaa;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

.featuring span {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 199, 0, 0.5);
}

/* ==========================================
   VIDEO SECTION
   ========================================== */

.video-section {
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 1.1s backwards;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 2px solid rgba(77, 243, 255, 0.3);
    box-shadow: 0 0 30px rgba(77, 243, 255, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================
   CTA BUTTONS
   ========================================== */

.cta-section {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.3s backwards;
}

.cta-button {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(77, 243, 255, 0.5);
}

.cta-button.primary {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: #000;
}

.cta-button.primary:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 30px rgba(77, 243, 255, 0.5);
}

/* ==========================================
   SOCIAL LINKS
   ========================================== */

.social-section {
    margin-top: 4rem;
    text-align: center;
    animation: fadeIn 1s ease-out 1.5s backwards;
}

.social-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: #666;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #888;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-link:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.social-link:hover svg {
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

/* ==========================================
   POPUP MODAL
   ========================================== */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-modal {
    background: linear-gradient(180deg, rgba(26, 26, 58, 0.98) 0%, rgba(10, 10, 30, 0.98) 100%);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 40px rgba(77, 243, 255, 0.3), inset 0 0 60px rgba(77, 243, 255, 0.05);
    max-width: 550px;
    width: 100%;
    padding: 3rem 2rem;
    position: relative;
    text-align: center;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    color: var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-orange);
}

.popup-welcome {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--neon-yellow);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.popup-signup {
    margin-bottom: 2.5rem;
}

.signup-title {
    font-family: 'Bungee Shade', cursive;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(77, 243, 255, 0.4);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.signup-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #aaa;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.signup-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.signup-input {
    flex: 1;
    min-width: 220px;
    padding: 1rem 1.25rem;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(77, 243, 255, 0.5);
    border-radius: 0;
    color: #fff;
    transition: all 0.3s ease;
}

.signup-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(77, 243, 255, 0.4), inset 0 0 20px rgba(77, 243, 255, 0.1);
}

.signup-input::placeholder {
    color: #666;
}

.signup-button {
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    background: var(--neon-orange);
    border: none;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
}

.signup-button:hover {
    background: var(--neon-yellow);
    box-shadow: 0 0 30px rgba(255, 199, 0, 0.6);
    transform: scale(1.02);
}

.signup-note {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #555;
    margin-top: 1rem;
    letter-spacing: 0.1em;
}

.popup-socials {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.popup-socials .social-label {
    margin-bottom: 1rem;
}

.popup-socials .social-links {
    gap: 1.5rem;
}

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

footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.1em;
}

/* ==========================================
   BIO PAGE STYLES
   ========================================== */

.page-content {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Bungee Shade', cursive;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(77, 243, 255, 0.4);
    text-align: center;
    margin-bottom: 2rem;
}

.bio-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--neon-orange);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.members-list {
    display: grid;
    gap: 1rem;
}

.member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--neon-cyan);
}

.member-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #fff;
}

.member-role {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.1em;
}

.member-bio {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--neon-cyan);
    margin-bottom: 2rem;
}

.member-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(77, 243, 255, 0.3);
}

.member-bio .member-name {
    font-family: 'Bungee Shade', cursive;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--neon-cyan);
    text-shadow: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-cyan), 0 0 15px rgba(77, 243, 255, 0.15);
}

.member-bio .member-role {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--neon-orange);
    text-transform: uppercase;
}

.member-photo {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(77, 243, 255, 0.3);
    box-shadow: 0 0 20px rgba(77, 243, 255, 0.1);
}

.member-text p {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1rem;
}

.member-text p:last-child {
    margin-bottom: 0;
}

.contact-info {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #aaa;
    line-height: 1.8;
}

.contact-email {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email:hover {
    text-shadow: var(--glow-cyan);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row > * {
    flex: 1;
}

.form-input {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(77, 243, 255, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(77, 243, 255, 0.2);
}

select.form-input {
    border-color: rgba(77, 243, 255, 0.15);
}

select.form-input:focus {
    border-color: rgba(77, 243, 255, 0.4);
    box-shadow: none;
}

.form-input option {
    background: #0a0a1a;
    color: #fff;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    padding: 1rem 2rem;
    background: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-submit:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 30px rgba(77, 243, 255, 0.5);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

/* ==========================================
   TOUR PAGE STYLES
   ========================================== */

.shows-list {
    display: grid;
    gap: 1rem;
}

.show {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(77, 243, 255, 0.2);
    transition: all 0.3s ease;
}

.show:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(77, 243, 255, 0.2);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding: 0.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--neon-orange);
}

.show-date .month {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--neon-orange);
}

.show-date .day {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.show-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.show-info .venue {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
}

.show-info .city {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: #888;
}

.ticket-button {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: var(--neon-orange);
    color: #000;
    transition: all 0.3s ease;
}

.ticket-button:hover {
    background: var(--neon-yellow);
    box-shadow: 0 0 20px rgba(255, 199, 0, 0.5);
}

.no-shows {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.no-shows p {
    margin: 0;
}

.no-shows-heading {
    font-family: 'Bungee Shade', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.no-shows .cta-button {
    margin-top: 1.5rem;
}

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

@media (max-width: 768px) {
    .container {
        padding: 5rem 1.5rem 2rem;
    }

    .main-nav {
        gap: 1rem;
        padding: 1rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .logo-section img {
        max-width: 280px;
    }

    .logo-small img {
        max-width: 150px;
    }

    .cta-section {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .social-links {
        gap: 1rem;
    }

    .show {
        flex-wrap: wrap;
    }

    .show-info {
        flex: 1 1 100%;
        order: 3;
        margin-top: 0.5rem;
    }

    .ticket-button {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .single-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .member {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
