/*
Theme Name: Jackpine Jukebox
Theme URI: https://jackpinejukebox.com
Description: Custom theme for Jackpine Jukebox
Version: 1.0
Author: Jackpine Jukebox
*/

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #fff;
    min-height: 100vh;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: #ea0032; }

/* ---- Layout ---- */
.jpj-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 2.5em 1em 4em;
    text-align: center;
}

/* ---- Logo ---- */
.jpj-logo {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 2.5em;
}

/* ---- BandLab Embed ---- */
.jpj-bandlab {
    margin-bottom: 2em;
}
.jpj-bandlab iframe {
    border: none;
    border-radius: 6px;
    max-width: 100%;
}

/* ---- Calendar ---- */
#jpj-calendar {
    max-width: 800px;
    margin: 2em auto;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 1em;
    text-align: left;
}

/* FullCalendar overrides */
.fc {
    color: #fff;
}
.fc .fc-toolbar-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1em;
    color: #fff;
}
.fc .fc-button {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.3em 0.8em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.fc .fc-button:hover {
    background: rgba(255,255,255,0.25);
}
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background: rgba(234,0,50,0.5);
    border-color: #ea0032;
}
.fc .fc-list-event:hover td {
    background: rgba(255,255,255,0.08);
}
.fc .fc-list-day-cushion {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.fc .fc-list-day-text,
.fc .fc-list-day-side-text {
    color: #fff;
}
.fc .fc-list-day-cushion a {
    color: #fff;
}
.fc .fc-list-event-title a {
    color: #fff;
}
.fc-theme-standard .fc-list {
    border-color: rgba(255,255,255,0.15);
}
.fc-theme-standard td, .fc-theme-standard th {
    border-color: rgba(255,255,255,0.15);
}
.fc .fc-list-empty {
    background: transparent;
    color: rgba(255,255,255,0.6);
}

/* ---- Facebook ---- */
.jpj-facebook {
    margin: 2.5em auto;
    display: flex;
    justify-content: center;
}
.jpj-facebook iframe {
    border-radius: 8px;
    max-width: 100%;
}

/* ---- Instagram (Behold) ---- */
.jpj-instagram {
    margin-top: 2em;
}

/* ---- Responsive ---- */
@media (max-width: 575px) {
    .jpj-bandlab iframe {
        width: 100% !important;
        height: 180px !important;
    }
    .jpj-facebook iframe {
        width: 100% !important;
        height: 400px !important;
    }
}
