/* HOTSPOT DARK THEME */ ------------------------------------------------------------------

@font-face{
    font-family: 'Raleway-Regular';
    src: url('../fonts/Raleway-Regular.ttf') format('truetype');
}
@font-face{
    font-family: 'Raleway-SemiBold';
    src: url('../fonts/Raleway-SemiBold.ttf') format('truetype')
}

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

html {
    width: 100%;
    height: 100%;
}

body {
    background: #4d4d4d;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
}

.nav-button {
    font-family: 'Raleway-SemiBold';
    font-size: 12px;
    letter-spacing: 0.05em;
    text-decoration: none;
    position: absolute;
    top: 100px;
    left: 20px;
    padding: 10px 16px;
    background-color: #333;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.nav-button:hover{
    background-color: #555;
}

.nav-left a {
    font-family: 'Raleway-SemiBold';
    font-size: 18px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hotspot-container { 
    position: relative; 
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

.hotspot-container img {  
    width: 100%;
    height: 100%; 
    display: block; 
}

.hotspot { 
    font-family: 'Raleway-Regular';
    position: absolute; 
    width: 18px; 
    height: 18px; 
    background: #faa236; 
    border: 1px solid white; 
    border-radius: 50%; 
    cursor: pointer;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.7);
        opacity: 0.8
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hotspot::after {
    content: attr(data-tooltip); 
    position: absolute; 
    top: 30px; 
    left: 50%; 
    transform: translatex(-50%);
    background-color: #F28500; 
    color: white; 
    padding: 6px 20px; 
    border-radius: 20px; 
    font-family: 'Raleway-SemiBold';
    font-size: 16px; 
    transition: opacity 0.3s ease-in-out; 
    z-index: 10; 
    white-space: nowrap; 
    width: auto; 
    opacity: 0;
} 
    
.hotspot:hover::after { 
    opacity: 1;
}

.hotspot:hover {
    animation: none !important;
    transition: none !important;
}

/* HOTSPOT BAKEWARE */ ---------------------------------------------------------


@media (min-width: 769px) {

    .hotspot-container {
        position: relative;
        width: 100%;
        display: block;
        padding: 0;
        margin: 0 auto;
    }

    .hotspot-container img {
        padding: 0;
        margin: 0 auto;
        width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        z-index: 1000;
        padding: 20px 0;
        background:  rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        margin-left: 0 !important;
        transform: translateX(0) !important;
    }

    .hotspot-container {
        position: relative;
        display: inline-block;
        width: auto;
        height: calc(100vh - 80px);
        min-width: max-content;
        vertical-align: top;
    }

    .hotspot-container img {
        padding: 0;
        margin: 0 auto;
        display: block;
        height: 100%;
        width: auto;
        max-width: none;
    }

    body {
        overflow-y: hidden;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 0px;
    }

    .hotspot {
        position: absolute;
        width: 16px;
        height: 16px;
    }

    .hotspot::after {
        font-size: 14px;
        padding: 5px 16px;
        top: 25px
    } 
    
    .nav-left a {
        color: black;
    }
    
    .menu-toggle,
    .search-toggle {
        color: #fff;
    }

    .search-toggle svg {
        stroke: #fff;
    }
}