/* Styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.start-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.start-button:hover {
    background-color: #c0392b;
}

/* Styles pour les scènes */
.scene-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: #000;
}

.scene-wrapper {
    position: relative;
    display: inline-block;
}

.scene-image {
    display: block;
    max-width: none;
    height: auto;
}

.hotspot {
    position: absolute;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
   // background-color: rgba(255, 0, 0, 0.8);
    z-index: 100;
}

.hotspot:hover {
    background-color: rgba(255, 0, 0, 0.5);
}

/* Menu de navigation */
.nav-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 10px;
    z-index: 1000;
}

.nav-button {
    padding: 0.5rem 1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Page de révélation */
.reveal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.surprise-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.back-button {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #27ae60;
} 