/* UltraJeux - CSS pour le système de connexion/inscription */
.bloc {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
}

body {
    background: #F4FAFF;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.nav-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
    width: 25px;
    height: 0px;
    border: 0.5px solid #000000;
}

.nav-button {
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-weight: 400;
    font-size: 24px;
    color: #707070;
    cursor: pointer;
    text-transform: capitalize;
    position: relative;
    flex: 1;
}

.nav-button:first-child {
    text-align: right;
}

.nav-button:last-child {
    text-align: left;
}

.nav-button.active {
    font-weight: 600;
    color: #000000;
}

.section {
    display: block;
}

.section.hidden {
    display: none;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 300px;
    width: 100%;
}

.maps-container {
    display: flex;
    gap: 10px;
}

.visual-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.maps-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.maps-section .gmap_canvas {
    flex: 1;
}

.streetview-row {
    height: 300px;
    width: 100%;
}

.left-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.right-visual {
    flex: 2;
    height: 100%;
}

.right-visual iframe {
    height: 100% !important;
    width: 100%;
}

.maps-section .gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 100%;
    width: 100%;
    flex: 1;
}

.gmap_canvas iframe {
    height: 100% !important;
    width: 100%;
}

.basic-container {
    text-align: left;
    width: fit-content;
    padding: 15px 25px;
    background: #FFFFFF;
    border-radius: 20px;
    margin: 40px 20px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.basic-container p {
    margin: 0;
}

.box-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.store-header {
    text-align: left;
    margin: 20px 15px;
}

.store-header h2 {
    margin: 0 0 5px 0;
    font-size: 24px;
    color: #333;
}

.store-subtitle {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.store-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-content {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 10px;
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 60%;
    font-size: 14px;
    flex: 0 0 auto;
}

.store-info p {
    margin: 0;
    line-height: 1.4;
}

.horaires-table {
    margin-top: 5px;
}

.horaire-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.end-h {
    border-bottom: 0px;
}

/* .jour {
    font-weight: normal;
    min-width: 80px;
} */

.heure {
    font-weight: bold;
    color: #313131;
}

.login-container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    margin: 20px auto;
    width: 75%;
    max-width: 633px;
    position: relative;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 30px;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #005697;
}

.input-label {
    font-weight: 400;
    font-size: 12px;
    color: #1d1d1d;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.input {
    width: 100%;
    border: none;
    border-bottom: 0.5px solid #000000;
    background: transparent;
    padding: 8px 0;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input:focus {
    outline: none;
    border-bottom-color: #005697;
}

.input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.signin-buttons-container {
    display: flex;
    gap: 10px;
}

.signin-btn {
    background-color: #fafafa;
    padding: 10px 14px;
    border-radius: 15px;
    border: 1px solid #dadce0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1d;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 14px;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.041);
    flex: 1;
    cursor: pointer;
}

.signin-btn:hover {
    background-color: #FFFFFF;
}

.signin-btn-apple {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.signin-btn-apple:hover {
    background-color: #333;
}

@media (max-width: 500px) {
    .signin-buttons-container {
        flex-direction: column;
    }
}

.submit-btn {
    background: #005697;
    border: none;
    border-radius: 15px;
    padding: 12px 24px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: capitalize;
    width: 100%;
}

.submit-btn:hover {
    background: rgb(3, 104, 182);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

.checkbox {
    width: 18px;
    height: 16px;
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    border-radius: 5px;
}

.checkbox-label {
    font-weight: 400;
    font-size: 12px;
    color: #000000;
}

.link {
    color: #4C7DFA;
    text-decoration: underline;
    font-weight: 400;
    font-size: 12px;
    transition: color 0.3s ease;
}

.link:hover {
    color: #005697;
}

.form-section {
    margin-bottom: 25px;
}

.section-title {
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-row .input-group {
    flex: 1;
    margin-bottom: 0;
}

.select {
    width: 100%;
    border: none;
    border-bottom: 0.5px solid #000000;
    background: transparent;
    padding: 8px 0;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    appearance: none;
}

.select:focus {
    outline: none;
    border-bottom-color: #005697;
}

.radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    cursor: pointer;
}

.oberjeux-image-container:hover .oberjeux-logo-overlay {
    opacity: 1 !important;
}

/* Styles pour la page contact */
.contact-basic-container {
    font-size: 15px;
}

.stores-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.store-wrapper {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 10px;
    max-width: 500px;
}

.store-wrapper-full {
    max-width: 100%;
}

.store-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.horaires-container {
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}

.horaires-title {
    font-size: 16px;
}

.maps-section iframe,
.streetview-row iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.maps-section {
    flex: 1;
    min-height: 200px;
}

.streetview-row {
    height: 200px;
    margin-top: 10px;
}

/* Styles Oberjeux */
.oberjeux-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
}

.oberjeux-image-container {
    position: relative;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
    width: fit-content;
}

.oberjeux-image {
    max-width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    border: 4px solid #fff;
}

.oberjeux-logo-overlay {
    position: absolute;
    top: 80px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 6px 6px #1d1d1d);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.oberjeux-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.oberjeux-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.oberjeux-info p {
    margin: 0;
    line-height: 1.4;
}

.oberjeux-horaires {
    flex: 1;
}

.contact-phone {
    color: #0066cc !important;
    text-decoration: none !important;
}

@media (max-width: 1200px) {
    .stores-container {
        flex-direction: column;
        padding: 20px;
    }

    .store-wrapper {
        max-width: 100%;
    }

    .streetview-row {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .store-info {
        max-width: 100%;
    }

    .maps-section {
        width: 100%;
        height: 200px;
        min-height: auto;
    }

    .oberjeux-content {
        flex-direction: column;
        align-items: center;
    }

    .oberjeux-info {
        text-align: center;
        align-items: center;
    }

    .oberjeux-image-container {
        margin: 0 auto 20px auto;
    }

    .oberjeux-horaires {
        width: 100%;
        margin-top: 15px;
    }
}

