* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.hero-img {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100vh;
}

.bigger {
    font-size: 1.5rem !important;
}

.main-floor {
    transition: all 1s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.main-floor:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-img img {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 1s ease;
}

.floor-label {
    position: absolute;
    top: 20px;
    /* Adjust as needed */
    left: 20px;
    /* Adjust as needed */
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99999;
}

.main-floor:hover .floor-label {
    opacity: 1;
}

.floor-plan {
    position: relative;
    width: 931px;
    height: 579px;
    /* display: inline-block; */
    display: none;
    transition: all 1s ease;
}

.floor-plan.active {
    transition: all 1s ease;
    display: inline-block;
}

.floor-plan img {
    transition: all 1s ease;
    position: absolute;
    left: 0;
    top: 0;
}

.room {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.room-info {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    display: none;
    white-space: nowrap;
    font-size: 14px;
    transform: translateX(-50%);
    z-index: 10;
}

.room-details {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: none;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
    font-family: Arial, sans-serif;
}

.room:hover {
    background-color: rgb(67 157 221 / 60%);
}

.room-details img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
}

.room-details p {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.container {
    display: flex;
    gap: 32px;
    justify-content: space-around;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
}

.sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.sidebar .button {
    transition: all 1s ease;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 1rem;
    background-color: #333;
    color: white;
}

.sidebar .button.active {
    background-color: rgba(42, 105, 187, 0.856);
    color: white;
}

.leftside {
    display: flex;
    gap: 32px;
    align-items: center;
}

.project-hero {
    height: auto;
    width: 100%;
}

.project-hero img {
    width: 100%;
}

.project-hero a {
    z-index: 999;
    position: absolute;
    top: 2%;
    left: 5%;
    color: white;
    font-size: 3rem;
    text-decoration: none;
}

@media (max-width: 1600px) {
    .container {
        zoom: 0.75
    }
}

@media (max-width: 1200px) {
    .container {
        zoom: 0.65
    }
}

@media screen and (max-width: 768px) {
    body {
        display: none !important;
    }
}