/* ========================================
   CONTACT PAGE  
   ======================================== */

#contact .fullscreen-content{
    padding: 0;
}

.contact-wrapper {

   
     --font-display: 'Chronicle Display', 'RecklessNeue', Georgia, serif;
    --font-body:    'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Helvetica, sans-serif;

    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background:rgb(247 245 240 / var(--tw-bg-opacity, 1));
    font-family: var(--font-body);
    font-weight: normal;
}


section#contact .left-content-wrapper::after{
    background-color: initial;
}


/* ========================================
   RIGHT SIDE - CONTACT INFORMATION
   ======================================== */
.contact-info-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
    position: relative;
    height:100vh;
}

.contact-main-title {
 font-size: 3rem;
    font-weight: 300;
    color: #1E3F35;
    letter-spacing: -0.03em;
    line-height: 0.95;
    font-family: serif;
    margin: 50px 0;
 }

/* ========================================
   CONTACT SECTIONS
   ======================================== */
.contact-block {
    margin-bottom: 10px;
    position: relative;
}

.contact-block-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
    display: block;
}

.contact-link {
    font-size: 1.5rem;
    color: #1E3F35;
    text-decoration: none;
    display: inline-block;
    position: relative;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #944F24;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:hover {
    color: #944F24;
    transform: translateX(8px);
}

.contact-link:hover::after {
    width: 100%;
}

/* Style pour le lien téléphone */
.contact-phone {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Style pour l'adresse */
.contact-address {
    font-size: 1.25rem;
    color: #1E3F35;
    line-height: 1.6;
    font-style: normal;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.contact-social-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.social-link {
    font-size: 1.125rem;
    color: #1E3F35;
    text-decoration: none;
    position: relative;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 0;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #944F24;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    color: #944F24;
    transform: translateY(-2px);
}

.social-link:hover::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE - TABLET (768px - 1023px)
   ======================================== */
@media (max-width: 1023px) {
    .contact-wrapper {

        grid-template-columns: 1fr;
    }



    .contact-info-column {
        order: 1;
        padding: 80px 60px;
        min-height: auto;
    }

    .contact-main-title {
        font-size: 3.5rem;
        margin-bottom: 50px;
    }


    .contact-link {
        font-size: 1.25rem;
    }

    .contact-phone {
        font-size: 1.5rem;
    }

    .contact-address {
        font-size: 1.125rem;
    }

    .social-link {
        font-size: 1rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (< 768px)
   ======================================== */
@media (max-width: 767px) {


    .contact-info-column {
        padding: 0px 30px;
         height: 87vh;
        text-align: center;
    }
    

    .contact-main-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .contact-block-label {
        font-size: 0.7rem;
    }

    .contact-link {
        font-size: 1.125rem;
    }

    .contact-phone {
        font-size: 1.25rem;
    }

    .contact-address {
        font-size: 1rem;
    }

    .contact-social-links {
        gap: 16px;
        flex-direction: column;
    }

    .social-link {
        font-size: 0.95rem;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (< 480px)
   ======================================== */
@media (max-width: 479px) {
    .contact-info-column {
        padding: 0px 20px;
    }

    .contact-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }


    .contact-link {
        font-size: 1rem;
    }

    .contact-phone {
        font-size: 1.125rem;
    }

    .contact-address {
        font-size: 0.95rem;
    }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-block {
    animation: fadeInUp 0.6s ease-out backwards;
}

.contact-block:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-block:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-block:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-block:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-block:nth-child(5) {
    animation-delay: 0.5s;
}

.contact-block:nth-child(6) {
    animation-delay: 0.6s;
}