/* RÃ©initialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: Arial, sans-serif;*/
}

body {
    line-height: 1.6;
    color: #333;
}

/* Navbar */
.navbar {
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    display: inline-block;
}

.logo-paris {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    /* Black */
    font-style: italic;
    letter-spacing: -0.1rem;
    transform: scaleY(1.2);
    text-transform: uppercase;
    /* Majuscules */
}

.logo-espace-auto {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: italic;
    letter-spacing: -0.1rem;
    transform: scaleY(1.2);
    text-transform: uppercase;
    /* Majuscules */
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger ion-icon {
    font-size: 1.8rem;
    color: #ffcc00;
    vertical-align: middle;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links a:hover {
    color: #ffcc00;
}

/* Featured Links */
.featured-links {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.link-card {
    width: 390px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.link-image {
    height: 200px;
    background: no-repeat center/cover;
}

.link-content {
    padding: 1.5rem;
    text-align: center;
}

.link-content h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.link-content h3 ion-icon {
    font-size: 1.8rem;
    color: #ffcc00;
    margin-right: 0.5rem;
}

.link-arrow {
    color: #ffcc00;
    font-weight: bold;
}

.link-arrow ion-icon {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.bannerBkg {
    background-image: url("../images/home_ps/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

/* Hero Slider */
.hero {
    height: 360px;
    position: relative;
    margin-top: 0px;
}

.slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 33.33%;
    height: 100%;
    background: no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button {
    padding: 1rem 2rem;
    background: #ffcc00;
    border: none;
    color: #1a1a1a;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}
.cta-button:hover {
    cursor: pointer;
}

/* Boutons Slider */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 1rem;
    cursor: pointer;
}

.prev ion-icon,
.next ion-icon {
    font-size: 1.8rem;
    color: #ffcc00;
    vertical-align: middle;
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #ffcc00;
}

/* Services */
.services {
    padding: 4rem 2rem;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-box {
    width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-box h3 ion-icon {
    font-size: 1.8rem !important;
    color: #ffcc00 !important;
    margin-right: 0.5rem;
}

/* Additional Services */
.additional-services {
    padding: 4rem 2rem;
    background: #dfdeda;
    border-top: solid 1px #ffcc00;
}

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

.additional-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-item {
    width: 500px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item h3 ion-icon {
    font-size: 1.8rem;
    color: #ffcc00;
    margin-right: 0.5rem;
}

.service-item ul {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.service-item ul li {
    margin-bottom: 0.5rem;
}

/* About */
.about {
    padding: 4rem 2rem;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    width: 500px;
}

.about-image img {
    width: 400px;
    border-radius: 10px;
}

/* Contact */
.contact {
    padding: 4rem 2rem;
    background: #f3f2f2;
    border-top: solid 1px #ffcc00;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    width: 500px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.contact-info {
    width: 500px;
    text-align: left;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info p ion-icon {
    font-size: 1.6rem;
    color: #ffcc00;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    padding: 2rem;
    background: #1a1a1a;
    color: white;
    text-align: right;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    display: inline-block;
}

.footer-logo .logo-paris {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    /* Black */
    font-style: italic;
    letter-spacing: -0.1rem;
    transform: scaleY(1.2);
    text-transform: uppercase;
    /* Majuscules */
}

.footer-logo .logo-espace-auto {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: italic;
    letter-spacing: -0.1rem;
    transform: scaleY(1.2);
    text-transform: uppercase;
    /* Majuscules */
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social ion-icon {
    font-size: 1.6rem;
    color: #ffcc00;
}

.footer-copy {
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .featured-links,
    .services-container,
    .services-grid,
    .about-container,
    .contact-container,
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .link-card,
    .service-box,
    .service-item,
    .about-text,
    .about-image img,
    .contact-form,
    .contact-info {
        width: 100%;
        max-width: 350px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .logo a,
    .footer-logo {
        font-size: 1.5rem;
    }

    ion-icon {
        font-size: 1.3rem;
    }

    .link-content h3 ion-icon,
    .service-box h3 ion-icon,
    .service-item h3 ion-icon {
        font-size: 1.5rem !important;
    }

    .link-arrow ion-icon {
        font-size: 1.3rem;
    }

    .contact-info p ion-icon {
        font-size: 1.4rem;
    }

    .prev ion-icon,
    .next ion-icon {
        font-size: 1.5rem;
    }

    .hamburger ion-icon {
        font-size: 1.5rem;
    }

    .footer-social ion-icon {
        font-size: 1.4rem;
    }
}