/* Styles partagés : navbar, dropdown, footer, scrollbar */

.navbar-brand {
    font-family: "Merriweather", serif;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.nav-item {
    font-size: 18px;
    font-family: "Raleway", sans-serif;
}

.nav-item:hover {
    color: goldenrod;
}

.dropdown-menu {
    background-color: #1a1a2e;
    border: 1px solid rgba(218, 165, 32, 0.25);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    color: white;
    font-family: "Raleway", sans-serif;
    border-radius: 8px;
    padding: 8px 14px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(218, 165, 32, 0.15);
    color: goldenrod;
}

.footer-section {
    background-color: #0b0b2a;
}

.footer-hr-top,
.footer-hr-bottom {
    border-color: rgba(218, 165, 32, 0.25);
    margin: 0;
}

.footer-logo {
    font-family: "Merriweather", serif;
    color: goldenrod;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-desc {
    font-family: "Raleway", sans-serif;
    color: rgba(200, 200, 220, 0.65);
    font-size: 13px;
    line-height: 1.7;
}

.footer-socials a {
    color: goldenrod;
    font-size: 1.2rem;
    margin-right: 16px;
    transition: opacity 0.2s;
}

.footer-socials a:hover {
    opacity: 0.7;
}

.footer-heading {
    font-family: "Raleway", sans-serif;
    color: goldenrod;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: "Raleway", sans-serif;
    color: rgba(200, 200, 220, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: goldenrod;
}

.footer-contact-info {
    font-family: "Raleway", sans-serif;
    color: rgba(200, 200, 220, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact-info a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-info a:hover {
    color: goldenrod;
}

.footer-contact-note {
    font-family: "Raleway", sans-serif;
    color: goldenrod;
    font-style: italic;
    font-size: 13px;
    margin-top: 12px;
}

.footer-copy {
    font-family: "Raleway", sans-serif;
    color: rgba(200, 200, 220, 0.45);
    font-size: 13px;
    margin: 0;
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #0b0b2a; }
::-webkit-scrollbar-thumb { background: rgba(218, 165, 32, 0.45); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: goldenrod; }

/* Modale de réservation (booking-modal partial) */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-box {
    background: #131a2e;
    border: 1px solid rgba(218, 165, 32, 0.25);
    border-radius: 14px;
    padding: 2.2rem 2rem 2rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    margin: 1rem;
    animation: fadeUp .25s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(220, 215, 205, .45);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover { color: goldenrod; }

.modal-title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: goldenrod;
    margin: 0 0 6px;
}

.modal-sub {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-style: italic;
    color: rgba(200, 200, 220, .5);
    margin: 0 0 1.5rem;
}

.modal-label {
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: goldenrod;
    display: block;
    margin-bottom: 6px;
    margin-top: 16px;
}

.modal-input {
    width: 100%;
    background: #1a2240;
    border: 1px solid rgba(218, 165, 32, 0.2);
    color: rgba(220, 215, 205, .9);
    border-radius: 9px;
    padding: 11px 14px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color .25s;
    appearance: none;
}

.modal-input::placeholder { color: rgba(150, 155, 175, .45); }
.modal-input:focus { border-color: goldenrod; }
.modal-input option { background: #1a2240; }

.modal-btn {
    width: 100%;
    margin-top: 22px;
    padding: 13px;
    background: goldenrod;
    color: #0b0b2a;
    border: none;
    border-radius: 9px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .25s, transform .15s;
}

.modal-btn:hover { background: #e8c96a; transform: translateY(-1px); }

.depot-box {
    background: #1a2240;
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.depot-label {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(220, 215, 205, .9);
    margin: 0 0 4px;
}

.depot-note {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    color: rgba(150, 155, 175, .6);
    margin: 0;
}

.depot-amount {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    color: goldenrod;
    white-space: nowrap;
    margin-left: 12px;
}

.bank-box {
    background: #1a2240;
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 1.4rem;
}

.bank-box-title {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: goldenrod;
    margin: 0 0 10px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-family: "Raleway", sans-serif;
    font-size: 12.5px;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(218, 165, 32, 0.12);
}

.bank-row:last-child { border-bottom: none; }
.bank-label { color: rgba(150, 155, 175, .6); white-space: nowrap; }
.bank-value { color: rgba(220, 215, 205, .9); text-align: right; word-break: break-all; }

.payment-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.2rem 0;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(150, 155, 175, .5);
}

.payment-divider::before,
.payment-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(218, 165, 32, 0.15);
}

.copy-iban-btn {
    background: rgba(218, 165, 32, 0.15);
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: goldenrod;
    border-radius: 6px;
    width: 22px;
    height: 22px;
    font-size: 11px;
    line-height: 1;
    margin-left: 8px;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    transition: background .2s;
}

.copy-iban-btn:hover { background: rgba(218, 165, 32, 0.3); }
.copy-iban-btn.copied { background: goldenrod; color: #0b0b2a; }

.card-field {
    background: #1a2240;
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 9px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.card-field i { color: rgba(150, 155, 175, .5); font-size: 14px; }

.card-field input {
    background: none;
    border: none;
    outline: none;
    color: rgba(220, 215, 205, .9);
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    width: 100%;
}

.card-field input::placeholder { color: rgba(150, 155, 175, .45); }

.card-row { display: flex; gap: 12px; margin-bottom: 0; }
.card-row .card-field { flex: 1; margin-bottom: 0; }

.btn-retour {
    background: none;
    border: none;
    color: rgba(200, 200, 220, .5);
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
    margin-top: 14px;
    transition: color .2s;
}

.btn-retour:hover { color: goldenrod; }

.step-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.4rem;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.25);
    transition: background .3s;
}

.step-dot.active { background: goldenrod; }
