/* ==========================================
   DESIGN OCEANE MAQUIGNON
   ========================================== */

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

html {
    overflow-x: clip;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: clip;
    background: #fff;
    font-size: 15px;
}

p {
    font-family: "din-2014", sans-serif;
}

/* Navigation -  */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 30px 0;
}

.navbar.hidden-content .nav-links,
.navbar.hidden-content .nav-burger {
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    box-shadow: none;
    top: 20vh;
}

.navbar.scrolled .nav-container {
    justify-content: flex-end;
    padding: 0;
    max-width: none;
    margin: 0;
}

.navbar.scrolled .nav-logo {
    display: none;
}

.navbar.scrolled .nav-links {
    display: none;
}

.navbar.scrolled .nav-burger {
    display: flex;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}


.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
    filter: none;
    height: 50px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    z-index: 1;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

/* Trait blanc avant chaque lien */
.nav-links li::before {
    content: '';
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

/* Tablette - Masquer les traits et augmenter l'espacement */
@media (min-width: 769px) and (max-width: 1041px) {
    .nav-links li::before {
        display: none;
    }

    .nav-logo::after {
        display: none;
    }

    .nav-links li {
        margin: 0 20px;
    }
}

/* Desktop - Traits et espacement */
@media (min-width: 1042px) {
    .nav-logo {
        flex: 1;
    }

    /* Trait blanc après le logo */
    .nav-logo::after {
        content: '';
        flex: 1;
        height: 1px;
        margin-right: 10px;
        background: rgba(255, 255, 255, 0.3);
        opacity: 0;
    }

    .nav-links li:first-child::before {
        display: none;
    }
}

.navbar.scrolled .nav-links li::before {
    display: none;
}

.nav-links a {
    display: block;
    padding: 0 5px;
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: #333;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Style pour les liens actifs dans la navbar */
.nav-links a.active {
    color: #8A4A3F !important;
    text-decoration: underline !important;
    text-decoration-color: #8A4A3F !important;
    text-underline-offset: 5px !important;
    text-decoration-thickness: 1px !important;
}

/* Style pour les liens actifs quand la navbar est scrollée */
.navbar.scrolled .nav-links a.active {
    color: #8A4A3F !important;
    text-decoration: underline !important;
    text-decoration-color: #8A4A3F !important;
    text-underline-offset: 5px !important;
    text-decoration-thickness: 1px !important;
}

/* Navbar overrides - Page Portfolio Mariage & Autres Prestations */
.portfolio-mariage .nav-links a,
.portfolio-autres .nav-links a {
    color: #000000 !important;
}

.portfolio-mariage .nav-links a:hover,
.portfolio-autres .nav-links a:hover {
    color: #333333 !important;
}

.portfolio-mariage .nav-links a.active,
.portfolio-autres .nav-links a.active {
    color: #8A4A3F !important;
}

.portfolio-mariage .mobile-menu ul li a,
.portfolio-autres .mobile-menu ul li a {
    color: #000000 !important;
}

.portfolio-mariage .mobile-menu ul li a:hover,
.portfolio-autres .mobile-menu ul li a:hover {
    color: #333333 !important;
}

.portfolio-mariage .mobile-menu ul li a.active,
.portfolio-autres .mobile-menu ul li a.active {
    color: #8A4A3F !important;
}

.portfolio-mariage .menu-close-btn,
.portfolio-autres .menu-close-btn {
    color: #ffffff;
}

.portfolio-mariage .nav-logo-img,
.portfolio-autres .nav-logo-img {
    filter: none;
    height: 80px;
}

.portfolio-mariage .navbar.scrolled .nav-logo-img,
.portfolio-autres .navbar.scrolled .nav-logo-img {
    height: 50px;
}

.portfolio-mariage .nav-logo::after,
.portfolio-autres .nav-logo::after {
    background: #000;
}

.portfolio-mariage .nav-links li::before,
.portfolio-autres .nav-links li::before {
    background: #000;
}

@keyframes navbarContentReveal {
    0% { clip-path: inset(0 100% 0 0); opacity: 0; }
    100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes navbarTraitReveal {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.portfolio-mariage .navbar.reveal .nav-links,
.portfolio-mariage .navbar.reveal .nav-burger,
.portfolio-autres .navbar.reveal .nav-links,
.portfolio-autres .navbar.reveal .nav-burger {
    animation: navbarContentReveal 0.8s ease-in-out forwards;
}

.portfolio-mariage .navbar.reveal .nav-logo::after,
.portfolio-autres .navbar.reveal .nav-logo::after {
    animation: navbarTraitReveal 0.8s ease-in-out forwards;
}

/* Burger Menu - Style Océane Maquignon avec carré rouge */
.nav-burger {
    display: none;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    z-index: 1001;
    position: fixed;
    right: 0;
    top: 20vh;
    width: 35px;
    height: 35px;
    justify-content: center;
}

.navbar.scrolled .nav-burger {
    display: flex;
}

.nav-burger.active {
    display: none !important;
}

.nav-burger::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 0;
    background: #a95d4f;
    z-index: 0;
    transition: all 0.3s ease;
}

.nav-burger span {
    background: #fff;
    height: 1.5px;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    align-self: flex-end;
    margin-right: 8.5px;
    position: relative;
    z-index: 1;
}

.nav-burger span:nth-child(1),
.nav-burger span:nth-child(2) {
    width: 18px;
}

.nav-burger span:nth-child(3) {
    width: 12px;
}


/* Mobile Menu - Menu vertical complet comme Océane Maquignon */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 998;
    padding: 60px 0 30px;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bouton de fermeture du menu - élément séparé */
.menu-close-btn {
    position: fixed;
    top: 20vh;
    right: 280px;
    width: 35px;
    height: 35px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    background: #a95d4f;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 999;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.menu-close-btn.active {
    display: flex;
}

.menu-close-btn:hover {
    background: #8a4a3f;
    transform: rotate(90deg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    counter-reset: menu-counter;
    overflow-y: auto;
}

.mobile-menu li {
    margin: 0;
    counter-increment: menu-counter;
}

.mobile-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 40px;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-family: 'orpheuspro', serif;
    position: relative;
    border-bottom: none;
    text-align: center;
}

.mobile-menu a::before {
    content: '0' counter(menu-counter) '.';
    font-size: 13px;
    color: #ccc;
    margin-bottom: 5px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    letter-spacing: 0;
}

.mobile-menu a.active {
    color: #8A4A3F !important;
    font-weight: 400;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px;
    width: 0;
    height: 1px;
    background: #8A4A3F;
    transition: width 0.3s ease;
}

.mobile-menu a.active::after {
    width: 60%;
    bottom: 2px;
    background: #8A4A3F;
}


.mobile-menu a:hover::after {
    width: 60%;
}

.mobile-menu a:hover {
    background: transparent;
    color: #A85D4E;
}

/* Logo en bas du menu */
.mobile-menu-logo {
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu-logo img {
    width: 120px;
    height: auto;
    opacity: 0.8;
}



/* Bouton Voir Plus / Call to Action */
.btn-voir-plus,
.cta-button {
    display: inline-block;
    position: relative;
    font-family: "din-2014", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    color: #a95d4f;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNSAxMkwxOSAxMk0xOSAxMkwxMiA1TTE5IDEyTDEyIDE5IiBzdHJva2U9IiNhOTVkNGYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=) no-repeat left center;
    background-size: 22px;
    padding: 10px 0 10px 28px;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin-top: 20px;
    display: block;
    width: fit-content;
}

.btn-voir-plus:hover,
.cta-button:hover {
    opacity: 0.7;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    opacity: 0.6;
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
}

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

/* Portfolio Section */
.portfolio-minimal {
    padding: 80px 0 100px;
    background: #fff;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Wedding Story */
.wedding-story {
    margin-bottom: 120px;
}

.wedding-image {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.wedding-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wedding-story:hover .wedding-image img {
    transform: scale(1.02);
}

.wedding-info {
    text-align: center;
    padding: 30px 0;
}

.wedding-title {
    font-family: "orpheuspro", serif;
    font-size: 28px;
    font-weight: 300;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0px;
    line-height: 1.4;
}

.wedding-location {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Contact Section */
.contact-minimal {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.contact-minimal h2 {
    font-family: "orpheuspro", serif;
    font-size: 48px;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0px;
    line-height: 1.3;
}

.contact-minimal-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-minimal-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details-minimal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details-minimal p {
    font-size: 14px;
    color: #333;
    letter-spacing: 0.5px;
}

.contact-details-minimal strong {
    color: #000;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: "orpheuspro", serif;
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0px;
}

.footer-section p,
.footer-section ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-container::before {
        display: none;
    }

    .nav-logo-img {
        height: 50px;
    }

    .nav-links {
        display: none;
    }

    .nav-burger:not(.active) {
        display: flex !important;
        top: 20px;
    }

    .menu-close-btn {
        top: 20px;
    }

    .scroll-indicator {
        display: none;
    }

    .wedding-image {
        height: 50vh;
        min-height: 350px;
    }

    .wedding-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .wedding-location {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .contact-minimal h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .container-full,
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    

    .wedding-title {
        font-size: 20px;
    }

    .wedding-image {
        height: 40vh;
        min-height: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   HERO LAYOUT - Base styles shared across pages
   ========================================== */

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* ==========================================
   FOOTER ACTION SECTION
   ========================================== */

.footer-action-section {
    width: 100%;
    background: #fff;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

.footer-action-container {
    display: flex;
    width: 100%;
}

/* Structure avec wrappers (index.html) */
.footer-action-container .footer-colonne-reseaux {
    width: 4%;
    flex: none;
}

.footer-action-container .footer-colonne-contenu {
    flex: 1;
    display: flex;
}

/* Structure sans wrappers (a-propos.html) - 3 colonnes directes */
.footer-action-container > .footer-column:first-child {
    width: 4%;
    flex: none;
}

.footer-action-container > .footer-column:not(:first-child) {
    flex: 1;
}

.footer-column {
    flex: 1;
    padding: 35px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 200px;
}

.footer-column-social {
    background: #2a2a2a;
    width: 100%;
    flex: none;
    padding: 35px 20px;
    justify-content: center;
    align-items: center;
}

/* Pour la structure avec wrapper (index.html) */
.footer-action-container .footer-colonne-reseaux .footer-column-social {
    width: 100%;
    height: 100%;
}

.footer-column-social .footer-subtitle {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    position: relative;
    padding: 30px 0;
}

.footer-column-social .footer-subtitle::before,
.footer-column-social .footer-subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: #fff;
    height: 25px;
}

.footer-column-social .footer-subtitle::before {
    top: 0;
}

.footer-column-social .footer-subtitle::after {
    bottom: 0;
}

.footer-column-portfolio {
    background: #000;
}

.footer-column-contact {
    background: #2a2a2a;
}

.footer-subtitle {
    font-family: "din-2014", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-subtitle-social {
    color: #fff;
}

.footer-column-social .footer-subtitle {
    color: #ffffff;
}

.footer-column-contact .footer-subtitle {
    color: #8a4a3f;
}

.footer-column-portfolio .footer-subtitle {
    color: #a95d4f;
}

.footer-title {
    font-family: "orpheuspro", serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 40px;
}

.footer-column-social .footer-title,
.footer-column-contact .footer-title {
    color: #fff;
}

.footer-column-portfolio .footer-title {
    color: #ffffff;
}

.footer-social-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #000;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social-icons a:hover {
    transform: scale(1.1);
    background: #1a1a1a;
}

.footer-social-icons svg {
    width: 16px;
    height: 16px;
}

.footer-title-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.footer-title-link:hover {
    transform: scale(1.05);
}

.footer-title-link .footer-title {
    margin-bottom: 0;
    margin-top: 0;
}

.footer-title-link .footer-subtitle {
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .footer-column {
        padding: 25px 30px;
        min-height: 180px;
    }

    .footer-title {
        font-size: 28px;
    }

    .footer-social-icons a {
        width: 30px;
        height: 30px;
    }

    .footer-social-icons svg {
        width: 14px;
        height: 14px;
    }
}

/* Mode tablette uniquement : 768px < width ≤ 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-action-container {
        flex-direction: row;
        flex-wrap: nowrap;
        height: auto;
    }

    .footer-action-container .footer-colonne-reseaux {
        width: 8%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: none;
    }

    .footer-action-container .footer-colonne-reseaux .footer-column-social {
        width: 100%;
        height: 100%;
        background: #2a2a2a;
        padding: 25px 15px;
    }

    .footer-action-container .footer-colonne-contenu {
        width: 92%;
        height: auto;
        display: flex;
        flex: none;
    }

    .footer-action-container .footer-column {
        padding: 25px 30px;
        min-height: 180px;
        flex: 1;
    }
}

@media (max-width: 768px) {
    

    .footer-action-container {
        flex-direction: row;
        flex-wrap: nowrap;
        height: auto;
    }

    .footer-action-container .footer-colonne-reseaux {
        width: 10%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #404040;
    }

    .footer-action-container .footer-colonne-reseaux .footer-column-social {
        background: #404040;
    }

    .footer-action-container .footer-colonne-contenu {
        width: 90%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .footer-action-container .footer-column {
        padding: 40px 30px;
    }

    .footer-action-container .footer-column-social {
        width: 100%;
        padding: 20px 10px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-action-container .footer-column-portfolio,
    .footer-action-container .footer-column-contact {
        width: 100%;
        flex: 1;
    }

    .footer-action-container .footer-column-social .footer-subtitle {
        display: none;
    }

    .footer-action-container .footer-column-social .footer-subtitle::before,
    .footer-action-container .footer-column-social .footer-subtitle::after {
        display: none;
    }

    .footer-action-container .footer-social-icons {
        flex-direction: column;
        margin-top: 5px;
        gap: 8px;
    }

    .footer-action-container .footer-social-icons a {
        width: 25px;
        height: 25px;
    }

    .footer-action-container .footer-social-icons svg {
        width: 12px;
        height: 12px;
    }

    .footer-action-container .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .footer-action-container .footer-subtitle {
        font-size: 8px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-action-container {
        flex-direction: row;
        flex-wrap: nowrap;
        height: auto;
    }

    .footer-action-container .footer-colonne-reseaux {
        width: 10%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #404040;
    }

    .footer-action-container .footer-colonne-reseaux .footer-column-social {
        background: #404040;
    }

    .footer-action-container .footer-colonne-contenu {
        width: 90%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .footer-action-container .footer-column {
        padding: 30px 20px;
    }

    .footer-action-container .footer-column-social {
        width: 100%;
        padding: 15px 8px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-action-container .footer-column-portfolio,
    .footer-action-container .footer-column-contact {
        width: 100%;
        flex: 1;
    }

    .footer-action-container .footer-social-icons a {
        width: 20px;
        height: 20px;
    }

    .footer-action-container .footer-social-icons svg {
        width: 10px;
        height: 10px;
    }

    .footer-action-container .footer-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-action-container .footer-subtitle {
        font-size: 7px;
        letter-spacing: 0.8px;
        margin-bottom: 8px;
    }
}
