/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #1a1a1a;
    --color-dark-light: #2a2a2a;
    --color-brand-blue: #1e3a5f;
    --color-brand-blue-dark: #152d4a;
    --color-brand-blue-light: #2c4d75;
    --color-text: #1e3a5f;
    --color-text-light: #2c4d75;
    --color-accent: #1e3a5f;
    --color-accent-light: #2c4d75;
    --color-bg: #fafafa;
    --color-bg-alt: #f5f5f5;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-brand-blue);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-brand-blue);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    position: relative;
    min-height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    order: 2;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-brand-blue);
    display: none;
}

@media (min-width: 769px) {
    .logo-img {
        height: 60px;
    }
}

.nav {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--spacing-md);
    align-items: center;
    height: 100%;
}

.nav-left {
    justify-content: flex-start;
    flex: 1;
    order: 1;
}

.nav-right {
    justify-content: flex-end;
    flex: 1;
    gap: var(--spacing-sm);
    align-items: center;
    display: flex;
    order: 3;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text);
    padding: 0.25rem 0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-brand-blue);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a.nav-contact-btn {
    padding: 0.5rem 1.25rem;
    background-color: var(--color-brand-blue);
    color: #ffffff !important;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav a.nav-contact-btn:hover {
    background-color: var(--color-brand-blue-dark);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav a.nav-contact-btn::after {
    display: none;
}

.header-contact a {
    color: var(--color-text-light);
    white-space: nowrap;
}

.language-switcher {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: flex;
    gap: 0.25rem;
    align-items: center;
    white-space: nowrap;
}

.language-switcher .active {
    color: var(--color-brand-blue);
    font-weight: 500;
}

/* Mobile Contact Button */
.mobile-contact-btn {
    display: none;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: var(--color-brand-blue);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.mobile-contact-btn:hover {
    background-color: var(--color-brand-blue);
    color: white;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background-color: var(--color-brand-blue);
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 5rem var(--spacing-md) var(--spacing-md);
    overflow-y: auto;
}

.mobile-menu-panel.active {
    left: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav a {
    font-size: 1.1rem;
    color: var(--color-text);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--color-brand-blue);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--spacing-lg) var(--spacing-sm);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    color: white;
    padding: var(--spacing-md);
}

.hero-name {
    font-size: 3rem;
    color: white;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    line-height: 1.8;
}

.hero-location {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.hero-contact {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background-color: white;
    color: var(--color-brand-blue);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-contact-btn:hover {
    background-color: var(--color-brand-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 1.1rem;
}

/* Scroll Down Button */
.scroll-down-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.scroll-arrow {
    font-size: 2rem;
    line-height: 1;
    animation: bounce 2s infinite;
    opacity: 0.9;
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.scroll-down-btn:hover .scroll-text {
    opacity: 1;
    transform: translateY(0);
}

.scroll-down-btn:hover .scroll-arrow {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--color-brand-blue);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    background-color: var(--color-brand-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
}

.call-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(30, 58, 95, 0.5);
    }
    100% {
        box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
    }
}


/* Sections */
.section {
    padding: var(--spacing-xl) var(--spacing-sm);
    scroll-margin-top: 120px;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-brand-blue);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto;
}

.content-text p {
    margin-bottom: var(--spacing-md);
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* À propos Section - 3 Column Layout (Image Left, Text Center, Image Right) */
.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text {
    flex: 1;
    width: 100%;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-image-left,
.about-image-right {
    order: 1;
}

.about-text {
    order: 2;
}

/* Prestations - 2 Column Layout */
.prestations-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

.prestations-image {
    width: 100%;
    max-width: 500px;
}

.prestations-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.prestations-text {
    flex: 1;
    width: 100%;
}

.prestations-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
}

.prestations-list li {
    padding-left: var(--spacing-md);
    position: relative;
    margin-bottom: var(--spacing-sm);
}

.prestations-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-brand-blue);
    font-size: 1.5rem;
    line-height: 1.5;
}

/* Section Head */
.section-head {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-brand-blue);
}

.section-head p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery - Professional Grid Layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.gallery .card {
    position: relative;
    overflow: hidden;
    margin: 0;
    background-color: var(--color-dark-light);
    border-radius: 4px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery .card:hover img {
    transform: scale(1.08);
}

/* Testimonials */
.testimonials {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: var(--spacing-lg);
}

.testimonial {
    padding: var(--spacing-md);
    background-color: white;
    border-left: 3px solid var(--color-brand-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-align: right;
}

/* Contact */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container {
    width: 100%;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 400;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--color-text);
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-brand-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    padding: 1rem 2.5rem;
    background-color: var(--color-brand-blue);
    color: white;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.form-submit-btn:hover {
    background-color: var(--color-brand-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-details {
    margin-bottom: var(--spacing-md);
}

.contact-link {
    display: block;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.contact-address {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--color-text-light);
}

.payment-methods {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-title {
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

/* Footer */
.footer {
    background-color: var(--color-brand-blue-dark);
    color: white;
    padding: var(--spacing-md) var(--spacing-sm);
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: white;
}

/* Responsive Design */
@media (min-width: 769px) {
    /* Desktop: 2-column layouts */
    .about-content {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-lg);
    }

    .about-image-left {
        flex: 0 0 20%;
        max-width: 300px;
        order: 1;
    }

    .about-text {
        flex: 1;
        order: 2;
        text-align: center;
        padding: 0 var(--spacing-lg);
        min-width: 0;
        flex-basis: 50%;
    }

    .about-image-right {
        flex: 0 0 20%;
        max-width: 300px;
        order: 3;
    }

    .about-image {
        max-width: none;
    }

    .prestations-content {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-xl);
    }

    .prestations-image {
        flex: 1;
        max-width: none;
    }

    .prestations-text {
        flex: 1;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--spacing-sm);
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .section-head p {
        font-size: 1rem;
    }

    .contact-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-form-container {
        flex: 1;
    }

    .contact-info {
        flex: 1;
        text-align: left;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-name {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .header-container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        min-height: 60px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .logo-link {
        flex: 0;
        min-width: auto;
        order: 2;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-left {
        order: 1;
        flex: 1;
    }

    .nav-right {
        order: 3;
        flex: 1;
    }

    .nav-contact-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .logo-img {
        height: 45px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .language-switcher {
        display: none;
    }

    .burger-menu {
        display: flex;
        position: absolute;
        left: var(--spacing-sm);
    }

    .mobile-menu-panel {
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        background-attachment: scroll;
        min-height: 90vh;
    }

    .hero-contact {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .hero-contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .scroll-down-btn {
        bottom: 1.5rem;
    }

    .scroll-arrow {
        font-size: 1.5rem;
    }

    .scroll-text {
        font-size: 0.75rem;
    }

    .floating-call-btn {
        right: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }

    .call-icon {
        width: 22px;
        height: 22px;
    }


    .gallery {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .gallery .card {
        aspect-ratio: 4 / 3;
    }

    .section-head {
        margin-bottom: var(--spacing-lg);
    }

    .section-head h2 {
        font-size: 1.75rem;
    }

    .section-head p {
        font-size: 0.95rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .prestations-list {
        font-size: 1rem;
    }

    .about-image {
        max-width: 100%;
    }

    .prestations-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

