﻿/* ===============================
   BASE / RESET
================================== */

html,
body {
    margin: 0;
    padding: 0;
    background-color: #1C1C1C;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

/* ===============================
   SPLASH PAGE (default.aspx)
================================== */

.splash-page {
    min-height: 100vh;
    box-sizing: border-box;
    padding: 32px 16px;
    text-align: center;
}

.splash-link {
    display: block;
    width: 681px;
    max-width: min(calc(100vw - 40px), calc((100vh - 120px) * (681 / 951)));
    margin: 0 auto;
    cursor: pointer;
    text-decoration: none;
}

.splash-image {
    position: relative;
    width: 100%;
    aspect-ratio: 681 / 951;
    border: 12px outset #000000;
    box-sizing: border-box;
    background-image: url('../images/sctpdark.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
}

.contact-link {
    display: inline-block;
    margin-top: 24px;
    color: #f0c040;
    text-decoration: none;
    font-size: clamp(1.2rem, 4vw, 2rem);
}

    .contact-link:hover {
        text-decoration: underline;
    }

@media screen and (max-width: 480px) {
    .splash-page {
        padding: 20px 10px;
    }

    .splash-link {
        max-width: calc(100vw - 24px);
    }

    .splash-image {
        border-width: 8px;
    }
}

/* subtle torpedo dot */
.torpedo-awake {
    position: absolute;
    left: 11.95%;
    bottom: 14.20%;
    width: 5.3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,250,235,.95) 8%, rgba(195,45,35,.82) 22%, rgba(90,5,5,.55) 42%, rgba(0,0,0,0) 72%);
    mix-blend-mode: screen;
    filter: blur(1px);
    animation: torpedoAwake 1.5s ease-in-out infinite;
}

@keyframes torpedoAwake {
    0% {
        opacity: 0;
        transform: scale(.55);
        filter: blur(1.5px) brightness(.45);
    }

    55% {
        opacity: .28;
        transform: scale(.82);
        filter: blur(.9px) brightness(1);
    }

    88% {
        opacity: .82;
        transform: scale(.98);
        filter: blur(.35px) brightness(2.8);
    }

    94% {
        opacity: 1;
        transform: scale(1);
        filter: blur(.15px) brightness(5.2);
    }

    100% {
        opacity: 0;
        transform: scale(1.03);
        filter: blur(.7px) brightness(6.5);
    }
}

/* click shockwave */
.shockwave {
    position: fixed;
    left: 11.95%;
    bottom: 14.20%;
    width: 5.3%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    border: 2px solid rgba(232,183,74,.95);
    box-shadow: 0 0 12px rgba(232,183,74,.65), 0 0 30px rgba(232,183,74,.30);
    transform: scale(.35);
    z-index: 999;
}

.blast-flash {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 998;
    background: radial-gradient(circle at 13% 86%, rgba(255,255,255,1) 0%, rgba(232,183,74,.96) 32%, rgba(232,80,40,.95) 68%, rgba(140,15,10,.88) 98%, rgba(20,0,0,.85) 100%);
}

.splash-link.launching .splash-image {
    animation: imageLaunch .63s ease-in forwards;
}

.splash-link.launching .shockwave {
    animation: shockwaveBlast .5s ease-out forwards;
}

.splash-link.launching .blast-flash {
    animation: blastFlash .65s ease-out forwards;
}

.splash-link.launching .torpedo-awake {
    animation: none;
    opacity: 1;
}

@keyframes shockwaveBlast {
    0% {
        opacity: .95;
        transform: scale(.35);
    }

    100% {
        opacity: 0;
        transform: scale(24);
    }
}

@keyframes blastFlash {
    0% {
        opacity: 0;
    }

    45% {
        opacity: .15;
    }

    72% {
        opacity: .6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes imageBrighten {
    0% {
        filter: brightness(1);
    }

    35% {
        filter: brightness(1.08);
    }

    65% {
        filter: brightness(1.22);
    }

    100% {
        filter: brightness(1.45);
    }
}

.surface-prompt {
    position: absolute;
    bottom: 5%;
    left: 65%;
    transform: translateX(-50%);
    color: #f0c040;
    font-family: Georgia, serif;
    font-size: clamp(1rem, 4vw, 1.6rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0;
    animation: surfaceFadeIn 0.5s ease-in forwards;
    animation-delay: 2.5s;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(232,183,74,.8), 0 0 30px rgba(232,183,74,.4);
}

@keyframes surfaceFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ===============================
   SHARED INNER-PAGE LAYOUT
   (About.aspx, Aboutv2.aspx, SetList.aspx)
================================== */

.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #d0d0d0;
    font-family: Georgia, serif;
    box-sizing: border-box;
}

.back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: #f0c040;
    text-decoration: none;
    font-size: 0.95rem;
}

    .back-link:hover {
        text-decoration: underline;
    }

.page-wrap h1 {
    color: #f0c040;
    font-size: 2.2rem;
    margin: 0 0 10px 0;
}

.page-wrap h2 {
    color: #f0c040;
    font-size: 1.4rem;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
    margin-top: 36px;
}

.page-wrap .intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

/* ===============================
   HEADER BLOCK (About page photo + intro)
================================== */

.header-block {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 36px;
}

    .header-block img {
        width: 180px;
        max-width: 40%;
        border: 6px outset #000000;
        box-sizing: border-box;
        opacity: 0.85;
        flex-shrink: 0;
        pointer-events: none;
    }

.header-text h1 {
    color: #f0c040;
    font-size: 2.2rem;
    margin: 0 0 10px 0;
}

.header-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

/* ===============================
   BAND MEMBER PANELS
================================== */

.members {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.member {
    background: #252525;
    border: 6px outset #000000;
    border-radius: 6px;
    padding: 14px 18px;
    box-sizing: border-box;
    flex: 1 1 180px;
}

    .member span {
        display: block;
        color: #f0c040;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 4px;
    }

/* ===============================
   VIDEO BLOCK (Aboutv2.aspx)
================================== */

.video-block {
    display: block;
    width: 100%;
    text-align: center;
}

.video-frame {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 8px auto 28px;
    border: 6px outset #000000;
    box-sizing: border-box;
    background-color: #000000;
    line-height: 0;
}

.video-wrap {
    position: relative;
    cursor: pointer;
}

    .video-wrap video {
        display: block;
        width: 100%;
        height: auto;
    }

.video-hint {
    position: absolute;
    bottom: 14px;
    right: 16px;
    color: #f0c040;
    font-family: Georgia, serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.55);
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 1.2s ease;
}

    .video-hint.video-hint-hidden {
        opacity: 0;
    }

/* ===============================
   INFO BOX / 2x2 PANEL GRID
   (matches member/photo framing)
================================== */

.info-outer {
    border: 6px outset #000000;
    background-color: #1C1C1C;
    padding: 16px;
    box-sizing: border-box;
    margin-top: 8px;
    clear: both;
}

.info-box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0;
    box-sizing: border-box;
}

.info-panel {
    background-color: #252525;
    border: 6px outset #000000;
    border-radius: 6px;
    padding: 20px;
    box-sizing: border-box;
    color: #d0d0d0;
    text-align: left;
}

    .info-panel h3 {
        margin-top: 0;
        color: #f0c040;
        font-family: Georgia, serif;
        letter-spacing: 0.05em;
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        border-bottom: 1px solid #333;
        padding-bottom: 8px;
    }

    .info-panel p {
        margin: 10px 0 0;
        font-size: clamp(0.9rem, 2vw, 1.05rem);
        line-height: 1.5;
    }

/* ===============================
   SHOW ENTRY (indented date/venue)
================================== */

.show-entry {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    color: #d0d0d0;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.5;
}

.show-date {
    color: #f0c040;
    font-weight: bold;
    flex-shrink: 0;
    white-space: nowrap;
}

.show-venue {
    flex: 1;
}

/* ===============================
   SET LIST TABLE (SetList.aspx)
================================== */

.set-grid {
    width: 100%;
    border-collapse: collapse;
}

    .set-grid td {
        padding: 10px 8px;
        border-bottom: 1px solid #333;
    }

    .set-grid tr:last-child td {
        border-bottom: none;
    }

    .set-grid .song-title {
        color: #f0c040;
        font-weight: bold;
    }

    .set-grid .song-artist {
        color: #999;
    }

/* ===============================
   CONTACT / BOOKING LINE
================================== */

.contact-line {
    display: block;
    width: 100%;
    margin-top: 40px;
    text-align: center;
    clear: both;
}

.contact-label {
    display: block;
    color: #f0c040;
    font-family: Georgia, serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.member-email {
    color: #f0c040;
    text-decoration: none;
    font-family: Georgia, serif;
    font-size: 1.1rem;
}

    .member-email:hover {
        text-decoration: underline;
    }

/* ===============================
   UTILITIES
================================== */

.ipa {
    font-family: "Noto Sans", "Segoe UI Symbol", "Lucida Sans Unicode", sans-serif;
    font-style: italic;
}

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

@media (max-width: 600px) {
    .info-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .header-block {
        flex-direction: column;
        align-items: center;
    }

        .header-block img {
            width: 60%;
            max-width: 260px;
        }

    .header-text h1 {
        font-size: 1.6rem;
        text-align: center;
    }

    .header-text p {
        font-size: 0.97rem;
    }
}

@media (max-width: 480px) {
    .wordcloud-img {
        display: none;
    }
}






.email-pulse-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    border-radius: 50%;
    vertical-align: middle;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,250,235,.95) 8%, rgba(195,45,35,.82) 22%, rgba(90,5,5,.55) 42%, rgba(0,0,0,0) 72%);
    mix-blend-mode: screen;
    animation: emailPulse 3s ease-in-out infinite;
}

@keyframes emailPulse {
    0%, 82% {
        opacity: 0;
        transform: scale(.55);
        filter: blur(1px) brightness(.45);
    }

    90% {
        opacity: .6;
        transform: scale(.85);
        filter: blur(.5px) brightness(1.5);
    }

    96% {
        opacity: 1;
        transform: scale(1);
        filter: blur(.2px) brightness(3);
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
        filter: blur(.6px) brightness(4);
    }
}

