/* Version 3.2 */
/* Version Date: 16 December 2025 */
/* This sheet should only contain css changes specific to the Arvida virtual tour */

.topLogo img {
    width: 190px;
    padding-top: 20px;
    padding-bottom: 10px;
    /* remove extra spacing around the hamburger/menu logo */
    margin: 0;
    display: block;
}

.BtomClick a {
    background-color: #904098;
    /* CTA button background colour (Gold) */
    color: #fff;
    /* CTA button text colour */
}

.BtomClick a:hover {
    background-color: #a26ea7;
    /* HOVER CTA button background colour (Gold hover) */
    color: #fff;
    /* HOVER CTA button text colour */
    box-shadow: 0px 0px 0px 1px #a26ea7 inset;
    /* HOVER CTA button border colour 1px inside */
}

#burger-button-text {
    color: #000000;
    /* Burger button 'MENU' text colour */
}

#menuToggle {
    background: #fff;
    /* Burger button background colour */
}


/* Hamburger Menu Button */
#menuToggle span {
    background: #000000;
    /* Burger button lines colour before click */
}

#menuToggle input:checked~span {
    background: #000000;
    /* Burger button lines colour after click 'checked' */
}

/* Main Navigation Menu */
#menu {
    font-family: aktiv-grotesk, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    /* Menu text font colour */
    font-size: 16px;
    background: #fff;
    /* Menu background */
}

#menu a:hover:not(.sub_men_content_itm.active):not(.BtomClick a) {
    color: #904098;
    /* menu text hover colour, excluding active sub-menu heading & CTA button */
}

.accordion-toggle a:before,
.accordion-toggle a:after {
    background-color: #904098;
    /* Menu toggle icon + symbol colour */
}

.accordion-toggle.active-tab {
    background-color: #904098;
    /* Selected toggle dropdown menu background colour */
    color: #fff;
    /* Selected toggle dropdown menu text colour */
}

.accordion-toggle a.active:before {
    background: #fff !important;
    /* Selected toggle + icon colour */
}

.accordion-toggle a.active:after {
    background: #fff !important;
    /* Selected toggle + icon colour */
}

/* Splash Screen */
.splash-content {
    color: white;
    max-width: 600px;
    padding: 20px;
}

.splash-content h1 {
    font-size: 2em;
}

.splash-content p {
    font-size: 1em;
}

.splashLogo img {
    width: 500px;
    padding-top: 10px;
    opacity: 1;
}

/* Mobile CSS starts */

@media (max-width: 599px) {

    /* Adjust this mobile breakpoint as needed */
    .topf img {
        padding: 0;
    }

    .nav-buttons button {
        background-color: white;
        /* Match Menu Toggle */
        color: #000000;
        /* Match Menu Toggle */
        font-size: 10px;
        /* Match Menu Toggle */
    }

    /* Create a click affect on the mobile quick navigation buttons */
    .nav-buttons button:active {
        background-color: #4B4B4B;
        /* Change background color */
        color: white;
        /* Change text color */
    }

    .splash-content {
        max-width: 90%;
        /* Make sure it doesn't exceed the screen width */
        word-wrap: break-word;
        /* Ensure long words don't overflow */
        padding: 10px;
        /* Reduce padding to avoid pushing content off-screen */
    }

    .splash-content h1 {
        font-size: 1.5em;
    }

    .splash-content p {
        font-size: 0.9em;
    }

    .splashLogo img {
        width: 80%;
        padding-top: 10px;
        opacity: 1;
    }

}

/* Splash Screen Styles - Added 12 Dec */
#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: flex-start;
    /* Changed from center to align top */
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: opacity 2s ease;
    padding-top: 15vh;
    /* Push content down to top 1/3 */
}

#splashScreen.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Ensure hierarchy overrides */
body #splashScreen .splash-content {
    max-width: 80%;
    padding: 20px;
    display: block;
    /* Ensure visibility */
}

.splash-logo {
    max-width: 450px;
    margin-bottom: 20px;
    height: auto;
}

#splashScreen h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
    font-family: mono45-headline, monospace;
    font-weight: 700;
    font-style: normal;
}

#splashScreen p {
    font-size: 1.2rem;
    color: #666;
    font-family: inherit;
    margin-bottom: 30px;
    /* Add space for button */
}

.splash-cta {
    background-color: #904098;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    /* Optional rounded corners */
    transition: background-color 0.3s ease;
}

.splash-cta:hover {
    background-color: #a26ea7;
    color: #fff;
    box-shadow: 0px 0px 0px 1px #a26ea7 inset;
}

/* Matterport Loading Overlay - Clean White Screen */
#matterportLoadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1;
    /* Behind menu (z-index 2, 99) but above iframe */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    /* Hidden by default */
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#matterportLoadingOverlay.active {
    opacity: 1;
    pointer-events: all;
}

.loading-content {
    max-width: 80%;
    padding: 20px;
}

.loading-logo {
    max-width: 200px;
    margin-bottom: 30px;
    height: auto;
    /* Make logo white and semi-transparent */
    filter: brightness(0) invert(1);
    opacity: 0.5;
    /* Indented/embossed effect */
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #904098;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-content p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    font-family: aktiv-grotesk, sans-serif;
    font-weight: 400;
    font-style: normal;
}