/* CSS Document */

/*
  ************************ CSS table of content ************************

  1.   ***
  **************************************************************** */

/*------------------------------------------------
1. Language Select Style
2. Preloader
3. Schedule cards
4. Calendar
5. Photo Gallery Lightbox
6. Video Gallery Videobox
7. navbar
8. merch cards
--------------------------------------------------*/
/*------------------------------------------------
1. Language Select Style
--------------------------------------------------*/
.language {
    color: aliceblue;
    /*background-color: #1C589B;*/
    padding: 0px !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
@media (min-width: 767px) {
    .language {
        margin-top:25px;
    }
    .language-select {
        margin-left:25px;
    }
}
@media (max-width: 767px) {
    .language {
        position: absolute;
        top:50px;
        right:10px;
    }
}
/* Container to mimic select size */
.language-select {
    position: relative;
    display: inline-block;
    width: 120px;
    font-family: inherit;
}

/* Selected area */
.language-select .selected {
    display: flex;
    align-items: center;
    padding: 6px 30px 6px 8px;
    /*
    border: 1px solid #ccc;
    background-color: #fff;
    */
    cursor: pointer;
    user-select: none;
    height: 34px;
}

/* Flag in selected */
.language-select .selected img {
    width: 20px;
    height: 14px;
    margin-right: 8px;
}

/* Dropdown arrow (like native) */
.language-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #c4cbf9;
    transform: translateY(-50%);
}

/* Options list */
.language-select .options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: transparent;
    background-image: -moz-linear-gradient(7deg, #081b49 0%, #243a51 100%);
    background-image: -webkit-linear-gradient(7deg, #081b49 0%, #243a51 100%);
    border-radius: 7px;
    /*
    border: 1px solid #ccc;
    background-color: #fff;
    */
    display: none;
    z-index: 1000;
}

/* Each option */
.language-select .options div {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    cursor: pointer;
}

.language-select .options div:hover {
    background-color:rgba(238,238,238,.5);
    border-radius: 7px;
}

.language-select .options img {
    width: 20px;
    height: 14px;
    margin-right: 8px;
}

/* Open state */
.language-select.open .options {
    display: block;
}
/*------------------------------------------------
2. Preloader
--------------------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /*background-image: linear-gradient(7deg, rgb(236, 19, 121) 0%, rgb(108, 0, 146) 100%);*/
  background:linear-gradient(to left, rgb(36,58,81) ,rgb(8,27,73));
  z-index: 99999999;
  overflow: hidden;
}
.preloader svg {
  width: 100%;
  height: 100%;
  visibility: hidden;
}
/*------------------------------------------------
3. Schedule cards
--------------------------------------------------*/
/* MAIN CARD LAYOUT */
.event-card {
    display: flex;              /* forces side-by-side */
    border: 1px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    min-height: 110px;
    transition: .25s;
}

.event-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* LEFT DATE BLOCK */
.event-date {
    width: 90px;
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    text-align: center;
}

/* RIGHT SIDE */
.event-info {
    flex: 1;
    padding: 18px 20px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

/* TEXT */
.event-time {
    font-size: .85rem;
    color: #6c757d;
}

/* DATE STYLE */
.month {
    font-size: 12px;
    opacity: .7;
}

.day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

/* COLORS */
.date-green {
    background: rgba(25,135,84,.12);
    color: #198754;
}
.date-red {
    background: rgba(255,42,45,.12);
    color: #FF2222;
}
.date-blue {
    background: rgba(26,110,240,.12);
    color: #1F7EFF;
}
.date-yellow {
    background: rgba(255,203,24,.12);
    color: #E5B900;
}
/*------------------------------------------------
4. Calendar
--------------------------------------------------*/
.calendar-loader-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    z-index: 10000;
    padding-top: 150px;
}
/*------------------------------------------------
5. Photo - Video Gallery
--------------------------------------------------*/
/*------------------------------------------------
Photo */
.gallery-box {
    margin: 25px 15px;
}
.section-gallery {
    padding: 10px 15px;
}
@media (max-width: 991px) {
    .section-gallery {
        padding: 0px 15px;
    }
    .gallery-box {
        margin: 25px 45px;
    }
}
.section-gallery {
    padding: 0px 15px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;   /* pick ratio */
    overflow: hidden;
    border-radius: 15px;
}
/* image animation */
.gallery-img {
    border-radius: 6px;
    margin: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*box-shadow: 0 4px 10px rgba(0,0,0,.15);*/

    transition: transform .35s ease, box-shadow .35s ease;

    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}
/* pop effect */
.gallery-item:hover .gallery-img {
    transform: translateY(-6px) scale(1.04);
    /*box-shadow: 0 14px 30px rgba(0,0,0,.35);*/
    cursor: pointer;
}
/* caption bar */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    background: rgba(255,255,255,.7);
    /* backdrop-filter: blur(2px); ignored in old browsers but safe */

    padding: 15px 12px;
    text-align: center;

    transition: opacity .3s ease, transform .3s ease;
}
@media (max-width: 767px) {
    .gallery-caption {
        padding-top:8px;
        padding-bottom:0px;
    }
}
/* hide on hover */
.gallery-item:hover .gallery-caption {
    opacity: 0;
    transform: translateYX(10px);
    cursor: pointer;
}
/* play icon */
.image-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 42px;
    color: white;

    width: 70px;
    height: 70px;

    background: rgba(0,0,0,.45);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 3;

    transition: transform .25s ease, background .25s ease, opacity .25s ease;
    opacity:0;
}
.gallery-item:hover .image-play {
    opacity: .2;
    cursor: pointer;
}
/*------------------------------------------------
Video */
.video-gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;   /* pick ratio */
    overflow: hidden;
    border-radius: 15px;
}
/* image animation */
.video-gallery-img {
    border-radius: 6px;
    margin: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* crops nicely */
    /*box-shadow: 0 4px 10px rgba(0,0,0,.15);*/

    transition: transform .35s ease, box-shadow .35s ease;

    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
    
}
/* pop effect */
.video-gallery-item:hover .video-gallery-img {
    transform: translateY(-6px) scale(1.04);
    /*box-shadow: 0 14px 30px rgba(0,0,0,.35);*/
    
    cursor: pointer;
}
/* hide on hover */
.video-gallery-item:hover .gallery-caption {
    opacity: 0;
    transform: translateY(10px);
    cursor: pointer;
}

/* play icon */
.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 42px;
    color: white;

    width: 70px;
    height: 70px;

    background: rgba(0,0,0,.45);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 3;

    transition: transform .25s ease, background .25s ease, opacity .25s ease;
}
.video-gallery-item:hover .video-play {
    opacity: .3;
    cursor: pointer;
}
/*------------------------------------------------
Gallery */

/*

/* text */
.gallery-caption h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.gallery-caption p {
    margin: 0;
    font-size: 12px;
}


.section-padding {
    padding: 30px 15px;
}

.border-box {
    border: 1px solid #ddd;
    border-radius: 8px;
}

.mobile-hidden {
    border-top: 1px solid #ddd;
    padding: 20px;
}

.btn-link-spacing {
    margin: 0 10px;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*------------------------------------------------
5. Lightbox
--------------------------------------------------*/
/* ========================================
   BACKDROP (dark like real lightbox)
======================================== */
.modal-backdrop.in {
    opacity: .95;
}


/* ========================================
   REMOVE BOOTSTRAP WHITE BOX
======================================== */
.lightbox-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.lightbox-dialog {
    width: auto;
    max-width: 95vw;
    margin: 40px auto;
}


/* ========================================
   IMAGE WRAPPER
======================================== */
.lightbox-image-wrap {
    position: relative;
    display: inline-block;
}


/* IMAGE */
#lightboxImage {
    max-height: 85vh;
    
    display: block;
}


/* ========================================
   FOLDED CORNER TRIANGLE
======================================== */
.lightbox-image-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 0;
    height: 0;

    border-top: 70px solid #c9302c;
    border-left: 70px solid transparent;

    z-index: 2;
}


/* ========================================
   CLOSE BUTTON INSIDE FOLD
======================================== */
.lightbox-fold-close {
    position: absolute;
    top: 5px;
    right: 10px;

    background: none;
    border: 0;
    color: #fff;

    font-size: 28px;
    font-weight: bold;
    line-height: 1;

    cursor: pointer;
    z-index: 3;

    padding: 6px;

    transition: transform .2s ease, opacity .2s ease;
}

.lightbox-fold-close:hover {
    transform: scale(1.15);
    opacity: .9;
}


/* ========================================
   CAPTION BAR (black)
======================================== */
.lightbox-caption {
    background: rgba(0,0,0,.9);
    color: #fff;

    padding: 12px 20px;

    border-radius: 0 0 6px 6px;

    width: 100%;
    box-sizing: border-box;
}


.lightbox-caption h4 {
    margin: 0 0 5px;
}

.lightbox-caption p {
    margin: 0;
    font-size: 13px;
}
/* ========================================
   MODAL FADE IN
======================================== */
/* remove slide-down */
.lightbox-modal .modal-dialog {
    transform: translate(0, 0);
    transition: transform .25s ease, opacity .25s ease;
}

/* start slightly smaller */
.lightbox-modal.fade .modal-dialog {
    transform: scale(.92);
    opacity: 0;
}

/* pop to center */
.lightbox-modal.in .modal-dialog {
    transform: scale(1);
    opacity: 1;
}
/*------------------------------------------------
6. Videobox
--------------------------------------------------*/
/* ========================================
   BACKDROP (dark like real lightbox)
======================================== */
.modal-backdrop.in {
    opacity: .95;
}


/* ========================================
   REMOVE BOOTSTRAP WHITE BOX
======================================== */
.videobox-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.videobox-dialog {
    width: auto;
    max-width: 95vw;
    margin: 40px auto;
}


/* ========================================
   IMAGE WRAPPER
======================================== */
.videobox-image-wrap {
    position: relative;
    display: inline-block;
}


/* IMAGE */
#videoboxImage {
    max-height: 85vh;
    
    display: block;
}


/* ========================================
   FOLDED CORNER TRIANGLE
======================================== */
.videobox-image-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 0;
    height: 0;

    border-top: 70px solid #c9302c;
    border-left: 70px solid transparent;

    z-index: 2;
}


/* ========================================
   CLOSE BUTTON INSIDE FOLD
======================================== */
.videobox-fold-close {
    position: absolute;
    top: 5px;
    right: 10px;

    background: none;
    border: 0;
    color: #fff;

    font-size: 28px;
    font-weight: bold;
    line-height: 1;

    cursor: pointer;
    z-index: 3;

    padding: 6px;

    transition: transform .2s ease, opacity .2s ease;
}

.videobox-fold-close:hover {
    transform: scale(1.15);
    opacity: .9;
}


/* ========================================
   CAPTION BAR (black)
======================================== */
.videobox-caption {
    background: rgba(0,0,0,.9);
    color: #fff;

    padding: 12px 20px;

    border-radius: 0 0 6px 6px;

    width: 100%;
    box-sizing: border-box;
}


.videobox-caption h4 {
    margin: 0 0 5px;
}

.videobox-caption p {
    margin: 0;
    font-size: 13px;
}
/* ========================================
   MODAL FADE IN
======================================== */
/* remove slide-down */
.videobox-modal .modal-dialog {
    transform: translate(0, 0);
    transition: transform .25s ease, opacity .25s ease;
}

/* start slightly smaller */
.videobox-modal.fade .modal-dialog {
    transform: scale(.92);
    opacity: 0;
}

/* pop to center */
.videobox-modal.in .modal-dialog {
    transform: scale(1);
    opacity: 1;
}
/*------------------------------------------------
7. Navbar
--------------------------------------------------*/
/* Navbar dropdown background */
#navigation .dropdown-menu {
     border-bottom: 1px solid red !important;
}
@media (min-width: 991px) {
    #navigation .dropdown-menu {
         border-bottom: 1px solid red !important;
         min-width: 120px;
    }
    .navbar .dropdown {
        position: relative;
    }
    .navbar .dropdown-menu {
        background: linear-gradient(7deg, #081b49 0%, #243a51 100%);
        border-radius: 7px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: none;
        margin-top: 0;
        padding-left: 0px;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .navbar .dropdown-menu {
        padding-left: 50px;
    }
}
.navbar .dropdown-menu {
     
    background: linear-gradient(7deg, #081b49 0%, #243a51 100%);
    box-shadow: none;
    margin-top: 0;
}
.navbar .dropdown-menu > li > a {
    color: #c4cbf9;
    transition: transform .18s ease, color .18s ease;
    display: inline-block; /* required for transform to behave nicely */
}
/* hover "popup" */
.navbar .dropdown-menu > li > a:hover,
.navbar .dropdown-menu > li > a:focus {
    transform: translateY(-2px) scale(1.06);
}
/*------------------------------------------------
7. Merch Cards
--------------------------------------------------*/
.merchandise-list {
    padding: 50px;
}
.merchandise-list-mobile {
    padding: 20px;
}

@media (max-width: 991px) {
    .merchandise-list {
        display: none;
    }
}
@media (min-width: 992px) {
    .merchandise-list-mobile {
        display: none;
    }
}
/* make row flex (equal height columns) */
.merch-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 40px;
}

/* bootstrap columns need flex too */
.merch-row > [class*='col-'] {
    display: flex;
}

/* card look */
.card-box {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    width: 100%;
    transition: transform .25s ease, box-shadow .25s ease;

    display: flex;
    flex-direction: column;
    height: 100%;          /* important for equal-height cards */
}
@media (max-width: 991px) {
    .merch-row {
        margin-bottom: 25px !important;
    }
}
/* this pushes footer down */
.card-box-body {
    flex: 1;
}

/* optional spacing */
.card-box-footer {
    margin-top: 15px;
}
/* hover popup */
.card-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0,0,0,.18);
}
@media (max-width: 991px) {
    .merch-row {
        display: block;
    }
}
.color-swatch {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 6px;
    margin-right: 6px;
    border: 1px solid rgba(0,0,0,.15);
    transition: transform .15s ease, box-shadow .15s ease;
}

.color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
    cursor: pointer;
}
.black-swatch-bg {
    background-color: black;
}
.gray-swatch-bg {
    background-color: gray;
}
.blue-swatch-bg {
    background-color: royalblue;
}
.navy-swatch-bg {
    background-color: navy;
}
.red-swatch-bg {
    background-color: red;
}
.white-swatch-bg {
    background-color: white;
}


