/*
Theme Name: Les Robes Infidèles
Theme URI: https://lesrobesinfideles.com
Author: ArtMachina
Author URI: https://artmachina.pl
Description: Elegancki szablon dla dépôt-vente Les Robes Infidèles. Oparty na Bootstrap 5, bez Elementora.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: les-robes-infideles
Tags: boutique, fashion, elegant, bootstrap, custom
*/

/* ===================================
   GLOBAL STYLES
   =================================== */

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: rgb(155, 94, 50);
    --text-color: rgb(4, 0, 63);
    --text-light: #666666;
    --border-color: #e0e0e0;
    --bg-light: #f9f9f9;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Utility classes
   =================================== */

   .h1{
    font-size: 35px;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 20px;
   }

   .h2{
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--accent-color);
   }

   .h3{
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--accent-color);
   }

   .h4{
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
   }

   .h5{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
   }

   .subheader{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .5px;
    color: var(--accent-color);
   }

   .text{
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 300;
   }

   .text-light{
    color: var(--text-light);
   }

   .text-left{
    text-align: left;
   }

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

   .text-right{
    text-align: right;
   }

   .mb-10{
    margin-bottom: 10px;
   }

   .mb-13{
    margin-bottom: 13px;
   }

   .mb-20{
    margin-bottom: 20px;
   }

   .mb-30{
    margin-bottom: 30px;
   }

   .mt-10{
    margin-top: 10px;
   }

   .mt-20{
    margin-top: 20px;
   }

   .mt-30{
    margin-top: 30px;
   }

   .m-0{
    margin: 0;
   }

   .p-0{
    padding: 0;
   }

   .flex{
    display: flex;
   }

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

   .flex-between{
    justify-content: space-between;
   }

   .flex-end{
    justify-content: flex-end;
   }

   .flex-start{
    justify-content: flex-start;
   }

   .flex-wrap{
    flex-wrap: wrap;
   }

   .flex-nowrap{
    flex-wrap: nowrap;
   }

   .flex-column{
    flex-direction: column;
   }

   .flex-row{
    flex-direction: row;
   }

   .separator{
    text-align: center;
    padding-block-start: 10px;
    padding-block-end: 10px;

    &::before{
        content: "";
        display: block;
        border-block-start: 2px solid var(--accent-color);
        width: 160px;
        margin: 0 auto;
    }
   }

   .separator.separator--small{
    &::before{
        width: 60px !important;
    }
   }

   .container{
    max-width: 1200px;
   }

   .container--small{
    max-width: 790px;
   }

   .btn,
   .ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style{
    font-weight: 300;
    letter-spacing: 1.4px;
    color: #fff;
    background-color: var(--accent-color);
    border-radius: 0px 0px 0px 0px;
    padding: 7px 22px;
    text-transform: uppercase;
    font-family: var(--font-body);
    display: inline-block;
    font-size: 15px;
    position: relative;
    transition: all .3s ease-in-out;

    &::before{
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        mix-blend-mode: overlay;
        opacity: 0;
        transition: all .3s ease-in-out;
    }

    &:hover{
        color: #fff;
        background-color: var(--accent-color);

        &::before{
            opacity: 1;
        }
    }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.site-header {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* ===================================
   DESKTOP NAVIGATION
   =================================== */

.desktop-header {
    width: 100%;
}

.desktop-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
}

/* Logo in the center (inserted by walker) */
.desktop-logo-center {
    flex: 0 0 auto;
    text-align: center;
}

.desktop-logo-center .navbar-brand {
    text-decoration: none;

    img{
        width: 100%;
        max-width: 156px;
    }
}

.desktop-logo-center .brand-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent-color);
    line-height: 1.2;
    text-align: center;
    display: block;
}

/* Desktop Navigation Menu */
.desktop-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.desktop-nav li {
    list-style: none;
}

.desktop-nav .nav-link,
.desktop-nav a {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 13px 20px;
}

.desktop-nav .nav-link:hover,
.desktop-nav a:hover,
.desktop-nav .nav-link.active,
.desktop-nav a.active,
.desktop-nav .current-menu-item a {
    color: var(--accent-color);
}

.brand-text {
    display: block;
    line-height: 1.2;
    text-align: center;
    color: #C85A28;
    font-size: 2rem;
}

.navbar-brand:hover {
    color: #C85A28 !important;
    opacity: 0.8;
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem !important;
    color: #8B6F47;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #C85A28;
}

/* ===================================
   MOBILE NAVIGATION
   =================================== */

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
}

#mobileMenu{
    width: 100%;
}

/* Mobile Menu Wrapper */
.mobile-menu-wrapper {
    padding: 1.5rem 0;
}

/* Mobile Navigation Menu */
.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    list-style: none;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent-color);
    padding-left: 1rem;
}

.mobile-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;

    a{
        margin: 0px;

        img{
            max-height: 60px;
        }
    }
}

.mobile-logo .navbar-brand {
    text-decoration: none;
}

.brand-text-mobile {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent-color);
    line-height: 1.2;
    text-align: center;
    display: block;
    white-space: nowrap;
}

/* Mobile Phone Button */
.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(155, 94, 50, 0.2);
    z-index: 2;
}

.mobile-phone-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(155, 94, 50, 0.3);
}

.mobile-phone-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    z-index: 2;
    position: relative;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Hamburger Icon Container */
.hamburger-icon {
    width: 26px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Hamburger Lines */
.hamburger-icon .line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation - Closed State */
.navbar-toggler .hamburger-icon .line:nth-child(1) {
    transform: translateY(0) rotate(0);
}

.navbar-toggler .hamburger-icon .line:nth-child(2) {
    opacity: 1;
}

.navbar-toggler .hamburger-icon .line:nth-child(3) {
    transform: translateY(0) rotate(0);
}

/* Hamburger Animation - Open State (X) */
.navbar-toggler[aria-expanded="true"] .hamburger-icon .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===================================
   HOMEPAGE SECTIONS
   =================================== */

/* Main Hero Section - Store Front */
.main-hero-section {
    margin: 0;
    padding: 0;
    width: 100%;
}

.main-hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    object-fit: cover;
}

/* Title Section */
.title-section {
    padding-top: 80px;
}

.main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.title-divider {
    width: 100px;
    height: 1px;
    background: var(--accent-color);
    margin: 1rem auto;
}

/* Description Section */
.description-section {
    
}

.description-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-color);
    text-align: center;
}

.description-text p {
    margin-bottom: 1rem;
}

.description-text p strong {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Circles Section */
.circles-section {
    padding: 4rem 0;
}

.circle-card {
    text-align: center;
}

.circle-image-wrapper {
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.circle-content {
    padding: 2rem;
}

.circle-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.circle-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 1rem auto;
}

.circle-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Info Boxes */
.info-box {
    border-style: dotted;
    border-width: 2px;
    border-color: var(--accent-color);
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    margin: 30px 25px;
    --e-column-margin-right: 40px;
    --e-column-margin-left: 40px;
    padding: 40px 25px;
    background-color: #fff;
    text-align: center;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--accent-color);
    font-size: 22px;
    font-weight: 400;
}

.info-text {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-weight: 400;
    text-transform: none;
}

/* Large Image Section */
.large-image-section {
    padding: 3rem 0;

    img {
        opacity: 0;
    }
}

/* ===================================
   DEPOSER PAGE
   =================================== */

.deposer-hero {
    min-height: 425px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.deposer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-title-deposer {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 170px;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 1;
    color: rgba(255,255,255,.5);
    position: relative;
    text-align: center;
    z-index: 2;

}

.hero-subtitle-deposer {
    font-size: 2rem;
    color: rgba(255,255,255,.73);
    font-weight: 300;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    text-align: center;
}

.deposer-step {
    padding: 4rem 0;

    .row{
        &>div{
            padding: 0px;
        }
    }

    img{
        width: 100%;
        height: auto;
    }
}

.deposer-step-alt {
    background-color: var(--bg-light);
}

.step-top-row {
    margin-bottom: 10px;
}

.deposer-step .step-content {
    padding: 0 1.25rem;
}

.step-number-large {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 6.68rem;
    font-weight: 400;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: .75;
    margin-bottom: 0rem;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-right: 17px;
}

.step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0;
    text-transform: uppercase;
    padding: 10px 10px 10px 20px;
    border-left: 2px solid var(--accent-color);
}

.step-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem 0;
}

.step-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.step-text p {
    margin-bottom: 1rem;
}

.step-text ul,
.step-text ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.step-text li {
    margin-bottom: 0.5rem;
}

.deposer-cta {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.cta-title {
font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0;
    text-transform: uppercase;
    padding: 10px 10px 10px 20px;
}

.cta-divider {
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem auto;
}

.cta-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);

    strong{
        font-weight: 600;
        color: var(--accent-color);
    }
}

.deposer-step{
    .container{
        max-width: 1140px !important;

        .col-md-5,
        .col-md-7{
            overflow: hidden;
        }
    }
}

.deposer-step-alt{
    .row.step-top-row{
        flex-direction: row-reverse;

        .col-lg-5{
            text-align: left;
            .step-number-large{
                text-align: left;
                justify-content: flex-start;
                padding-left: 17px;
            }
        }

        .col-lg-7{
            text-align: right;

            .step-title{
                  padding: 10px 20px 10px 10px;
                    border-right: 2px solid var(--accent-color);
                    border-left: none;
            }
        }
    }
    
    .row:nth-child(2){
        flex-direction: row-reverse;

        .col-lg-7{
            text-align: right;
        }

    }
}

/* ===================================
   QUI SOMMES NOUS PAGE
   =================================== */


.qui-sommes-title {
    padding: 2rem 0;
}

.qui-sommes-container{
    max-width: 790px !important;
}

.page-title-qui {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.title-divider-qui {
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    margin: 1rem auto;
}

.qui-sommes-content {
    padding: 0 0 3rem;
}

.qui-sommes-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
}

.qui-sommes-text p {
    margin-bottom: 1.5rem;
}

.qui-sommes-form {
    padding: 3rem 0 4rem;
    background-color: var(--bg-light);
}

.form-title-qui {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-form-qui {
    max-width: 100%;
}

.contact-form-qui .form-control,
.ff-default .ff-el-form-control {
    border-radius: 0 !important;
    border: 1px solid var(--border-color) !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    background-color: var(--secondary-color) !important;
}

.contact-form-qui .form-control:focus,
.ff-default .ff-el-form-control:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(155, 94, 50, 0.1) !important;
}

.contact-form-qui textarea.form-control {
    resize: vertical;
}

#fluentform_1_success{
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    background-color: #fff;
    padding: 1rem;
    border-radius: 0;
    text-align: center;

    p{
        margin-bottom: 0;
    }
}

/* ===================================
   VENIR PAGE
   =================================== */

.venir-hero {
    padding: 0 0 2rem;
}

.venir-title {
    padding: 2rem 0;
}

.page-title-venir {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.title-divider-venir {
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    margin: 1rem auto;
}

.venir-content {
    padding: 0 0 3rem;
}

.venir-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.venir-info{
    .col-md-6{
        padding: 20px;
    }
}

.venir-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0rem;
}

.venir-info-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
}

.venir-info-box h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.venir-map {
    padding: 3rem 0 4rem;
    background-color: var(--bg-light);
}

.venir-map .map-container {
    width: 100%;
    height: 450px;
    border: 1px solid var(--border-color);
}

.venir-map iframe {
    width: 100%;
    height: 100%;
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}



/* ===================================
   CARDS & COLUMNS
   =================================== */

.info-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===================================
   CAROUSEL
   =================================== */

.carousel-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-custom {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-custom:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-custom-light {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-custom-light:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* ===================================
   FORMS
   =================================== */

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

.form-control {
    border-radius: 0;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all .3s ease-in-out;
}

.form-control:focus {
    border-color: var(--accent-color);;
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.1);
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 14px 0;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
}

.site-footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--accent-color);
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    /* Mobile Navigation */
    .navbar-nav-wrapper {
        flex-direction: column;
    }
    
    .navbar-left,
    .navbar-right {
        width: 100%;
        justify-content: center;
    }
    
    .navbar-brand-center {
        order: -1;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 767px) {
    /* Mobile Header Adjustments */
    .site-header {
        padding: 0.5rem 0;
    }
    
    .mobile-header {
        padding: 0.75rem 0;
    }
    
    .brand-text-mobile {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .mobile-phone-btn {
        width: 40px;
        height: 40px;
    }
    
    .mobile-phone-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Mobile Menu */
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 1.1rem;
    }
    
    /* Content */
    .main-title {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .carousel-item img {
        height: 300px;
    }
    
    .circle-image-wrapper {
        width: 90%;
        height: 100%;
        aspect-ratio: 1 / 1;
    }
    
    .info-box {
        min-height: auto;
        padding: 1.5rem 1rem;
    }
    
    .description-text {
        font-size: 0.9rem;
    }
    
    .hero-title-deposer {
        font-size: 3rem;
    }

    .hero-subtitle-deposer{
        font-size: 1.2rem;
    }

    .step-top-row{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: 100vw;
        padding: 0 1rem;

        .col-lg-5,
        .col-lg-7{
            width: auto;
        }
    }
    
    .step-number-large {
        font-size: 3.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        max-width: 75vw;
    }

    .step-text{
        padding-top: .6rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .deposer-step {
        padding: 2rem 0;
    }
    
    .page-title-qui {
        font-size: 1.5rem;
    }
    
    .qui-sommes-text {
        font-size: 0.9rem;
    }
    
    .form-title-qui {
        font-size: 1.1rem;
    }
    
    .page-title-venir {
        font-size: 2rem;
    }
    
    .venir-intro {
        font-size: 0.9rem;
    }
    
    .venir-subtitle {
        font-size: 1rem;
    }
    
    .venir-map .map-container {
        height: 300px;
    }

    .deposer-step-alt{
        .col-lg-5,
        .col-lg-7{
            text-align: left !important;
        }
        
        .row.step-top-row{
            flex-direction: row;

            .step-number-large{
                padding-left: unset !important;
            }

            .col-lg-5,
            .col-lg-7{
                text-align: left !important;
            }
            
            .step-title {
                padding: 10px 10px 10px 20px !important;
                border-left: 2px solid var(--accent-color) !important;
                border-right: none !important;
            }
        }
    }

    .venir-info-box.text-right{
        text-align: left !important;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575px) {
    .brand-text-mobile {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .mobile-phone-btn {
        width: 38px;
        height: 38px;
    }
    
    .mobile-phone-btn svg {
        width: 16px;
        height: 16px;
    }
}
