* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1D1D1F;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(29, 29, 31, 0.85);
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 1.2rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    gap: 3.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: white;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-home {
    display: flex;
    align-items: center;
}

.home-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.hero-slideshow {
    position: relative;
    width: 100%;
}

.hero-title-band {
    background: linear-gradient(135deg, #1D1D1F 0%, #2D2D2F 100%);
    padding: 5rem 0 2.5rem 0;
    text-align: center;
}

.hero-title-band h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin: 0;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 20s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.hero-slogan-band {
    background: linear-gradient(135deg, #1D1D1F 0%, #2D2D2F 100%);
    padding: 2rem 0;
    text-align: center;
}

.hero-slogan {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.hero-content-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5EFE0 100%);
}

.hero-content-box {
    background: rgba(0, 113, 227, 0.92);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem 2rem 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.hero-line-1,
.hero-line-3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}

.hero-highlight {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.25rem 0;
    line-height: 1.4;
}

.hero-line-3 {
    margin: 0.75rem 0 1.75rem 0;
    font-style: normal;
    font-size: 1.4rem;
}

.cta-button {
    display: inline-block;
    background: #FFFFFF;
    color: #0071E3;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.45);
}

.prestations {
    padding: 5rem 0;
    background: #FFFFFF;
}

.prestations h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: #1D1D1F;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.prestation {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.prestation:hover {
    transform: translateY(-10px);
    outline: 3px solid #0071E3;
    outline-offset: -3px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.prestation-header {
    background: linear-gradient(135deg, #1D1D1F 0%, #2D2D2F 100%);
    padding: 1.5rem;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestation-header h3 {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.prestation-content {
    padding: 2rem 1.5rem;
}

.prestation ul {
    list-style: none;
}

.prestation li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1D1D1F;
    position: relative;
    padding-left: 1.5rem;
}

.prestation li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0071E3;
    font-weight: 700;
}

.lieux {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F5EFE0 0%, #FFFFFF 100%);
}

.lieux h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: #1D1D1F;
}

.lieux-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.lieu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
}

.lieu:hover {
    transform: translateY(-10px);
    outline: 3px solid #0071E3;
    outline-offset: -3px;
    box-shadow: 0 16px 48px rgba(0, 113, 227, 0.15);
    border-color: #0071E3;
}

.lieu-title-band {
    background: linear-gradient(135deg, #1D1D1F 0%, #2D2D2F 100%);
    padding: 2rem 0;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lieu-title-band h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

.badge-new-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0071E3;
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.4);
    z-index: 10;
}

.lieu-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f7;
    cursor: pointer;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.amelot-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
    cursor: default;
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    color: #d1d1d6;
    margin-bottom: 1.5rem;
}

.placeholder-content p {
    color: #86868b;
    font-size: 1.2rem;
    font-weight: 600;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(0, 113, 227, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #0077ED;
    transform: scale(1.1);
}

.lieu-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card-wide {
    grid-column: 1 / -1;
}

.label-standard {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: #6e6e73;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-card p {
    margin: 0.5rem 0 0 0;
    color: #1D1D1F;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-card strong {
    font-weight: 600;
}


.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1D1D1F 0%, #2D2D2F 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.contact-info-box,
.contact-form-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-box h3,
.contact-form-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.email-button {
    background: #0071E3;
    color: white;
}

.phone-button {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 2px solid #0071E3;
}

.email-button:hover,
.phone-button:hover {
    transform: translateY(-3px);
    background: #0077ED;
    color: white;
}

.contact-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 1.05rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0071E3;
    background: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .cta-button {
    background: #0071E3;
    color: white;
    padding: 18px 36px;
    font-size: 1rem;
}

.footer {
    background: linear-gradient(135deg, #0D0D0F 0%, #1D1D1F 100%);
    padding: 4rem 0 2rem 0;
    position: relative;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.5), transparent);
}

.footer-content {
    text-align: center;
    color: #FFFFFF;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 60px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.2);
    color: #0071E3;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 16px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 113, 227, 0.9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #0077ED;
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .lieux-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        gap: 1.2rem;
        padding: 0 15px;
    }
    
    .nav-link {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .home-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-title-band {
        border-radius: 0 0 32px 32px;
        padding: 4rem 0 2rem 0;
    }
    
    .hero-title-band h1 {
        font-size: 1.6rem;
        letter-spacing: 6px;
    }
    
    .hero-slides {
        height: 50vh;
    }
    
    .hero-slogan-band {
        border-radius: 32px 32px 0 0;
    }
    
    .hero-slogan {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        padding: 0 20px;
    }
    
    .hero-content-section {
        padding: 3rem 0;
    }
    
    .hero-content-box {
        padding: 1.5rem;
    }
    
    .hero-line-1,
    .hero-line-3,
    .hero-highlight {
        font-size: 1.05rem;
    }
    
    .prestations h2,
    .lieux h2,
    .contact h2 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .lieu-carousel {
        height: 300px;
    }
    
    .lieu-info-cards {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    
    .contact-info-box,
    .contact-form-box {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-box h3,
    .contact-form-box h3 {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .footer-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
