﻿
body {
    padding-top: 120px;
    transition: padding-top 0.3s ease;
    /* background-color: #1F1F1F;*/

    background-image: linear-gradient( 90deg, #4A4847, #000 50%, #4A4847 );
    font-size: 1.2rem
}

.supperBold {
    font-weight: bold;
    font-size: 1.2rem
}


.superLarge {
    font-size: 2rem;
    font-weight: bold;
}

.superLarge3 {
    font-weight: bold;
    font-size: 3rem;
}

.colLighter {
    background-color: #383636;
    padding-top: 2rem
}


a {
    color: #B8A870;
    text-decoration: underline;
}

body.scrolled {
    padding-top: 80px;
}

.whiteband {
    background-color: #ffffff
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #1F1F1F;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.3rem 0;
    transition: padding 0.3s ease;
}

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-group {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-group.left {
        margin-right: 2rem;
    }

    .nav-group.right {
        margin-left: 2rem;
    }

.nav-link {
    color: #B8A870;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-weight: bold
}


.active {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 4px;
}

    .nav-link:hover {
        color: #ffffff
    }


.navTickets {
    border: solid thin #b8a870;
    padding: 0 1rem 0 1rem;
    border-radius: 0.2rem !important;
}

.logo-container {
    transition: all 0.3s ease;
}

.logo {
    height: 120px;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo {
    height: 50px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    position: absolute;
    right: 1rem;
    z-index: 1001;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #B8A870;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    /* height: 100vh;*/
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding-top: 80px;
}

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 20px 0 0 0;
    }

    .mobile-menu li {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu .nav-link {
        display: block;
        padding: 1rem 2rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
    }

        .mobile-menu .nav-link:hover {
            background: #1F1F1F;
            color: #B8A870;
        }

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .mobile-overlay.active {
        opacity: 1;
    }



/*accordion*/

.accordion {
    padding: 0 !important;
    --bs-accordion-btn-focus-box-shadow: #cccccc !important;
}




.accordion-button {
    color: black;
    background-color: #B8A870;
    box-shadow: none;
    font-weight: bold
}

    .accordion-button:not(.collapsed) {
        color: black;
        background-color: white;
        box-shadow: yellow
    }

    .accordion-button:focus {
        z-index: 3;
        border-color: white !important;
        outline: 0;
        box-shadow: white !important;
    }

.accordion-collapse {
    margin: 1em
}


/*Map*/
#map {
    border: 2px solid #B8A870 !important;
    border-radius: 0.375rem;
}
/* Demo content */
.content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-section {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
}

/* HERO overlay + video stacking (append to your existing rules) */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    /* make the video cover the section and sit behind content */
    .hero-section video,
    .hero-section .imageVideoBanner__media {
        position: absolute;
        inset: 0; /* top:0; right:0; bottom:0; left:0; */
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        pointer-events: none; /* avoid accidental interactions on mobile */
    }

/* semi-transparent overlay to improve contrast for text */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* tweak alpha for lighter/darker */
    z-index: 1;
}

/* ensure hero text sits above video + overlay */
#heroText,
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff
}

    /* textual styles */
    .hero-content h1 {
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        line-height: 1.05;
        padding: 0.1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content h2 {
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        line-height: 1.05;
        padding: 0.1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content h3 {
        font-weight: 500;
        margin: 0 0 0.25rem 0;
        padding: 0.1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content h4 {
        font-weight: 400;
        margin: 0;
        padding: 0.1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }


/* Styles for the new subscription message */
.mc-message {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px;
    margin-top: 15px;
    border-radius: 6px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    /* Make message visible when it has content */
    .mc-message:not(:empty) {
        opacity: 1;
    }

    /* Success state (Green) */
    .mc-message.success {
        color: #ffffff;
        font-size: 1.5rem;
    }

    /* Error state (Red) */
    .mc-message.error {
        font-size: 1.5rem;
        color: #842029;
    }

.newsletter-submit {
    display: inline-block;
    padding: 0.5rem 0.5rem;
    border-radius: .4rem .4rem;
    background-color: #FFA500;
    color: black;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.inputBody {
    max-width: 400px
}

.submit {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-radius: 0.5rem !important;
    padding: 0.25rem 0.7rem;
    color: black;
    transition: background-color 0.3s ease;
}

.submit-white {
    background-color: #ffffff;
    border: thin solid #ffffff;
}

    .submit-white:hover {
        background-color: #B8A870;
        border: thin solid #B8A870;
        color: black;
    }

.submit-gold {
    background-color: #B8A870;
    border: thin solid #B8A870;
}

    .submit-gold:hover {
        background-color: #ffffff;
        border: thin solid #ffffff;
        color: black;
    }









.submit-buy {
    margin-top: 1rem;
    padding: 1rem 1.5rem !important;
    font-size: 1rem;
    font-weight: bold;
}

.newsletter:active {
    background-color: #E07B00;
}


.rightColLighter {
    margin-top: 23px;
    padding-left: 50px;
}


.rightTickets {
    margin-top: 45px
}
/* ================================CARROUSELS================================= */
.carousel-wrapper {
    max-width: 80%; /* Adjust this as needed */
    position: relative;
    margin: 40px 0 40px 0;
}

/* Landscape image styling */
.image-box-landscape {
    aspect-ratio: 16 / 9;
    border: 5px solid #fff;
    overflow: hidden;
    padding: 5px;
}

    .image-box-landscape img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Indicators spacing */
.carousel-indicators {
    margin-bottom: -20px; /* Pull bullets closer if desired */
}

/* Carousel controls: place prev to the left of items and next to the right.
   Keeps controls outside the carousel on wide screens and inside on smaller viewports. */
.carousel-wrapper {
    position: relative; /* ensure absolutely positioned controls are relative to this wrapper */
    overflow: visible; /* allow controls to sit outside without being clipped */
}

/* Base control styling */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    border: none;
    z-index: 5;
    transition: background-color 160ms ease, transform 160ms ease;
    cursor: pointer;
}

/* Positioning: outside on large screens */
@media (min-width: 992px) {
    .carousel-control-prev {
        left: -70px;
    }

    .carousel-control-next {
        right: -70px;
    }
}

/* On medium/small screens keep controls inside the carousel area */
@media (max-width: 991.98px) {
    .carousel-control-prev {
        left: 8px;
    }

    .carousel-control-next {
        right: 8px;
    }
}

/* Improve visible hit target on touch */
.carousel-control-prev,
.carousel-control-next {
    padding: 6px;
}

/* Increase icon size and make it fully visible */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 22px;
    height: 22px;
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1) saturate(0.02) brightness(1.1);
}

/* Hover/focus states */
.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-next:focus {
    background: #B8A870;
    outline: none;
}

/* If carousel is centered with narrow container, nudge controls to stay aligned visually */
.carousel-wrapper.mx-auto {
    max-width: 1200px; /* no-op if you already set a max-width elsewhere; keeps layout predictable */
}

/* Optional: ensure controls won't overlap card gutters on very wide screens */
@media (min-width: 1400px) {
    .carousel-control-prev {
        left: -90px;
    }

    .carousel-control-next {
        right: -90px;
    }
}


/* ================================END CARROUSELS================================= */



/*=============================== 404 =========================================*/

.hero-section {
    color: white;
    position: relative;
    overflow: hidden;
   
}

.hero-image {
    object-fit: cover;
    height: 100%;
}

.hero-text {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.5rem;
}

.H1404 {
    font-weight: 600 !important;
    font-size: 4rem
}

.hero-text p {
    font-weight: 500;
    font-size: 3rem}
.separator {
    display:block;
    height:40px;
}
/*===============================  End 404 ====================================*/
/*=====================        PROFILE                  ==========================*/
.toggle-btn {
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    line-height: 1;
}

.card {
    cursor: pointer;
}

    .card:hover {
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    }


/*=====================       END PROFILE                  ==========================*/

/* ================================   TILES   ================================= */


.card {
    /*border: 2px solid #B8A870;*/
    overflow: hidden;
    border: none;
}

    .card a {
        text-decoration: none;
        color: black
    }

.blogListDate {
    color: #666666;
    font-size: 0.9rem
}

.card img {
    transform: scale(1);
    transition: .3s ease-in-out;
}

    .card img:hover {
        transform: scale(1.1);
    }

.card h3 {
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: solid thin #cccccc;
}


.readMore {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 16px; /* space reserved for the symbol */
}

    /* + and > */
    .readMore::after,
    .readMore::before {
        position: absolute;
        right: 0;
        opacity: 0;
        margin-left: 8px; /* padding left of + / > */
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    /* Normal state: + */
    .readMore::after {
        content: "+";
        opacity: 1;
        transform: translateX(0);
    }

    /* Hover state: > */
    .readMore::before {
        content: ">";
        transform: translateX(-4px);
    }

/* Hover swap */
a:hover .readMore::after {
    opacity: 0;
    transform: translateX(4px);
}

a:hover .readMore::before {
    opacity: 1;
    transform: translateX(0);
}

.divBack {
    margin-top: 50px
}
/* ================================  END  TILES   ================================= */
/* Image modal — add smooth fade + scale transition (replaces the previous display:none approach) */
.custom-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    z-index: 4000;
    padding: 20px;
    /* hidden state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* transitions */
    transition: opacity 280ms cubic-bezier(.22,.9,.3,1), visibility 280ms ease, background-color 280ms ease;
}

    .custom-modal.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

/* dialog that contains the image — animate scale + translate */
.custom-modal-dialog {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* start slightly down & scaled for nicer entrance */
    transform: translateY(10px) scale(.98);
    opacity: 0;
    transition: transform 320ms cubic-bezier(.22,.9,.3,1), opacity 240ms ease;
}

/* visible dialog state */
.custom-modal.show .custom-modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}


.image-container {
    position: relative; /* reference for absolute button */
    display: inline-block; /* shrink to image size */
}

.custom-modal-img {
    display: block;
    max-width: 85vw; /* responsive scaling */
    max-height: 85vh;
    width: auto;
    height: auto;
}

.custom-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 160ms ease, background 160ms ease;
}

    .custom-modal-close svg {
        width: 20px;
        height: 20px;
    }


    .custom-modal-close:hover,
    .custom-modal-close:focus {
        transform: scale(1.04);
    }






.hubspotForm {
    background-color: white
}

/* Ensure the hubspot form container is a positioned parent */
.hubspotForm {
    position: relative;
}

    /* Position the overlay so it covers the bottom 40px of the form frame */
    .hubspotForm .above {
        position: absolute;
        left: 0;
        right: 0;
        height: 60px; /* covers last 40px */
        bottom: 0; /* anchored to bottom of the form container */
        z-index: 20; /* above the form frame */
        pointer-events: none; /* allow clicks through to the form underneath */
        /* visual styling — adjust to taste */
        background: #1F1F1F;
        /* if you prefer a solid color:
       background: rgba(31,31,31,0.95);
    */
    }


.supportedBy {
    color: white
}


/*====   HERO GENERIC PAGES  =====*/


.hero-section-generic {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-generic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));*/
}

.hero-content-generic {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title-generic {
    font-size: clamp(5rem, 5vw, 7rem);
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle-generic {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-btn-generic {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.hero-section-generic {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

    .hero-section-generic .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%; /* a bit larger so parallax has room */
        object-fit: cover;
        transform: translateY(0);
        transition: transform 0.1s linear;
    }


/*======  BLOG LIST  =======*/


/*======  BLOG ITEM  =======*/


.blogItem {
    color: #ffffff
}

.blogDate {
    color: #cccccc
}

.back {
    color: white;
    border: solid thin white;
    padding: 4px 10px 4px 10px;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 1rem
}

    .back:hover {
        color: #B8A870;
        border: solid thin #B8A870;
    }
/* ======================================== Responsive ===============================================*/
@media (max-width: 991px) {
    body {
        padding-top: 100px;
    }

        body.scrolled {
            padding-top: 70px;
        }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }



    .navbar-content {
        justify-content: center;
        padding: 0 1rem;
    }

    .logo {
        height: 60px;
    }

    .navbar.scrolled .logo {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .demo-section {
        font-size: 1.5rem;
        height: 300px;
    }
}

/*If window is 1404 pixels wide or wider, then apply */
@media (min-width: 1112px) {
    .hero-content h1 {
        font-size: 7rem;
    }

    .hero-content h2 {
        font-size: 2.45rem;
    }


    .hero-content h3 {
        font-size: 2rem;
    }

    .hero-content h4 {
        font-size: 2rem;
    }

    body {
        font-size: 1.3rem;
    }
}

@media (max-width: 1112px) {
    /* keep spacing consistent with existing mobile rules */
    body {
        padding-top: 100px;
    }

        body.scrolled {
            padding-top: 70px;
        }

    /* show hamburger & mobile menu */
    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    /* hide desktop nav groups */
    .nav-group {
        display: none;
    }

    .navbar-content {
        justify-content: center;
        padding: 0 1rem;
    }

    /* logo sizing for this breakpoint */
    .logo {
        height: 60px;
    }

    .navbar.scrolled .logo {
        height: 40px;
    }

    /* center container contents and make headings wrap/readable */
    #heroText {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }

        /* ensure bootstrap row centers its column(s) */
        #heroText .row {
            width: 100%;
            justify-content: center;
        }

    .hero-content {
        margin: 0 auto;
        width: 100%;
        max-width: 780px; /* control measure for readability */
        text-align: center;
    }

        /* make the heading blocks full-width for predictable wrapping */
        .hero-content h1,
        .hero-content h2,
        .hero-content h3,
        .hero-content h4 {
            display: block;
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            text-align: center;
            box-decoration-break: clone;
            -webkit-box-decoration-break: clone;
        }

        .hero-content h1 {
            font-size: 4rem;
        }

        .hero-content h2 {
            font-size: 1rem;
        }

        .hero-content h3 {
            font-size: 2rem;
        }

        .hero-content h4 {
            font-size: 1.5rem;
        }
}

@media (max-width:510px) {

    .hero-content h1 {
        font-size: 2.9rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .hero-content h3 {
        font-size: 1.2rem;
    }

    .hero-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width:768px) {

    .rightColLighter {
        background-color: #383636;
        padding-top: 2rem;
        padding-left: 20px;
        margin-top: 0;
    }

    .rightTickets {
        margin-top: 0
    }

    .hero-section-generic {
        height: 70vh;
        min-height: 400px;
    }

    .hero-image {
        object-position: center 30%;
    }

    .hero-content-generic {
        text-align: center;
    }

    .hero-btn-generic {
        width: 100%;
        max-width: 300px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section-generic {
        height: 80vh;
    }
}
