/* =========================================
   GLOBAL
   ========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background-color: transparent;
    padding-top: 70px;
}

/* =========================================
   MARGIN BACKGROUND VIDEO
   ========================================= */

.margin-video {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    overflow: hidden;

    z-index: -1;

    background-color: black;
}


.margin-video video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.35;
}

/* =========================================
   LOADING SCREEN
   ========================================= */

#loading-screen {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: black;

    z-index: 9999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


/* LOADING CONTENT */

.loading-content {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 260px;
}


/* LOADING ICON */

.loading-icon {
    display: block;

    width: 75px;
    height: 75px;

    object-fit: contain;

    animation: loading-spin 2s linear infinite;
}


/* ROTATION */

@keyframes loading-spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* LOADING BAR */

.loading-bar {
    width: 220px;
    height: 2px;

    margin-top: 35px;

    background-color: #333;

    overflow: hidden;
}


/* PROGRESS */

.loading-progress {
    width: 0%;
    height: 100%;

    background-color: white;

    transition: width 0.2s ease;
}


/* PERCENTAGE */

.loading-percentage {
    margin-top: 15px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    letter-spacing: 2px;

    color: white;
}


/* LOADING COMPLETE */

#loading-screen.loaded {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


/* =========================================
   TOP HEADER
   ========================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 70px;

    box-sizing: border-box;

    display: flex;
    align-items: center;

    padding: 0 20px;

    background-color: rgba(0, 0, 0, 0.65);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 1000;
}


/* =========================================
   BAND ICON
   ========================================= */

.band-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    text-decoration: none;
}

.band-icon img {
    display: block;

    width: 45px;
    height: 45px;

    object-fit: contain;
}


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

.site-nav {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 28px;
}


/* NAVIGATION LINKS */

.site-nav a {
    color: white;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 1px;

    white-space: nowrap;

    transition: color 0.2s ease;
}


/* NAVIGATION HOVER */

.site-nav a:hover {
    color: #A94350;
}


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

.social-links {
    position: absolute;

    top: 50%;
    right: 30px;

    transform: translateY(-50%);

    display: flex;

    align-items: center;

    gap: 12px;
}


.social-links a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    margin: 0;
    padding: 0;

    text-decoration: none;
}


.social-links img {
    display: block;

    width: 30px;
    height: 30px;

    object-fit: contain;

    filter:
        brightness(0)
        saturate(100%)
        invert(31%)
        sepia(25%)
        saturate(1489%)
        hue-rotate(310deg)
        brightness(85%)
        contrast(87%);

    transition:
        opacity 0.2s ease;
}


/* SOCIAL ICON HOVER */

.social-links a:hover img {
    opacity: 0.6;
}


/* =========================================
   MOBILE ELEMENTS HIDDEN ON DESKTOP
   ========================================= */

.menu-button,
.mobile-menu,
.mobile-social-links {
    display: none;
}


/* =========================================
   HERO VIDEO
   ========================================= */

.hero-video {
    position: relative;

    width: 100%;
    height: calc(100vh - 70px);

    margin-bottom: 50px;

    overflow: hidden;
}


/* HERO VIDEO */

.hero-video-background {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}


/* HERO PNG OVERLAY */

.hero-video-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0.95;

    z-index: 2;

    pointer-events: none;
}


/* =========================================
   MUSIC SECTION
   ========================================= */

.music-section {
    display: flex;

    flex-direction: row;

    flex-wrap: nowrap;

    align-items: center;

    width: 86%;
    margin-left: 7%;
    margin-right: 7%;
    height: 350px;
    
    margin-bottom: 50px;

    box-sizing: border-box;

    padding: 0 5% 0 0;

    background-color: black;

    color: white;
}


/* =========================================
   MUSIC ARTWORK
   ========================================= */

.music-artwork {
    position: relative;

    flex: 0 0 350px;

    width: 350px;
    height: 350px;

    margin: 0;

    overflow: hidden;

    cursor: pointer;
}


.music-artwork img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================
   MUSIC HOVER VIDEO
   ========================================= */

.music-hover-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.3s ease;
}


/* VIDEO VISIBLE ON HOVER */

.music-artwork.video-hovered .music-hover-video {
    opacity: 1;
}


/* =========================================
   LISTEN AREA
   ========================================= */

.music-listen {
    flex: 1;

    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 0;
}


/* LISTEN BUTTON */

.music-listen a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: auto;

    min-width: 320px;

    height: 90px;

    padding: 0 35px;

    box-sizing: border-box;

    background-color: black;

    border: 1px solid #444;

    color: white;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 18px;

    font-weight: 500;

    letter-spacing: 2px;

    text-align: center;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


/* LISTEN BUTTON HOVER */

.music-listen a:hover {
    background-color: white;

    color: black;
}


/* =========================================
   TOUR SECTION
   ========================================= */

.tour-section {
    box-sizing: border-box;

    width: 86%;
    margin-left: 7%;
    margin-right: 7%;

    padding: 70px 5%;

    margin-bottom: 50px;

    background-color: white;
    color: black;
}


.tour-section h1 {
    margin: 0 0 50px 0;

    font-family: Arial, sans-serif;

    font-size: 40px;

    font-weight: normal;

    letter-spacing: 2px;
}


/* =========================================
   EVENT ROW
   ========================================= */

.event-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 25px 0;

    border-bottom: 1px solid #444;
}


/* EVENT INFORMATION */

.event-info {
    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;

    flex: 1;
}


/* DATE */

.event-date {
    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: normal;

    letter-spacing: 1px;
}


/* VENUE / CITY */

.event-venue {
    font-family: Arial, sans-serif;

    font-size: 20px;

    font-weight: 500;

    letter-spacing: 1px;
}


/* EVENT DETAILS */

.event-details {
    margin-top: 2px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: normal;

    letter-spacing: 1px;

    color: #999;
}


/* CANCELLED EVENT */

.event-info.cancelled {
    text-decoration: line-through;

    color: #999;
}


/* =========================================
   TICKET BUTTON
   ========================================= */

.ticket-button {
    flex-shrink: 0;

    margin-left: 40px;

    padding: 10px 20px;

    font-family: Arial, sans-serif;

    font-size: 18px;

    letter-spacing: 1px;

    color: black;

    text-decoration: none;

    border: 1px solid black;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


/* NORMAL TICKET HOVER */

.ticket-button:hover {
    background-color: black;

    color: white;
}


/* CANCELLED TICKET */

.cancelled-ticket {
    color: #999;

    border-color: #999;

    cursor: default;
}


/* NO HOVER EFFECT ON CANCELLED TICKET */

.cancelled-ticket:hover {
    background-color: transparent;

    color: #999;
}


/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-section {
    box-sizing: border-box;

    width: 86%;

    margin: 0 7%;

    padding: 100px 5%;
  
  	margin-bottom: 50px;

    background-color: black;

    color: white;

    text-align: center;
}


.contact-section h1 {
    margin: 0 0 40px 0;

    font-family: Arial, sans-serif;

    font-size: 40px;

    font-weight: normal;

    letter-spacing: 2px;
}


/* CONTACT EMAIL */

.contact-email {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 30px;

    background-color: transparent;

    border: 1px solid white;

    color: white;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 24px;

    font-weight: 500;

    letter-spacing: 2px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


/* CONTACT EMAIL HOVER */

.contact-email:hover {
    background-color: #A94350;

    border-color: #A94350;

    color: white;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {


    /* =====================================
       MOBILE HEADER
       ===================================== */

    .site-nav {
        display: none !important;
    }

    .social-links {
        display: none !important;
    }


    /* =====================================
       MOBILE HAMBURGER
       ===================================== */

    .menu-button {
        display: flex !important;

        position: absolute;

        top: 50%;
        right: 20px;

        transform: translateY(-50%);

        align-items: center;
        justify-content: center;

        width: 45px;
        height: 45px;

        margin: 0;
        padding: 0;

        background: transparent;

        border: none;

        color: white;

        font-size: 28px;

        line-height: 1;

        cursor: pointer;

        z-index: 1002;
    }


    /* =====================================
       MOBILE MENU
       ===================================== */

    .mobile-menu {
        display: none !important;

        position: absolute;

        top: 70px;
        right: 20px;

        width: 220px;

        box-sizing: border-box;

        padding: 10px 0 15px 0;

        margin: 0;

        background-color: rgba(0, 0, 0, 0.90);

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        z-index: 1001;

        flex-direction: column;

        align-items: stretch;
    }


    /* OPEN MENU */

    .mobile-menu.menu-open {
        display: flex !important;
    }


    /* =====================================
       MOBILE NAVIGATION LINKS
       ===================================== */

    .mobile-menu > a {
        display: block !important;

        position: static !important;

        width: 100% !important;

        height: auto !important;

        flex: 0 0 auto !important;

        box-sizing: border-box;

        margin: 0 !important;

        padding: 15px 20px !important;

        background: transparent;

        color: white;

        border: none;

        text-decoration: none;

        font-family: Arial, sans-serif;

        font-size: 13px;

        font-weight: 500;

        letter-spacing: 1px;

        line-height: normal;

        white-space: nowrap;
    }


    /* MOBILE LINK HOVER */

    .mobile-menu > a:hover {
        background-color: white;

        color: black;
    }


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

    .mobile-menu > .mobile-social-links {
        position: static !important;

        display: flex !important;

        flex: 0 0 auto !important;

        flex-direction: row !important;

        align-items: center !important;

        justify-content: center !important;

        width: 100% !important;

        height: auto !important;

        box-sizing: border-box;

        margin: 10px 0 0 0 !important;

        padding: 15px 10px 5px 10px !important;

        border-top: 1px solid #444;

        background: transparent;

        gap: 14px;
    }


    /* SOCIAL ICON LINKS */

    .mobile-menu > .mobile-social-links > a {
        position: static !important;

        display: flex !important;

        flex: 0 0 35px !important;

        align-items: center !important;

        justify-content: center !important;

        width: 35px !important;

        min-width: 35px !important;

        max-width: 35px !important;

        height: 35px !important;

        min-height: 35px !important;

        max-height: 35px !important;

        margin: 0 !important;

        padding: 0 !important;

        background: transparent !important;

        border: none !important;

        text-decoration: none;

        line-height: 1;
    }


    /* SOCIAL ICON IMAGES */

    .mobile-menu > .mobile-social-links > a > img {
        position: static !important;

        display: block !important;

        width: 25px !important;

        height: 25px !important;

        min-width: 25px !important;

        max-width: 25px !important;

        min-height: 25px !important;

        max-height: 25px !important;

        margin: 0 !important;

        padding: 0 !important;

        object-fit: contain;

        filter:
            brightness(0)
            saturate(100%)
            invert(31%)
            sepia(25%)
            saturate(1489%)
            hue-rotate(310deg)
            brightness(85%)
            contrast(87%);

        transition: opacity 0.2s ease;
    }


    .mobile-menu > .mobile-social-links > a:hover {
        background-color: transparent !important;
    }


    .mobile-menu > .mobile-social-links > a:hover img {
        opacity: 0.6;
    }


    /* =====================================
       MOBILE MUSIC
       ===================================== */

    .music-section {
        flex-direction: column;

        height: auto;

        padding: 0 20px 60px 20px;
    }


    .music-artwork {
        width: 100%;

        height: auto;

        flex: none;
    }


    .music-artwork img,
    .music-hover-video {
        width: 100%;

        height: auto;

        aspect-ratio: 1 / 1;

        object-fit: cover;
    }


    .music-listen {
        width: 100%;

        min-height: 180px;
    }


    .music-listen a {
        width: fit-content;

        min-width: 260px;

        max-width: 100%;

        height: 90px;

        padding: 0 25px;

        font-size: 16px;

        white-space: nowrap;
    }


    /* =====================================
       MOBILE TOUR
       ===================================== */

    .tour-section {
        padding: 50px 20px;
    }


    .tour-section h1 {
        font-size: 30px;

        margin-bottom: 30px;
    }


    .event-row {
        align-items: flex-start;

        gap: 20px;
    }


    .event-info {
        min-width: 0;

        flex: 1;
    }


    .event-venue {
        font-size: 16px;

        line-height: 1.3;
    }


    .event-date {
        font-size: 12px;
    }


    .event-details {
        font-size: 12px;

        line-height: 1.4;
    }


    .ticket-button {
        margin-left: 10px;

        padding: 8px 12px;

        font-size: 14px;
    }


    /* =====================================
       MOBILE CONTACT
       ===================================== */

    .contact-section {
        width: calc(100% - 40px);

        margin: 0 20px;

        padding: 60px 20px;
    }


    .contact-section h1 {
        font-size: 30px;

        margin-bottom: 30px;
    }


    .contact-email {
        width: 100%;

        box-sizing: border-box;

        padding: 16px 15px;

        font-size: 18px;

        letter-spacing: 1.5px;

        white-space: nowrap;
    }

}
