@font-face {
    font-family: 'Cardo';
    src: url('font/cardo-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    user-select: none !important;
    background-size: cover;
    font-family: "Cardo", serif;
    font-weight: 400;
    font-style: normal;
}

button, .button {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: rgb(240, 240, 240);
    background-color: transparent;
    border: 2px solid rgb(240, 240, 240);
    padding: 10px 25px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    border-radius: 0;
}

button:hover, .button:hover {
    background-color: rgb(240, 240, 240);
    color: #212529;
    transform: scale(1.05);
}

button:active, .button:active {
    background-color: #dcdcdc;
    transform: scale(1);
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
    text-decoration: none;
}

#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -100;
}

#header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.min-vh-100 {
    min-height: 100vh;
}

.pt-200 {
    padding-top: 200px;
}

.pt-250 {
    padding-top: 250px;
}

.pb-300 {
    padding-bottom: 300px;
}

.pb-250 {
    padding-bottom: 250px;
}

.pb-200 {
    padding-bottom: 200px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-50 {
    padding-bottom: 50px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.gallery-item {
    background-color: #1d1d1d;
    padding: 0;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    border: none;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.tour-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: rgb(240, 240, 240);
    padding: 10px;
    margin-top: 0;
    width: 100%;
    text-transform: capitalize;
    background-color: transparent;
}

.gallery-item:hover .tour-name {
    background-color: rgba(50, 50, 50, 0.8);
}

.navigation {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
    padding: 20px;
    font-size: 20px;
}

.menu-bar {
    position: absolute;
    right: 5%;
    top: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.menu-bar-name {
    font-size: 28px;
}

.menu-bar-line {
    width: 30px;
    height: 3px;
    opacity: 0;
    background: rgb(240, 240, 240);
    position: relative;
    margin: 3px;
}

.hover {
    opacity: .8;
    transition: all .4s ease;
    cursor: pointer;
}

.hover:hover {
    opacity: 1;
}

.p {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: .7;
}

.text, .text-scroll {
    color: rgb(240, 240, 240);
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 0.8s;
}

.opacity {
    opacity: .8;
}

.img, .img-scroll {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: auto;
    height: auto;
}

.img img, .img-scroll img {
    width: auto;
    opacity: 1;
}

.img:before, .img-scroll:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.navigation-content {
    position: fixed;
    background: #050505;
    height: 100vh;
    width: 100%;
    left: 0;
    z-index: 100;
    top: 0;
    transform: translateY(100%);
}

.navigation-content .navigation-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.navigation-content .navigation-ul li {
    padding: 10px;
    opacity: 0;
}

.navigation-content .navigation-ul li a {
    color: rgb(240, 240, 240, .6) !important;
    font-size: 50px;
    font-weight: 200;
    transition: all .4s ease;
    z-index: 3;
    position: relative;
    overflow: hidden;
}

.navigation-content .navigation-ul li a:hover {
    color: rgb(240, 240, 240) !important;
}

.navigation-content .navigation-ul li a::after {
    content: attr(data-text);
    opacity: 1;
    position: absolute;
    font-size: inherit;
    font-weight: inherit;
    width: 0;
    height: 100%;
    overflow: hidden;
    left: 0;
    color: rgb(240, 240, 240);
    top: 0;
    transition: all 1s cubic-bezier(0.84, 0, 0.08, 0.99);
}

.navigation-content .navigation-ul li a:hover::after {
    width: 100%;
}

.navigation-logo {
    position: absolute;
    left: 5%;
    top: 5%;
    font-size: 20px;
}

.navigation-content .opacity {
    opacity: 0;
}

.navigation-close-line {
    height: 22px;
    width: 2px;
    border-radius: 10px;
    background: rgb(245, 245, 245);
    position: absolute;
    transform: rotate(-45deg);
}

.navigation-close {
    padding: 0 20px 20px;
    position: absolute;
    right: 5%;
    top: 5%;
    cursor: pointer;
}

.navigation-close-line:nth-child(2) {
    transform: rotate(45deg);
}

.scale {
    opacity: 0;
    transform: scale(.1);
}

.heading {
    position: relative;
    text-align: center;
    padding: 80px 50px 50px;
    z-index: 1;
    opacity: .9;
    font-size: 45px;
    word-spacing: 0;
    font-weight: 600;
}

.chapter {
    position: relative;
    z-index: 10;
    padding-bottom: 120px;
    pointer-events: none;
}

.chapter .chapter-content,
.chapter .ticket-list,
.chapter .ticket-row {
    pointer-events: auto;
}

.chapter-content {
    height: auto;
    overflow: hidden;
    width: 70vw;
    color: rgb(240, 240, 240);
    background-color: #171717;
    /*background-image: url('/assets/img/background-homepage.jpg');*/
    position: relative;
}

.chapter-heading {
    position: relative;
    text-align: center;
    letter-spacing: 1.7px;
    padding: 80px 50px 50px;
    z-index: 1;
    opacity: .9;
    font-size: 45px;
    font-weight: 600;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapter .about-text {
    width: 70%;
}

.chapter .about-text-content {
    line-height: 1.5;
    font-size: 25px;
    letter-spacing: 1.5px;
    font-weight: lighter;
    padding: 20px;
    margin: 0 20px 20px;
    text-align: left;
    opacity: .9;
}

#footer {
    position: fixed;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100vw;
    color: #fff;
    line-height: 1.5;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: normal;
    padding: 20px;
    margin: 0 20px 20px;
    text-align: left;
    opacity: 0.9;
    pointer-events: auto; /* Keeps footer interactive */
}

#footer .icons {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: center;
}

#footer .icons a {
    padding: 10px;
}

#footer .icons i {
    font-size: 25px;
}

#footer a:hover {
    text-decoration: underline;
    color: inherit;
}

/* RESPONSIVE */

/* MOBILE */
@media all and (max-width: 675px) and (min-width: 0px) {
    /* Overrides for mobile */
    .pt-250 {
        padding-top: 0 !important;
    }

    .pt-200 {
        padding-top: 100px !important;
    }

    .pb-300 {
        padding-bottom: 50px !important;
    }

    .pb-100 {
        padding-bottom: 0 !important;
    }

    .pb-mobile-50 {
        padding-bottom: 50px !important;
    }

    .container {
        grid-template-columns: 1fr;
    }

    #header {
        font-size: 1.3rem !important;
    }

    .chapter-content {
        width: 100vw !important;
    }

    .menu-bar {
        position: absolute;
        right: 5%;
        top: 80%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

    .p {
        font-size: 10px;
    }

    .p img {
        height: 60px;
    }

    .navigation-logo {
        font-size: 15px;
        padding: 5px;
    }

    .menu-bar-name {
        font-size: 15px;
        display: none;
    }

    .menu-bar-line {
        width: 30px;
        height: 3px;
    }

    .navigation-content .navigation-ul li a {
        font-size: 35px;
    }

    .heading {
        padding: 60px 30px 30px;
        font-size: 24px;
        z-index: 2;
    }

    .chapter .about-img {
        width: 80%;
        height: auto;
    }

    .chapter .about-img img {
        height: auto;
        position: relative;
        width: 100%;
    }

    .center {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chapter .about-text {
        width: 90%;
    }

    .chapter .about-text-heading {
        font-size: 25px;
        font-weight: 200;
        opacity: .9;
        margin: 20px 10px 0;
        padding: 20px;
    }

    .chapter .about-text-content {
        font-size: 16px;
        padding: 20px;
        margin: 0 10px 10px;
        opacity: .7;
    }

    .chapter .headphone {
        display: block;
    }

    .menu-bar-name {
        font-size: 15px;
        display: none;
    }

    .menu-bar-line {
        width: 30px;
        height: 3px;
    }

    .chapter-heading {
        font-size: 35px;
    }
}

/* TABLETS */
@media all and (max-width: 1100px) and (min-width: 675px) {

}
