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

body {
    overflow: hidden;
    background: #000;
    font-family: 'Arial', sans-serif;
    color: white;
}

#container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Menu hamburger */
#menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
}

#menu-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Panel menu */
#menu-panel {
    position: fixed;
    top: 0;
    left: -400px;
    width: 350px;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 30px 30px;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

#menu-panel.active {
    left: 0;
}

.menu-section {
    margin-bottom: 30px;
}

.menu-section h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    border: none;
    border-radius: 8px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    margin: 5px 0;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.file-input {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    margin: 10px 0;
}

/* HUD */
#hud {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 25px;
    z-index: 100;
    display: flex;
    gap: 30px;
    align-items: center;
}

.hud-item {
    text-align: center;
}

.hud-label {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.hud-value {
    font-size: 16px;
    font-weight: bold;
    color: #00ff88;
}

/* Écran de chargement */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

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

.hidden {
    display: none !important;
}

/* Instructions */
#instructions {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Noms des POIs au-dessus des cônes */
.poi-label {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #00ff88;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    transform: translate(-50%, -100%);
    margin-top: -10px;
    border: 1px solid #00ff88;
}

/* Cartes d'information */
.info-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.info-card h2 {
    color: #00ff88;
    margin-bottom: 20px;
    text-align: center;
}

.close-card {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #00ff88;
    font-size: 20px;
    cursor: pointer;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Formulaire de contact */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: white;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #00ff88;
    color: black;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

/* Avis clients */
.review-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
}

.stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 10px;
}