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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #f5e6d3;
}

.sitemap-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #f5e6d3;
}

.sitemap-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    text-decoration: none;
    z-index: 10;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 35, 35, 0.6);
    border: 2px solid rgba(255, 0, 0, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.circle:hover {
    transform: scale(1.4);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 30px rgba(255, 200, 150, 0.6);
}

.tooltip {
    display: none;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    font-family: "Frutiger", "Istok Web", sans-serif;
}

.map-marker:hover .tooltip {
    display: block;
}

.easter-egg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    transition: all 0.3s ease;  
}

.easter-egg:hover {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.easter-popup {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("./images/easter-egg-rainbow.gif");
    color: rgb(255, 255, 255);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-family: fantasy;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s ease, opacity 0.5s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
}

.easter-popup.show {
    bottom: 40px;
    opacity: 1;
}

.easter-popup.hide {
    bottom: -80px;
    opacity: 0;
}

.easter-popup p {
    margin: 0;
    padding: 0;
}