/* =====================================================
   SLOWSCANTV STATION PAGE
===================================================== */

*{
    box-sizing:border-box;
}

a{
    color:#00ff55;
    text-decoration:none;
}

a:hover{
    color:#ffffff;
}

/* =====================================================
   PAGE TITLE
===================================================== */

.page-title{
    margin:20px 0 5px;
    text-align:center;
    color:#00ff55;
}

/* =====================================================
   TOP DASHBOARD
===================================================== */

.top-dashboard{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;

    max-width:1200px;
    margin:0 auto 40px;
    padding:0 20px;
}

/* =====================================================
   INFORMATION CARDS
===================================================== */

.info-card{
    min-height:250px;
    padding:20px;

    background:#111;
    border:1px solid #333;
    border-radius:12px;
}

.info-card h1{
    color:#ffffff;
}

.info-card h2{
    margin-top:0;
    padding-bottom:10px;

    color:#00ff55;
    border-bottom:1px solid #333;
}

.info-card h3{
    color:#ddd;
}

.info-card p{
    line-height:1.5;
}

/* =====================================================
   MEMBER PHOTO
===================================================== */

.member-photo{
    display:block;

    width:250px;
    height:250px;

    margin:15px auto;

    object-fit:cover;

    border:3px solid #00ff55;
    border-radius:50%;
}

/* =====================================================
   SHACK PHOTO
===================================================== */

.shack-photo{
    display:block;

    width:100%;
    max-width:350px;

    margin:15px auto 0;

    border:2px solid #00ff55;
    border-radius:12px;
}

/* =====================================================
   FOUNDING MEMBER BADGE
===================================================== */

.member-badge{
    margin-bottom:15px;
    padding:8px;

    background:#b8860b;
    color:#ffffff;

    text-align:center;
    font-weight:bold;

    border-radius:8px;
}

/* =====================================================
   STATION INFORMATION
===================================================== */

.station-list{
    margin:5px 0;
    padding-left:0;

    list-style:none;
}

.station-list li{
    margin:5px 0;
    line-height:1.5;
}

/* =====================================================
   LATEST IMAGE
===================================================== */

.latest-image{
    display:block;

    width:100%;
    max-width:300px;

    margin:15px auto;

    border:1px solid #333;
    border-radius:10px;
}

/* =====================================================
   BAND MENU
===================================================== */

.band-menu{
    margin:25px auto;
    text-align:center;
}

.band-btn{
    display:inline-block;

    margin:8px;
    padding:12px 25px;

    background:#111;
    color:#00ff55;

    border:2px solid #00ff55;
    border-radius:10px;

    font-size:20px;
    font-weight:bold;
    text-decoration:none;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.band-btn:hover{
    background:#00ff55;
    color:#000000;

    transform:translateY(-2px);
}

.band-btn.active{
    background:#00ff55;
    color:#000000;
}

/* =====================================================
   REFRESH BUTTON
===================================================== */

.refresh-images{
    margin:15px 0 25px;
    text-align:center;
}

.refresh-images button{
    padding:10px 20px;

    background:#111;
    color:#00ff55;

    border:2px solid #00ff55;
    border-radius:8px;

    font-size:16px;
    font-weight:bold;

    cursor:pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.refresh-images button:hover{
    background:#00ff55;
    color:#000000;

    transform:translateY(-2px);
}

/* =====================================================
   IMAGE ARCHIVE
===================================================== */

.archive{
    max-width:1200px;
    margin:0 auto;
    padding:20px;
}

.archive-title{
    margin-bottom:25px;

    text-align:center;
    color:#00ff55;
}

.archive-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap:15px;
}

.archive-item{
    overflow:hidden;

    background:#111;
    border:1px solid #333;
    border-radius:10px;

    transition:
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.archive-item:hover{
    border-color:#00ff55;

    transform:translateY(-3px);
    box-shadow:0 0 12px rgba(0,255,85,.2);
}

.archive-item img{
    display:block;

    width:100%;

    cursor:pointer;
}

/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox{
    display:none;

    position:fixed;
    inset:0;
    z-index:999;

    background:rgba(0,0,0,.92);
}

.lightbox-content{
    position:absolute;
    top:50%;
    left:50%;

    transform:translate(-50%, -50%);

    text-align:center;
}

.lightbox-content img{
    max-width:90vw;
    max-height:75vh;

    border-radius:8px;
}

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

@media(max-width:1000px){

    .top-dashboard{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .top-dashboard{
        padding:0 10px;
    }

    .info-card{
        padding:15px;
    }

    .archive{
        padding:10px;
    }

    .archive-grid{
        grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
        gap:10px;
    }

    .member-photo{
        width:200px;
        height:200px;
    }

    .band-btn{
        padding:10px 18px;
        font-size:17px;
    }

}
/* =====================================================
   STATION GALLERY
===================================================== */

.station-gallery {
    width: min(1180px, calc(100% - 32px));
    margin: 35px auto;
    padding: 28px;
    
    background: #111;
    border: 1px solid #303030;
    border-radius: 14px;
}

.gallery-heading {
    margin-bottom: 22px;
}

.station-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.station-gallery-item {
    margin: 0;
    
    overflow: hidden;
    
    background: #181818;
    border: 1px solid #333;
    border-radius: 10px;
}

.station-gallery-item img {
    display: block;
    
    width: 100%;
    height: 240px;
    
    object-fit: cover;
}

.station-gallery-item figcaption {
    padding: 12px 14px;
    
    color: #ddd;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 850px) {
    
    .station-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
}

@media (max-width: 550px) {
    
    .station-gallery {
        width: calc(100% - 20px);
        padding: 18px;
    }
    
    .station-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .station-gallery-item img {
        height: 220px;
    }
    
}