


/* =========================
   FULL PAGE BACKGROUNDS
========================= */

.first-full-page {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top:-60px;
}

    .first-full-page img {
        width: 100%;
        height: auto;
        display: block;
    }

    .first-full-page .sites-top {
        position: relative;
        z-index: 1;
        margin-top: 70px;
    }

.full-page-image {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 0;
    /* PARALLAX EFFECT */
    background-image: url('/CmsMedia/Uploads/Images/Back2_1600.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* key for parallax */
}

    /* hide the original <img> so it doesn't conflict */
    .full-page-image img.full-image {
        display: none;
    }

    .full-page-image .full-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        object-fit: cover;
        z-index: 0;
        /* FINAL FILTER (kept last version) */
        filter: blur(1px) brightness(0.5) contrast(0.6) saturate(0.3) sepia(0.2) hue-rotate(-10deg);
        transform: scale(1.02);
        pointer-events: none;
    }

    .full-page-image::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.45);
        z-index: 0;
    }

    .full-page-image .sites-top {
        background: rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
    }

.roundedA {
    display: inline-block;
    padding: 10px 15px;
    background-color: rgba(40, 20, 20, 0.6);
    color: rgba(240, 180, 140, 1) !important;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s, background-color 0.3s;
}

    .roundedA:hover {
        background-color: rgb(238, 81, 34);
        color: black !important;
        transform: scale(1.05);
    }


/* =========================
   CATEGORY CARDS
========================= */

.bottomRightShadow {
    cursor: pointer;
    border: solid 1px #73bbf1;
    /* FINAL shadow (kept override version) */
    box-shadow: 4px 4px 3px #73bbf1;
    -webkit-box-shadow: 4px 4px 3px #f28b25;
    -moz-box-shadow: 4px 4px 3px #73bbf1;
    -o-box-shadow: 4px 4px 3px #d88155;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

    .bottomRightShadow:hover {
        transform: scale(1.04);
        box-shadow: 18px 18px 28px rgba(238, 81, 34, 0.6);
        opacity: 0.95;
    }

.change_opacity {
    opacity: 1;
    transition: all 0.3s ease;
}

    .change_opacity:hover {
        opacity: 0.8;
        color:white           ;
    }


/* =========================
   SITES / TEXT UI
========================= */

.sites-top {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
    z-index: 10;
}

.sites-text {
    display: inline-block;
    padding: 8px 16px;
/*    background-color: rgba(0, 0, 0, 0.6);
    color: white;
*/    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

    .sites-text:hover {
        background-color: rgb(238, 81, 34);
        transform: scale(1.05);
    }

@media (max-width: 600px) {
    .sites-text {
        font-size: 13px;
        padding: 6px 12px;
    }
}


/* =========================
   MODALS
========================= */

.modal {
    z-index: 2000 !important;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.35) !important;
    z-index: 1500 !important;
}

.modal-content {
    background-color: rgba(245, 230, 200, 0.4) !important;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.modal-header,
.modal-body,
.modal-footer {
    background-color: rgba(0, 0, 0, 0.4) !important;
    color: #fff;
}

.custom-x-btn {
    font-size: 22px;
    font-weight: 1900;
    background-color: orangered;
    border: none;
    cursor: pointer;
}

    .custom-x-btn:hover {
        color: red !important;
        background-color: red;
        transform: scale(1.2);
    }


/* =========================
   TEXT OVERLAYS
========================= */

.text-top-right,
.text-top-right-analytical {
    position: absolute;
    right: 20px;
    z-index: 10;
    color: white;
    text-align: right;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.text-top-right {
    top: 40px;
    max-width: 60%;
    font-size: 2.5rem;
    padding: 20px !important;
    background: rgba(0,0,0,0.2);
}

.text-top-right-analytical {
    top: 20px;
    max-width: 80%;
    font-size: 1.5rem;
    padding: 15px !important;
    background: rgba(0,0,0,0.3);
}

    /* Shared typography reset */
    .text-top-right *,
    .text-top-right-analytical * {
        line-height: 0.9 !important;
        margin: 0;
        padding: 0;
    }

/* Responsive */
@media (max-width: 768px) {

    .text-top-right {
        top: 10px;
        right: 10px;
        max-width: 90%;
        font-size: 1.5rem;
        padding: 10px;
        line-height: 1.1 !important;
    }

    .text-top-right-analytical {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: unset;
        max-height: calc(100% - 20px);
        overflow-y: auto;
        font-size: 0.8rem;
        padding: 4px;
        line-height: 1.1 !important;
    }
}


/* =========================
   DROPDOWN
========================= */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -10px);
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 50px;
    min-width: 160px;
    padding: 4px 0;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.25);
    z-index: 99;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .dropdown-content a {
        color: white;
        font-size: 12px;
        padding: 6px 0px;
        display: block;
        text-decoration: none;
        white-space: nowrap;
        border-radius: 50px;
        margin: 1px 15px;
        transition: background-color 0.2s, transform 0.2s;
    }

        .dropdown-content a:hover {
            background-color: rgb(238, 81, 34);
            transform: scale(1.05);
        }

.dropdown:hover .dropdown-content {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}


/* =========================
   BASE / GLOBAL
========================= */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    padding-top: 110px;
    padding-bottom: 20px;
    background-color: #000;
    color: white;
    font-family: sans-serif;
    letter-spacing: 2px;
}



a {
    color: #f28b25;
    text-decoration: none;
}

    a:hover {
        color: black;
    }


/* =========================
   LOGO
========================= */

.header-logo,
.header-logo-secondary {
    max-width: 240px;
}

@media (max-width: 768px) {
    .header-logo,
    .header-logo-secondary {
        max-width: 220px;
    }

    body {
        padding-top: 200px;
        padding-bottom: 200px;
    }


}

@media (max-width: 576px) {
    .header-logo,
    .header-logo-secondary {
        max-width: 160px;
    }
}

.LogoImage {
    margin: 6px 0;
    height: 60px;
}


/* =========================
   NAVBAR
========================= */

.navbar,
.navbar-inverse {
    background-color: #000;
    border-color: #000;
    border-bottom: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);

    background-color: rgba(0, 0, 0, 0.8); /* 70% opacity */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); /* optional shadow */
    backdrop-filter: blur(1px); /* optional: soft blur behind */
}

    .navbar-inverse .navbar-brand {
        color: #0034ff;
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #73bbf1;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1.3px;
        padding: 0 10px;
    }

        .navbar-inverse .navbar-nav > li > a:hover {
            color: #d88155;
        }


/* =========================
   MISC (unchanged logic)
========================= */

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

input, select, textarea {
    max-width: 900px;
}
