@font-face {
    font-family: 'Gotham';
    src: url('fonts/GothamBook.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'GothamMedium';
    src: url('fonts/GothamMedium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'GothamBlack';
    src: url('fonts/GothamBlack.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'GothamUltre';
    src: url('fonts/GothamUltre.otf') format('opentype');
    font-weight: 900;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #FFFFFF;
    height: 100%;
}

body {
    min-height: 100vh;
    font-family: 'Gotham', sans-serif;
    color: #FFFFFF;
    background-color: #FFFFFF;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

/* LOGOS */
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

#logo-yul-fr,
#logo-yul-en {
    height: 30px;
    object-fit: contain;
}

/* SWITCH LANGUE */
.switch-langue {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.langue {
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    opacity: 0.5;
    font-family: 'GothamUltre', sans-serif;
    font-weight: bold;
}

.langue.active {
    opacity: 1;
    color: #E10035;
    font-family: 'GothamUltre', sans-serif;
}

.separateur {
    color: #E10035;
    font-family: 'GothamUltre', sans-serif;
}

/* FORMULAIRE */
.form-container {
    background-color: #333F48;
    border-radius: 15px;
    padding: 30px 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'GothamBlack', sans-serif;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Gotham', sans-serif;
    outline: none;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
    font-family: 'Gotham', sans-serif;
    font-size: 13px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    border-color: #E10035;
}

/* CHECKBOX */
.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #E10035;
    flex-shrink: 0;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-size: 13px;
    font-family: 'Gotham', sans-serif;
    line-height: 1.4;
    cursor: pointer;
}

/* BOUTON */
.btn-soumettre {
    width: 100%;
    font-family: 'GothamUltre', sans-serif;
    padding: 15px;
    background-color: #E10035;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    letter-spacing: 1px;
}

.btn-soumettre:hover:not(:disabled) {
    opacity: 0.9;
}

.btn-soumettre:disabled {
    background-color: #F59EA5;
    color: #FFFFFF;
    cursor: not-allowed;
    opacity: 0.5;
}

/* MESSAGE */
#message {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #E10035;
    font-family: 'GothamMedium', sans-serif;
}

/* PHOTO CONTAINER */
#photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#photo-affichee {
    width: 100%;
    max-height: 55vh;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
}

#btn-telecharger-fr,
#btn-telecharger-en {
    width: 100%;
}
