html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}


body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    color: white;
    overflow: hidden;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 30px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-sizing: border-box;
}

.header div:last-child {
    white-space: nowrap;
}

.left-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.right-header {
    white-space: nowrap;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 14px;
}

.logo span {
    color: #d6a77a;
}

.menu-toggle {
    font-size: 22px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.25s;
}

.menu-toggle:hover {
    background: #d6a77a;
    color: black;
}

.tour-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.tour-container iframe {
    width: 100%;
    height: 100%;
}

.menu-panel {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 300px;
    height: calc(100vh - 100px);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 20px;
    overflow-y: auto;
    z-index: 20;
    transition: transform 0.35s ease;
}

/* Hidden state */

.menu-hidden {
    transform: translateX(-340px);
}

.menu-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.menu-section {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
}

.menu-item {
    padding: 12px 14px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s;
    background: rgba(255, 255, 255, 0.05);
}

.menu-item:hover {
    background: #d6a77a;
    color: black;
}

.active {
    background: #d6a77a;
    color: black;
}

.footer {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
}

/* Section header (accordion button) */

.menu-section {
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Arrow indicator */

.menu-section::after {
    content: "▸";
    transition: transform 0.25s ease;
}

/* Rotated arrow when open */

.menu-section.open::after {
    transform: rotate(90deg);
}

/* Collapsible container */

.menu-group {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* Expanded group */

.menu-group.open {
    max-height: 1000px;
}

/* Scrollbar */

.menu-panel::-webkit-scrollbar {
    width: 6px;
}

.menu-panel::-webkit-scrollbar-track {
    background: transparent;
}

.menu-panel::-webkit-scrollbar-thumb {
    background: #d6a77a;
    border-radius: 20px;
}




@media (max-width:768px) {

    .menu-panel {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 60%;
        border-radius: 0;
        transform: translateX(-100%);
        z-index: 100;
    }

    .menu-panel.open {
        transform: translateX(0);
    }

}


@media (max-width:768px) {

    .header {
        padding: 12px 16px;
    }

    .logo {
        font-size: 10px;
    }

    .right-header {
        display: none;
    }

}