/* Styles pour Taxi Capsules (Les TC) - Design moderne et épuré */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
    font-size: 18px;
}

body {
    font-family: 'Funnel Sans', sans-serif;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    color: #333; /* Gris foncé */
    background-color: #fafafa; /* Blanc cassé pour épuré */
    line-height: 1.75;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

header {
    background-color: #000; /* Noir */
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 2000px;
}

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    margin: 0;
    color: #e53935; /* Rouge plus moderne */
    font-weight: 700;
}

ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #e53935; /* Rouge */
}

#hero {
    background-image: url('prototype_fin.png');
    background-size: cover;
    background-position: center;   /* centre l’image */
    background-repeat: no-repeat;  /* évite la répétition */
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    background-color: #000; /* Fond noir pour faire ressortir le texte */
    border-radius: 50px;
    background-clip: padding-box;    
}

#hero p {
    font-size: 1.3rem;
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

button {
    background-color: #e53935;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

button:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

/* Style spécial pour le bouton book-btn */
#book-btn {
    font-size: 1.4em;
    padding: 0.6em 0.8em;
    border-radius: 0.5em;
    border: none;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    box-shadow: 2px 2px 3px #000000b4;
}

.container {
    position: relative;
    padding: 3px;
    background: linear-gradient(90deg, #03a9f4, #f441a5);
    border-radius: 0.9em;
    transition: all 0.4s ease;
}

.container::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 0.9em;
    z-index: -10;
    filter: blur(0);
    transition: filter 0.4s ease;
}

.container:hover::before {
    background: linear-gradient(90deg, #03a9f4, #f441a5);
    filter: blur(1.2em);
}

.container:active::before {
    filter: blur(0.2em);
}

#features {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fff;
    max-width: auto;
}

#features h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 700;
}

.feature {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #e53935;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Styles pour les pages spécifiques */

#services, #about, #contact {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

#about {
    text-align: left;
}

#about h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: 15px;
    max-height: 720px;
}

.about-image img {
    width: 110%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #e53935;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.about-text strong {
    color: #e53935;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #about {
        text-align: center;
    }
    
    .about-text h3 {
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
}

.service {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #e53935;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#booking-hero {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
}

#booking-hero .hero-content {
    padding: 2rem;
}

#booking-hero .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #e53935;
    font-weight: 700;
    margin-bottom: 1rem;
}

#booking-hero h2 {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #111;
}

#booking-hero p {
    max-width: 560px;
    opacity: 0.85;
}

.hero-card {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    display: grid;
    gap: 1rem;
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.2rem 1.4rem;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
}

.hero-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 1rem;
}

#booking-form {
    padding: 2rem 1rem 4rem;
    display: flex;
    justify-content: center;
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

#booking-form .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 520px;
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    position: relative;
    background-color: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

#booking-form .title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #e53935;
}

#booking-form .title::before,
#booking-form .title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #e53935;
}

#booking-form .title::before {
    top: 3px;
}

#booking-form .title::after {
    top: 3px;
    animation: pulse 1s linear infinite;
}

#booking-form .message,
#booking-form .signin {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
}

#booking-form .flex {
    display: flex;
    width: 100%;
    gap: 12px;
}

#booking-form .form label {
    position: relative;
    display: block;
}

#booking-form .form label .input {
    background-color: #1a1a1a;
    color: #fff;
    width: 100%;
    padding: 18px 8px 8px 10px;
    outline: 0;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    font-size: 1rem;
}

#booking-form .form label .input + span {
    color: rgba(255, 255, 255, 0.65);
    position: absolute;
    left: 12px;
    top: 0px;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

#booking-form .form label .input:focus + span,
#booking-form .form label .input:valid + span {
    color: #e53935;
    top: -8px;
    font-size: 0.75em;
    font-weight: 600;
}

#booking-form .form .input::placeholder {
    color: transparent;
}

#booking-form .submit {
    border: none;
    outline: none;
    padding: 14px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
    background-color: #e53935;
    cursor: pointer;
}

#booking-form .submit:hover {
    background-color: #ff5b4e;
}

#booking-form label {
    margin-bottom: 0;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}


label {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-top: 0;
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    font-size: 1rem;
    background: #fafafa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

p,
li,
label,
a,
button,
input,
select,
textarea {
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 4px rgba(229,83,103,0.12);
}

button {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.booking-summary {
    background: linear-gradient(180deg, #fff 0%, #f9f5f3 100%);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    border: 1px solid rgba(0,0,0,0.05);
    min-height: 100%;
}

.booking-summary h3 {
    margin: 0;
    font-size: 1.6rem;
    color: #111;
}

.booking-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.booking-summary li {
    position: relative;
    padding-left: 1.6rem;
    color: #444;
}

.booking-summary li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #e53935;
    font-weight: 700;
}

@media (max-width: 960px) {
    #booking-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-card {
        padding: 1.6rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    header {
        padding: 1rem;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    button {
        padding: 1rem 1.4rem;
    }
}

/* Styles pour la page contact */
#contact-intro {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

#contact-intro h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 1rem;
}

#contact-info {
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #fafafa;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    margin: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #e53935;
    margin-bottom: 0.5rem;
}

#contact-form {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

#contact-form h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #000;
    margin-bottom: 2rem;
}

#contact-form form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

#reservation-page {
    padding: 5rem 1rem;
    min-height: calc(100vh - 160px);
    background: radial-gradient(circle at top, rgba(229,83,103,0.08), transparent 35%), #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-card {
    width: min(100%, 620px);
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 90px rgba(0,0,0,0.14);
    border: 1px solid rgba(229,83,103,0.12);
}

.reservation-card h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    color: #111;
    margin: 0 0 0.75rem 0;
}

.reservation-card p {
    margin: 0 0 2rem 0;
    color: #555;
    line-height: 1.7;
}

.reservation-form {
    display: grid;
    gap: 1.4rem;
}

.reservation-form .field {
    display: grid;
    gap: 0.6rem;
    width: 575px;
}

.reservation-form label {
    font-size: 0.95rem;
    color: #444;
    font-weight: 600;
}

.reservation-form .input {
    width: 100%;
    padding: 1.15rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fbfbfb;
    color: #111;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.reservation-form .input:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 4px rgba(229,83,103,0.12);
    transform: translateY(-1px);
}

.submit-button {
    width: 100%;
    padding: 1.25rem;
    border-radius: 999px;
    border: none;
    background-color: #e53935;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(229,83,103,0.2);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.submit-button:hover {
    background-color: #ff5b57;
    transform: translateY(-2px);
}

@media (max-width: 720px) {
    #reservation-page {
        padding: 3rem 1rem;
    }

    .reservation-card {
        padding: 2rem;
    }
}

#admin-panel {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 2rem;
        }
        #bookings-container {
            display: flex;
            gap: 2rem;
        }
        #normal-bookings, #trip-bookings {
            flex: 1;
        }
        #normal-bookings h3, #trip-bookings h3 {
            font-family: 'Bebas Neue', sans-serif;
            color: #e53935;
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        .booking-item {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .booking-item h4 {
            margin-top: 0;
        }
        .booking-actions {
            margin-top: 1rem;
            display: flex;
            justify-content: space-between;
        }
        .booking-actions button {
            flex: 1;
        }
        .booking-divider {
            width: 2px;
            background-color: #e53935;
            align-self: stretch;
        }

/* Scrollbar moderne et épurée en gris */
::-webkit-scrollbar {
    width: thin;
}

::-webkit-scrollbar-track {
    background: rgb(66, 66, 66);
}

::-webkit-scrollbar-thumb {
    background: rgb(123, 123, 123);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(66, 66, 66);
}

/* Pour Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* Popup pour les horaires */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.72);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1.5rem;
}

.popup-content {
    background: rgba(10,10,10,0.96);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.55);
    border: 1px solid rgba(229,83,103,0.18);
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.close-btn:hover {
    color: #e53935;
    opacity: 1;
}

.popup-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #e53935;
    margin-bottom: 1.3rem;
    font-size: 2rem;
}

.popup-content p {
    margin: 0.7rem 0;
    color: #eee;
    font-size: 1.1rem;
}

.trips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    text-align: left;
}

.trip-item {
    background: #111;
    padding: 1.2rem 1.1rem;
    border-radius: 14px;
    border-left: 4px solid #e53935;
    font-size: 1.15rem;
    color: #f1f1f1;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.trip-item:hover {
    cursor: pointer;
    background: #e53935;
    color: #fff;
    transform: translateY(-3px);
}

.admin-modal-content {
    max-width: 420px;
    padding: 2.2rem;
}

.admin-modal-content input {
    width: 320px;
    padding: 1rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    background: #111;
    color: #fff;
    font-size: 1rem;
    margin-top: 1rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-actions button {
    min-width: 140px;
    padding: 1rem 1.4rem;
    border-radius: 50px;
    border: none;
    background-color: #e53935;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(229,83,103,0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.modal-actions button:hover {
    background-color: #ff5b57;
    transform: translateY(-2px);
}

.site-notification {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0) scale(0.95);
    background: rgba(14,14,14,0.96);
    color: #fff;
    padding: 1.1rem 1.4rem;
    border-radius: 24px;
    border: 1px solid rgba(229,83,103,0.18);
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    max-width: 320px;
    text-align: center;
    font-weight: 600;
}

.site-notification.show {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.site-notification.success {
    border-left: 4px solid #4caf50;
}

.site-notification.error {
    border-left: 4px solid #e53935;
}

.site-notification.info {
    border-left: 4px solid #2196f3;
}

@media (max-width: 640px) {
    .admin-modal-content {
        width: 100%;
        padding: 1.6rem;
    }

    .site-notification {
        width: min(90%, 320px);
    }
}

@media (max-width: 640px) {
    .popup-content {
        padding: 2rem;
    }

    .popup-content h3 {
        font-size: 1.8rem;
    }

    .trips-list {
        grid-template-columns: 1fr;
    }
}

.trip-item strong {
    color: #e53935;
}

.trip-item:hover strong {
    color: #000;
}
#hero-modern {
            background-image: url(Oral_ETLV_Amsterdam.png);
            background-size: cover;
            background-position: center;
            color: #fff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-modern-content {
            max-width: 800px;
            z-index: 2;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .hero-modern-content h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            margin: 0 0 1.5rem 0;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .hero-modern-content p {
            font-size: 1.3rem;
            margin: 0 0 0 0;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-modern-cta {
            display: inline-block;
            background-color: #fff;
            color: #e53935;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
            text-decoration: none;
            font-family: 'Funnel Sans', sans-serif;
            max-width: 250px;
        }

        .hero-modern-cta:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
        }

        .hero-modern-content .hero-modern-cta {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: auto;
            max-width: 320px;
        }

        .hero-modern-content .hero-modern-cta + .hero-modern-cta {
            margin-top: 0;
        }



        @media (max-width: 768px) {
            #hero-modern {
                min-height: 70vh;
                padding: 2rem 1rem;
            }

            .hero-modern-content h2 {
                font-size: 2.5rem;
            }

            .hero-modern-content p {
                font-size: 1.1rem;
            }
        }