/* ==========================================
   GLOBAL STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f0e8e4;
    color: #333;
    line-height: 1.6;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(155, 75, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.7rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #e8e3dc;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e8e3dc;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: white;
    color: #9B4B3A !important;
    padding: 0.45rem 1.3rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: #e8e3dc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================
   HEADER / HERO SECTION
   ========================================== */

.header {
    position: relative;
    padding: 100px 5% 60px 5%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    background-image: url('EF5249F0-56FC-4936-AB7A-7F7CA6419E27 (1).jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    will-change: background-position;
}

.heros {
    font-family: 'Comfortaa', sans-serif;
    color: aliceblue;
    background-color: #9B4B3A;
    text-align: center;
    padding: 2rem 1.5rem;
    width: 380px;
    flex-shrink: 0;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.heros p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 520px;
    flex: 1;
    animation: fadeInRight 1s ease-out;
}

.hero-service-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 22px 18px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
}

.hero-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-service-card i {
    font-size: 1.8rem;
    color: #9B4B3A;
    margin-bottom: 10px;
}

.hero-service-card h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.hero-service-card p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset des liens pour les cards */
.hero-service-card {
    text-decoration: none;
    color: inherit;
}

.hero-service-card:visited {
    color: inherit;
}

.hero-service-card:hover {
    text-decoration: none;
}

.hero-service-card h3,
.hero-service-card p {
    text-decoration: none;
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */

.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 5%;
}

.section-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: #9B4B3A;
    margin-right: 20px;
}

.section-content {
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: #444;
}

.section-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
}

.columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.column {
    flex: 1;
}

.column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05em;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #444;
}

.column ul {
    list-style: none;
}

.column ul li {
    font-size: 0.95em;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.column ul li i {
    color: #9B4B3A;
    font-size: 1.1em;
    position: absolute;
    left: 0;
}

.column p {
    font-size: 0.95em;
    font-style: italic;
    line-height: 1.7;
    color: #666;
}

/* ==========================================
   CTA INLINE (REMONTÉS)
   ========================================== */

.cta-inline {
    margin-top: 25px;
    text-align: center;
}

.cta-button-small {
    display: inline-block;
    background-color: #9B4B3A;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 75, 58, 0.3);
}

.cta-button-small:hover {
    background-color: #7d3d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 75, 58, 0.4);
}

.cta-button-small i {
    margin-right: 8px;
}

/* ==========================================
   PHOTOGRAPHY SECTION
   ========================================== */

.photography-section {
    background-color: #e8e3dc;
    border-radius: 25px;
    padding: 50px 30px !important;
}

.photography-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 20px;
}

.photography-text {
    flex: 1;
}

.photography-text h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.15em;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #444;
}

.photography-quote {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 0.9em;
}

.quote-block {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: rgba(155, 75, 58, 0.1);
    border-radius: 15px;
}

.quote-text {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.3em;
    font-style: italic;
    color: #9B4B3A;
    line-height: 1.5;
}

/* ==========================================
   SERVICE ICONS
   ========================================== */

.service-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background-color: rgba(155, 75, 58, 0.1);
    border-radius: 12px;
    flex: 1;
    min-width: 90px;
    transition: all 0.3s ease;
}

.service-icon-item:hover {
    background-color: rgba(155, 75, 58, 0.2);
    transform: translateY(-3px);
}

.service-icon-item i {
    font-size: 1.3rem;
    color: #9B4B3A;
}

.service-icon-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #444;
    text-align: center;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials-section {
    background-color: #9B4B3A;
    padding: 50px 5%;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #f5f5f5;
    display: flex;
    align-items: center;
}

.testimonials-title::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #d9cecc;
    margin-right: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: #bb3602;
    margin-bottom: 10px;
}

.testimonial-stars i {
    font-size: 0.95rem;
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.testimonial-author {
    font-weight: 600;
    color: #9B4B3A;
    text-align: right;
    font-size: 0.85rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: #333;
    color: white;
    padding: 60px 5% 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #e8e3dc;
}

.footer-column p {
    line-height: 1.8;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #9B4B3A;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list i {
    color: #9B4B3A;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #9B4B3A;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #bb3602;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #555;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin: 10px 0;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #9B4B3A;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-hero {
    background: linear-gradient(135deg, #9B4B3A 0%, #7d3d2f 100%);
    padding: 150px 5% 80px;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 1.2rem;
    font-style: italic;
}

.contact-section {
    padding: 80px 5%;
    background-color: #f0e8e4;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9B4B3A;
    box-shadow: 0 0 0 3px rgba(155, 75, 58, 0.1);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #9B4B3A;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #7d3d2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(155, 75, 58, 0.3);
}

.submit-button i {
    margin-right: 10px;
}

.contact-info-card {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item i {
    color: #9B4B3A;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-info-item h4 {
    margin-bottom: 5px;
    color: #333;
}

.contact-info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #9B4B3A;
}

.social-links {
    text-align: center;
}

.social-links h3 {
    font-family: 'Comfortaa', sans-serif;
    margin-bottom: 20px;
    color: #333;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #9B4B3A;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #7d3d2f;
    transform: translateY(-5px);
}

/* ==========================================
   CALENDLY SECTION
   ========================================== */

.calendly-section {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(155, 75, 58, 0.1) 0%, rgba(155, 75, 58, 0.05) 100%);
    border-radius: 20px;
}

.calendly-section h3 {
    font-family: 'Comfortaa', sans-serif;
    margin-bottom: 10px;
    color: #333;
}

.calendly-section p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.calendly-button {
    display: inline-block;
    background: linear-gradient(135deg, #9B4B3A 0%, #7d3d2f 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 75, 58, 0.3);
}

.calendly-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(155, 75, 58, 0.4);
}

.calendly-button i {
    margin-right: 10px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .columns {
        flex-direction: column;
        gap: 30px;
    }

    .photography-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .service-icons {
        justify-content: center;
    }

    .header {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
    }

    .heros {
        width: 100%;
        max-width: 380px;
    }

    .hero-services {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(155, 75, 58, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .header {
        padding: 100px 5% 50px;
        min-height: auto;
        background-position: center center;
        background-attachment: scroll;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .heros {
        width: 100%;
        max-width: 360px;
    }

    .hero-services {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .content {
        padding: 40px 5%;
    }

    .section-title {
        font-size: 1.5rem;
        flex-wrap: wrap;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .service-icons {
        flex-direction: column;
    }

    .service-icon-item {
        flex-direction: row;
        justify-content: flex-start;
    }

    /* CTA centré sur mobile */
    .cta-inline {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .cta-button-small {
        display: inline-block;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        white-space: normal;
        padding: 12px 20px;
    }

    .testimonials-title {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-services {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .section-title {
        font-size: 1.3rem;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-slow {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease-out;
}

.reveal-slow.active {
    opacity: 1;
    transform: translateY(0);
}
