﻿/**
* Template Name: Personal
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Updated: Mar 05 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #FDF8F0; /* Background color for the entire website, including individual sections */
    --default-color: #fafafa; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #E7473C; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --section-color: #DDD0C8; /*Color for the entreprises section*/
    --links-color: #cccccc;
    --font-color: #000000;
    --surface-color: #00000; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #000000; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #1a1a1a; /* The default color of the main navmenu links */
    --nav-hover-color: #FF1C04; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #1a1a1a; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #1a1a1a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #fafafa; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #18d26e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1a1a1a;
  --surface-color: #343434;
}

/*.dark-background {
  --background-color: rgba(15, 15, 15, 0.975);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #292929f9;
  --contrast-color: #000000;
}*/

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--font-color);
  font-family: var(--heading-font);
}

.fontTest{
    font-family: Bitcount Ink !important;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(0, 0, 0, 0);
    color: var(--default-color);
    background-color: #FDF8F0;
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 13px;
  margin-left: 0.6rem;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 15px 14px;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            font-size: 15px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--nav-hover-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 25px;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }

    .page-title-new {
        font-size: 1.4rem !important;
        font-family: Cal Sans, sans-serif !important;
        font-weight: 100 !important;
    }

    .logo-af {
        height: 4rem;
        margin-bottom: 1rem
    }

    .footer-text {
        font-size: 1rem;
        font-weight: 500;
    }

    /* Vignette YouTube cliquable - ajustement de l'image */
    .video-thumbnail-link .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* Ratio 16:9 */
        height: 0;
        overflow: hidden;
        background: #000; /* Fond noir pour les bandes si nécessaire */
    }

    .video-thumbnail-link .video-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* ou object-fit: contain; si vous préférez voir l'image entière */
        transition: transform 0.3s ease;
    }

}

/* Styles pour les catégories vidéo */
.video-categories {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    padding-bottom: 9rem;
}

.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 16rem;
    margin-bottom: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .category-card .card-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: top;
        transition: all 0.3s ease;
        filter: blur(2px);
    }

    .category-card:hover .card-background {
        transform: scale(1.05);
        filter: blur(0px);
    }

    .category-card .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .category-card:hover .card-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    .category-card h3 {
        color: white;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

/* Styles pour les catégories photos */
.photo-categories {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    padding-bottom: 5rem;
}

.photos-category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 36rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

    .photos-category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .photos-category-card .card-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: top;
        transition: all 0.3s ease;
    }

    .photos-category-card:hover .card-background {
        transform: scale(1.05);
    }

    .photos-category-card .card-overlay {
        position: absolute;  
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(250, 28, 4, 0.4));
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .photos-category-card:hover .card-overlay {
        background: linear-gradient(135deg, rgba(231, 71, 60, 0.9), rgba(255, 28, 4, 0.7));
    }

    .photos-category-card h3 {
        color: white;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

.photo-category-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0rem 0 3rem 0; /* Augmenté l'espace du haut et du bas */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: #FDF8F0;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: black;
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--accent-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }

    .page-title-new {
        font-size: 1rem !important;
        font-family: Cal Sans, sans-serif !important;
        font-weight: 100 !important;
    }

    .logo-af {
        height: 4rem;
        margin-bottom: 0.5rem;
    }

    .footer-text {
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Styles pour les catégories vidéo */
    .video-categories {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
        padding-bottom: 5rem;
    }

    .category-card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        height: 10rem;
        margin-bottom: 1.6rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .category-card .card-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.3s ease;
            filter: blur(2px);
        }

        .category-card:hover .card-background {
            transform: scale(1.05);
            filter: blur(0px);
        }

        .category-card .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .category-card:hover .card-overlay {
            background: rgba(0, 0, 0, 0.5);
        }

        .category-card h3 {
            color: white;
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

    .photo-categories {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
        padding-bottom: 5rem;
    }

    .photos-category-card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        height: 24rem;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

        .photos-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .photos-category-card .card-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: top;
            transition: all 0.3s ease;
        }

        .photos-category-card:hover .card-background {
            transform: scale(1.05);
        }

        .photos-category-card .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(250, 28, 4, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .photos-category-card:hover .card-overlay {
            background: linear-gradient(135deg, rgba(231, 71, 60, 0.9), rgba(255, 28, 4, 0.7));
        }

        .photos-category-card h3 {
            color: white;
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

    .photo-category-title {
        color: var(--heading-color);
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        margin: 0rem 0 1rem 0; /* Augmenté l'espace du haut et du bas */
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: var(--heading-font);
    }

    /* Vignette YouTube cliquable - ajustement de l'image */
    .video-thumbnail-link .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* Ratio 16:9 */
        height: 0;
        overflow: hidden;
        background: #000; /* Fond noir pour les bandes si nécessaire */
    }

    .video-thumbnail-link .video-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* ou object-fit: contain; si vous préférez voir l'image entière */
        transition: transform 0.3s ease;
    }

    .play-button-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 80px;
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    .video-thumbnail-link:hover .video-thumbnail {
        transform: scale(1.05);
    }

    .video-thumbnail-link:hover .play-button-overlay {
        color: #E7473C;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

    /*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

        /*.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}*/

        .footer p {
            font-size: 15;
            font-style: italic;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .footer .social-links {
            margin: 0 0 20px 0;
        }

            .footer .social-links a {
                font-size: 16px !;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--accent-color);
                color: #ffffff;
                line-height: 1;
                margin: 0 4px;
                border-radius: 50%;
                text-align: center;
                width: 36px;
                height: 36px;
                transition: 0.3s;
                margin-inline: 0.4rem;
            }

                .footer .social-links a:hover {
                    background: color-mix(in srgb, var(--accent-color), transparent 50%);
                    text-decoration: none;
                }

        .footer .copyright {
            padding-top: 25px;
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

        .footer .credits {
            font-size: 13px;
            padding-top: 5px;
        }

    /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
    #preloader {
        position: fixed;
        inset: 0;
        z-index: 999999;
        overflow: hidden;
        background: var(--background-color);
        transition: all 0.6s ease-out;
    }

        #preloader:before {
            content: "";
            position: fixed;
            top: calc(50% - 30px);
            left: calc(50% - 30px);
            border: 6px solid #ffffff;
            border-color: var(--accent-color) transparent var(--accent-color) transparent;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: animate-preloader 1.5s linear infinite;
        }

    @keyframes animate-preloader {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .scroll-top {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        right: 15px;
        bottom: -15px;
        z-index: 99999;
        background-color: var(--accent-color);
        width: 44px;
        height: 44px;
        border-radius: 50px;
        transition: all 0.4s;
    }

        .scroll-top i {
            font-size: 24px;
            color: var(--contrast-color);
            line-height: 0;
        }

        .scroll-top:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            color: var(--contrast-color);
        }

        .scroll-top.active {
            visibility: visible;
            opacity: 1;
            bottom: 5rem;
            margin-right: 5rem;
        }
}

@media (max-width: 1199px) {
    .scroll-top {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        right: 15px;
        bottom: -15px;
        z-index: 99999;
        background-color: var(--accent-color);
        width: 44px;
        height: 44px;
        border-radius: 50px;
        transition: all 0.4s;
    }

        .scroll-top i {
            font-size: 24px;
            color: var(--contrast-color);
            line-height: 0;
        }

        .scroll-top:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            color: var(--contrast-color);
        }

        .scroll-top.active {
            visibility: visible;
            opacity: 1;
            bottom: 5rem;
            margin-right: 2rem;
        }
}

    /*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
    @media screen and (max-width: 1199px) {
        [data-aos-delay] {
            transition-delay: 0 !important;
        }
    }

    /*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
    @media (min-width: 1200px) {

        .page-title {
            color: var(--default-color);
            background-color: var(--background-color);
            position: relative;
        }

            .page-title .heading {
                padding: 160px 0 80px 0;
                border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .page-title .heading h1 {
                    font-size: 38px;
                    font-weight: 700;
                }

            .page-title nav {
                background-color: color-mix(in srgb, var(--default-color), transparent 90%);
                padding: 20px 0;
                margin-top: -5rem;
            }

                .page-title nav ol {
                    display: flex;
                    flex-wrap: wrap;
                    list-style: none;
                    margin: 0;
                    font-size: 16px;
                    font-weight: 600;
                }

                    .page-title nav ol li + li {
                        padding-left: 10px;
                    }

                        .page-title nav ol li + li::before {
                            content: "/";
                            display: inline-block;
                            padding-right: 10px;
                            color: color-mix(in srgb, var(--default-color), transparent 70%);
                        }
    }

    @media (max-width: 1199px) {

        .page-title {
            color: var(--default-color);
            background-color: var(--background-color);
            position: relative;
        }

            .page-title .heading {
                padding: 87px 0 80px 0;
                border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .page-title .heading h1 {
                    font-size: 38px;
                    font-weight: 700;
                }

            .page-title nav {
                background-color: color-mix(in srgb, var(--default-color), transparent 90%);
                padding: 13px 0;
                margin-top: -5rem;
            }

                .page-title nav ol {
                    display: flex;
                    flex-wrap: wrap;
                    list-style: none;
                    margin: 0rem -1rem;
                    padding-left: 0rem;
                    font-size: 13px;
                    font-weight: 600;
                }

                    .page-title nav ol li + li {
                        padding-left: 0rem;
                    }

                        .page-title nav ol li + li::before {
                            content: "/";
                            display: inline-block;
                            padding-right: 10px;
                            color: color-mix(in srgb, var(--default-color), transparent 70%);
                        }

                /* Centrer les breadcrumbs sur les pages de détails photos */
                .page-title nav.breadcrumbs {
                    text-align: center;
                }

                    .page-title nav.breadcrumbs .container ol {
                        justify-content: center;
                    }
    }

    /*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
    section,
    .section {
        color: var(--font-color);
        background-color: var(--background-color);
        padding-top: 2rem;
        padding-bottom: 3rem;
        padding-left: 5rem;
        padding-right: 5rem;
        scroll-margin-top: 100px;
        overflow: clip;
    }

    @media (max-width: 1199px) {

        section,
        .section {
            scroll-margin-top: 66px;
            padding-left: 2rem;
            padding-right: 2rem;
            margin-bottom: -2rem;
        }
    }

    /*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
    .section-title {
        padding-bottom: 3rem;
        position: relative;
    }

        .section-title h2 {
            font-size: 14px;
            font-weight: 500;
            padding: 0;
            line-height: 1px;
            margin: 0;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            position: relative;
        }
        /*
            .section-title h2::after {
                content: "";
                width: 120px;
                height: 1px;
                display: inline-block;
                background: var(--accent-color);
                margin: 4px 10px;
            }*/

        .section-title div {
            color: var(--heading-color);
            margin: 0;
            margin: 0;
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            font-family: var(--heading-font);
        }

/*--------------------------------------------------------------
# Hero Section avec Slideshow
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Container pour les images du slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

    /* Chaque image du slideshow */
    .hero-slideshow img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: 1;
    }

        .hero-slideshow img.active {
            opacity: 0.4;
            z-index: 2;
        }

/* Flèches de navigation */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

    .hero-arrow:hover {
        color: rgba(231, 71, 60, 1);
        transform: translateY(-50%) scale(1.2);
    }

.hero-arrow-left {
    left: 20px;
}

.hero-arrow-right {
    right: 20px;
}

@media (max-width: 1199) {
    .hero-arrow {
        font-size: 2.5rem;
    }

    .hero-arrow-left {
        left: 5px;
    }

    .hero-arrow-right {
        right: 5px;
    }
}

/* Contenu par-dessus le slideshow */
@media (min-width: 1200px) {
    .hero .container {
        position: relative;
        z-index: 3;
    }
}

@media (max-width: 1199px) {
    .hero .container {
        position: relative;
        z-index: 3;
        margin-left: 0.6rem;
    }
}

.hero h2 {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
}

.hero p {
    margin: 5px 0 0 0;
    font-size: 26px;
}

    .hero p span {
        letter-spacing: 1px;
    }

.hero .social-links {
    margin-top: 25px;
}

    .hero .social-links a {
        background-color: rgba(255, 255, 255, 0.5);
        color: #000000;
        font-size: 14px;
        width: 40px;
        height: 40px;
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 4px;
        transition: 0.3s;
    }

        .hero .social-links a:hover {
            background-color: var(--accent-color);
        }

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 20px;
    }
}

    /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
    .about .content h2 {
        font-weight: 700;
        font-size: 24px;
    }

    .about .content ul {
        list-style: none;
        padding: 0;
    }

        .about .content ul li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .about .content ul strong {
            margin-right: 10px;
        }

        .about .content ul i {
            font-size: 16px;
            margin-right: 5px;
            color: var(--accent-color);
            line-height: 0;
        }

    /* Marges plus larges uniquement sur le contenu texte - Mobile */
    @media (max-width: 1199px) {
        .about-content {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }

    /*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
    .stats i {
        background-color: var(--surface-color);
        color: var(--accent-color);
        box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
        width: 54px;
        height: 54px;
        font-size: 24px;
        border-radius: 50px;
        border: 2px solid var(--background-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .stats .stats-item {
        background-color: var(--surface-color);
        margin-top: -27px;
        padding: 30px 30px 25px 30px;
        width: 100%;
        position: relative;
        text-align: center;
        box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        z-index: 0;
    }

        .stats .stats-item span {
            font-size: 36px;
            display: block;
            font-weight: 700;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .stats .stats-item p {
            padding: 0;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 16px;
        }

    /*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
    .skills .progress {
        height: 60px;
        display: block;
        background: none;
        border-radius: 0;
    }

        .skills .progress .skill {
            color: var(--heading-color);
            padding: 0;
            margin: 0 0 6px 0;
            text-transform: uppercase;
            display: block;
            font-weight: 600;
            font-family: var(--heading-font);
        }

            .skills .progress .skill .val {
                float: right;
                font-style: normal;
            }

    .skills .progress-bar-wrap {
        background: color-mix(in srgb, var(--default-color), transparent 90%);
        height: 10px;
    }

    .skills .progress-bar {
        width: 1px;
        height: 10px;
        transition: 0.9s;
        background-color: var(--accent-color);
    }

    /*--------------------------------------------------------------
# Interests Section
--------------------------------------------------------------*/
    .interests .features-item {
        background-color: var(--surface-color);
        display: flex;
        align-items: center;
        padding: 20px;
        transition: 0.3s;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        position: relative;
    }

        .interests .features-item i {
            font-size: 32px;
            padding-right: 10px;
            line-height: 0;
        }

        .interests .features-item h3 {
            font-weight: 700;
            margin: 0;
            padding: 0;
            line-height: 1;
            font-size: 16px;
        }

            .interests .features-item h3 a {
                color: var(--heading-color);
                transition: 0.3s;
            }

        .interests .features-item:hover {
            border-color: var(--accent-color);
        }

            .interests .features-item:hover h3 a {
                color: var(--accent-color);
            }

    /*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        box-sizing: content-box;
        min-height: 320px;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 90px;
            border-radius: 50%;
            margin: -40px 0 0 40px;
            position: relative;
            z-index: 2;
            border: 6px solid var(--background-color);
        }

        .testimonials .testimonial-item h3 {
            font-size: 18px;
            font-weight: bold;
            margin: 10px 0 5px 45px;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin: 0 0 0 45px;
        }

        .testimonials .testimonial-item .quote-icon-left,
        .testimonials .testimonial-item .quote-icon-right {
            color: color-mix(in srgb, var(--accent-color), transparent 50%);
            font-size: 26px;
            line-height: 0;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
            transform: scale(-1, -1);
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 15px 0 15px;
            padding: 20px 20px 60px 20px;
            background: var(--surface-color);
            border-radius: 6px;
            position: relative;
            z-index: 1;
        }

    .testimonials .swiper-wrapper {
        height: auto;
    }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--background-color);
            opacity: 1;
            border: 1px solid var(--accent-color);
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
        }

    /*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
    .resume .resume-title {
        color: var(--heading-color);
        font-size: 26px;
        font-weight: 700;
        margin-top: 0rem;
        margin-bottom: 2rem;
    }

    .resume .resume-item {
        padding: 0 0 20px 20px;
        margin-top: -2px;
        border-left: 2px solid var(--accent-color);
        position: relative;
    }

        .resume .resume-item h4 {
            line-height: 18px;
            font-size: 18px;
            font-weight: 800;
            text-transform: uppercase;
            color: color-mix(in srgb, var(--accent-color), transparent 0%);
            margin-bottom: 10px;
        }

        .resume .resume-item h5 {
            font-size: 16px;
            padding: 5px 0px;
            display: inline-block;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .resume .resume-item ul {
            padding-left: 20px;
        }

            .resume .resume-item ul li {
                padding-bottom: 5px;
            }

        .resume .resume-item:last-child {
            padding-bottom: 0;
        }

        .resume .resume-item::before {
            content: "";
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 50px;
            left: -9px;
            top: 0;
            background: var(--background-color);
            border: 2px solid var(--accent-color);
        }

    /*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
    .services .service-item {
        background-color: var(--surface-color);
        text-align: center;
        padding: 1rem 1rem;
        transition: all ease-in-out 0.3s;
        height: 100%;
    }

        .services .service-item .icon {
            margin: 0 auto;
            width: 64px;
            height: 64px;
            background: var(--accent-color);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: 0.3s;
            transform-style: preserve-3d;
        }

            .services .service-item .icon i {
                color: var(--contrast-color);
                font-size: 28px;
                transition: ease-in-out 0.3s;
            }

            .services .service-item .icon::before {
                position: absolute;
                content: "";
                left: -8px;
                top: -8px;
                height: 100%;
                width: 100%;
                background: color-mix(in srgb, var(--accent-color), transparent 80%);
                border-radius: 5px;
                transition: all 0.3s ease-out 0s;
                transform: translateZ(-1px);
            }

        .services .service-item h3 {
            font-weight: 700;
            margin: 10px 0 15px 0;
            font-size: 22px;
        }

        .services .service-item p {
            line-height: 24px;
            font-size: 14px;
            margin-bottom: 0;
        }

    /*        .services .service-item:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
        }

            .services .service-item:hover .icon {
                background: var(--surface-color);
            }

                .services .service-item:hover .icon i {
                    color: var(--accent-color);
                }

                .services .service-item:hover .icon::before {
                    background: color-mix(in srgb, var(--background-color), transparent 70%);
                }

            .services .service-item:hover h3,
            .services .service-item:hover p {
                color: var(--contrast-color);
            }*/

    /* Services en 2 colonnes sur mobile */
    @media (max-width: 1199px) {
        .services .row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .services .col-lg-4,
        .services .col-md-6 {
            width: 100%;
            padding: 0;
        }

        .services .service-item {
            padding: 1rem 0.8rem;
            height: 100%;
        }

            .services .service-item .icon {
                width: 50px;
                height: 50px;
                margin-bottom: 15px;
            }

                .services .service-item .icon i {
                    font-size: 24px;
                }

            .services .service-item h3 {
                font-size: 16px;
                margin: 8px 0 10px 0;
            }

            .services .service-item p {
                font-size: 12px;
                line-height: 1.4;
            }
    }

    /* ========================================
   PAGE SERVICES - Affichage conditionnel
   ======================================== */

    /* Desktop (1200px et +) */
    @media (min-width: 1200px) {
        /* Masquer les versions courtes sur desktop */
        .services .service-item .title-short,
        .services .service-item .description-short {
            display: none;
        }

        /* Afficher les versions complètes sur desktop */
        .services .service-item .title-full,
        .services .service-item .description-full {
            display: block;
        }
    }

    /* Mobile et Tablette (max 1199px) */
    @media (max-width: 1199px) {
        /* Afficher les versions courtes sur mobile */
        .services .service-item .title-short,
        .services .service-item .description-short {
            display: block;
        }

        /* Masquer les versions complètes sur mobile */
        .services .service-item .title-full,
        .services .service-item .description-full {
            display: none;
        }
    }

    /*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
    .service-details .services-list {
        background-color: var(--surface-color);
        padding: 10px 30px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        margin-bottom: 20px;
    }

        .service-details .services-list a {
            display: block;
            line-height: 1;
            padding: 8px 0 8px 15px;
            border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
            margin: 20px 0;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            transition: 0.3s;
        }

            .service-details .services-list a.active {
                color: var(--heading-color);
                font-weight: 700;
                border-color: var(--accent-color);
            }

            .service-details .services-list a:hover {
                border-color: var(--accent-color);
            }

    .service-details .services-img {
        margin-bottom: 20px;
    }

    .service-details h3 {
        font-size: 26px;
        font-weight: 700;
    }

    .service-details h4 {
        font-size: 20px;
        font-weight: 700;
    }

    .service-details p {
        font-size: 15px;
    }

    .service-details ul {
        list-style: none;
        padding: 0;
        font-size: 15px;
    }

        .service-details ul li {
            padding: 5px 0;
            display: flex;
            align-items: center;
        }

        .service-details ul i {
            font-size: 20px;
            margin-right: 8px;
            color: var(--accent-color);
        }

    /*--------------------------------------------------------------
# Portfolio Section (Photos + vidéos)
--------------------------------------------------------------*/
    .portfolio .portfolio-filters {
        padding: 0;
        margin: 0 auto 20px auto;
        list-style: none;
        text-align: center;
    }

        .portfolio .portfolio-filters li {
            cursor: pointer;
            display: inline-block;
            padding: 0;
            font-size: 18px;
            font-weight: 500;
            margin: 0 10px;
            line-height: 1;
            margin-bottom: 5px;
            transition: all 0.3s ease-in-out;
        }

            .portfolio .portfolio-filters li:hover,
            .portfolio .portfolio-filters li.filter-active {
                color: var(--accent-color);
            }

            .portfolio .portfolio-filters li:first-child {
                margin-left: 0;
            }

            .portfolio .portfolio-filters li:last-child {
                margin-right: 0;
            }

    @media (max-width: 575px) {
        .portfolio .portfolio-filters li {
            font-size: 14px;
            margin: 0 5px;
        }
    }

    .portfolio .portfolio-content {
        position: relative;
        overflow: hidden;
    }

        .portfolio .portfolio-content img {
            transition: 0.3s;
        }

        .portfolio .portfolio-content .portfolio-info {
            opacity: 0;
            position: absolute;
            inset: 0;
            z-index: 3;
            transition: all ease-in-out 0.3s;
            background: rgba(0, 0, 0, 0.6);
            padding: 15px;
        }

            .portfolio .portfolio-content .portfolio-info h4 {
                font-size: 14px;
                padding: 5px 10px;
                font-weight: 400;
                color: #ffffff;
                display: inline-block;
                background-color: var(--accent-color);
            }

            .portfolio .portfolio-content .portfolio-info p {
                position: absolute;
                bottom: 10px;
                text-align: center;
                display: inline-block;
                left: 0;
                right: 0;
                font-size: 16px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.8);
            }

            .portfolio .portfolio-content .portfolio-info .preview-link,
            .portfolio .portfolio-content .portfolio-info .details-link {
                position: absolute;
                left: calc(50% - 40px);
                font-size: 26px;
                top: calc(50% - 14px);
                color: #fff;
                transition: 0.3s;
                line-height: 1.2;
            }

                .portfolio .portfolio-content .portfolio-info .preview-link:hover,
                .portfolio .portfolio-content .portfolio-info .details-link:hover {
                    color: var(--accent-color);
                }

            .portfolio .portfolio-content .portfolio-info .details-link {
                left: 50%;
                font-size: 34px;
                line-height: 0;
            }

        .portfolio .portfolio-content:hover .portfolio-info {
            opacity: 1;
        }

        .portfolio .portfolio-content:hover img {
            transform: scale(1.1);
        }

    /*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: color-mix(in srgb, var(--default-color), transparent 85%);
            opacity: 1;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
        }

    .portfolio-details .portfolio-info {
        background-color: var(--surface-color);
        padding: 30px;
        box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

    /*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
    .starter-section {
        /* Add your styles here */
    }

    /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
    /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
    /* Section Contact - Visuels Email et Téléphone */
    .contact .contact-card-wrapper {
        background: white;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Ligne de séparation avant la section Contact */
    .contact.section::before {
        content: "";
        display: block;
        width: 100px;
        height: 1px;
        background: var(--accent-color);
        margin: 0 auto 60px auto;
        opacity: 0.3;
    }

    .contact .contact-item {
        display: flex;
        align-items: center;
        padding: 25px 30px;
        margin-bottom: 25px;
        background: #f8f9fa;
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

        .contact .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact .contact-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--accent-color);
            border-radius: 12px 0 0 12px;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .contact .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(231, 71, 60, 0.2);
        }

            .contact .contact-item:hover::before {
                transform: scaleY(1);
            }

        .contact .contact-item .icon {
            width: 56px;
            height: 56px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 25px;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(231, 71, 60, 0.3);
            transition: all 0.3s ease;
            color: white;
        }

        .contact .contact-item:hover .icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(231, 71, 60, 0.5);
        }

        .contact .contact-item .icon svg {
            width: 28px;
            height: 28px;
        }

    .contact .contact-info {
        flex: 1;
        min-width: 0;
    }

    .contact .contact-label {
        font-size: 0.85em;
        color: #666;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
        font-family: var(--heading-font);
    }

    .contact .contact-value {
        font-size: 1.2em;
        color: var(--font-color);
        font-weight: 600;
    }

        .contact .contact-value a {
            color: var(--font-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .contact .contact-value a:hover {
                color: var(--accent-color);
            }

    /* Version mobile unique */
    @media (max-width: 1199px) {
        .contact.section::before {
            width: 80px;
            margin: 0 auto 40px auto;
        }

        .contact .contact-card-wrapper {
            padding: 20px 15px;
        }

        .contact .contact-item {
            padding: 15px;
            margin-bottom: 15px;
        }

            .contact .contact-item .icon {
                width: 45px;
                height: 45px;
                margin-right: 15px;
            }

                .contact .contact-item .icon svg {
                    width: 22px;
                    height: 22px;
                }

        .contact .contact-label {
            font-size: 0.75em;
        }

        .contact .contact-value {
            font-size: 0.95em;
            word-break: break-word;
        }

            .contact .contact-value a {
                word-break: break-all;
                display: block;
            }
    }

    /*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

    /* Desktop */
    @media (min-width: 1200px) {
        .clients {
            background-color: var(--background-color);
            padding: 40px 0;
            padding-bottom: 9rem;
        }

        .clients-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

            .client-logo:hover {
                transform: scale(1.1);
            }

            .client-logo img {
                max-height: 60px;
                width: auto;
                object-fit: contain;
                transition: all 0.3s ease;
            }

            .client-logo:hover img {
                filter: grayscale(0%) brightness(1);
            }

        .title-clients {
            color: var(--heading-color);
            margin-bottom: 1.2rem;
            font-size: 1.9rem;
            font-weight: 600;
            text-align: center;
            font-family: var(--heading-font);
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .clients {
            background-color: var(--background-color);
            padding: 8rem 1rem;
            padding-top: 8rem;
        }

        .clients-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

            .client-logo:hover {
                transform: scale(1.1);
            }

            .client-logo img {
                max-height: 50px;
                width: auto;
                object-fit: contain;
                transition: all 0.3s ease;
            }

            .client-logo:hover img {
                filter: grayscale(0%) brightness(1);
            }

        .title-clients {
            color: var(--heading-color);
            margin-bottom: 2rem;
            margin-top: -0.7rem;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            font-family: var(--heading-font);
        }
    }

    /* Styles spécifiques pour la galerie vidéo */

    /* Desktop (1200px and up) */
    @media (min-width: 1200px) {
        .video-gallery-section {
            padding: 2rem;
        }

            .video-gallery-section .container {
                max-width: 85%;
                padding-left: 2rem;
                ;
                padding-right: 2rem;
            }

        .video-item {
            margin-bottom: 0.1rem;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .video-gallery-section .row {
            margin-left: -10px;
            margin-right: -10px;
        }

        .video-gallery-section .col-lg-6 {
            padding: 15px;
            margin-top: -2rem;
            margin-bottom: 2rem;
            width: 33%;
        }

        .video-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

            /* Vidéos verticales (Facebook, etc.) */
            .video-wrapper.vertical {
                padding-bottom: 177.78%; /* Ratio 9:16 pour format vertical */
                max-width: 28rem;
                margin: 0 auto;
                margin-top: 1rem;
            }

        .video-item:has(.video-wrapper.vertical) .video-info {
                    max-width: 30rem;
                    margin: 1.5rem auto;
                    margin-bottom: 0rem;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .video-info {
            background: #FDF8F0;
            padding: 1.4rem;
            margin-top: 2rem;
        }

            .video-info h3 {
                font-size: 18px;
                font-weight: 700;
                color: #000;
                margin-bottom: 1.rem;
                margin-top: -2rem;
                font-family: 'Raleway', sans-serif;
                line-height: 1.3;
            }

            .video-info p {
                font-size: 0.9rem;
                color: #666;
                margin-bottom: 0;
                line-height: 1.6;
            }

            /* Ajuster la hauteur des embeds Instagram verticaux pour afficher tout le contenu */
            .video-gallery-section .video-wrapper.vertical {
                padding-bottom: 0 !important;
                height: auto;
            }

            .video-gallery-section .video-wrapper.vertical iframe {
                position: relative !important;
                height: 650px; /* Ajustez cette valeur selon vos besoins */
                min-height: 0px;
}
    }

    /* Mobile et Tablette (max 1199px) */
    @media (max-width: 1199px) {
        .video-gallery-section {
            padding: 0.8rem;
        }

        .video-item {
            margin-bottom: 30px;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

            .video-item:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

            /* Vidéos verticales (Facebook, etc.) */
            .video-wrapper.vertical {
                padding-bottom: 177.78%; /* Ratio 9:16 pour format vertical */
                max-width: 21.875rem; /* 350px = 21.875rem */
                margin: 0 auto;
            }

            .video-wrapper iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: 0;
            }

                .video-gallery-section .video-wrapper.vertical iframe {
                height: 800px;
                min-height: 0px;
            }

        .video-info {
            background: #FDF8F0;
            padding: 1.4rem;
            margin-top: 2rem;
        }

            .video-info h3 {
                font-size: 18px;
                font-weight: 700;
                color: #000;
                margin-bottom: 0.4rem;
                margin-top: -2rem;
                font-family: 'Raleway', sans-serif;
                line-height: 1.3;
            }

            .video-info p {
                font-size: 14px;
                color: #666;
                margin-bottom: 0;
                line-height: 1.6;
            }
    }

    .embla-section {
        background-color: var(--background-color);
    }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla {
            position: relative;
            max-width: 90rem; /* 1200px = 75rem */
            margin: 0 auto;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla {
            position: relative;
            max-width: 75rem; /* 1200px = 75rem */
            margin: 0 auto;
            padding: 1.25rem 3.75rem 2.5rem 3.75rem; /* 20px 60px 40px 60px */
        }
    }

    .embla__viewport {
        overflow: hidden;
        cursor: grab;
        padding-left: 2rem;
    }

        .embla__viewport:active {
            cursor: grabbing;
        }

    .embla__container {
        display: flex;
        touch-action: pan-y pinch-zoom;
        padding: 0rem 0 2.5rem 0; /* 20px 0 40px 0 - Espace pour l'ombre */
    }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__slide {
            flex: 0 0 33.33%;
            min-width: 0;
            position: relative;
            user-select: none;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__slide {
            flex: 0 0 80%;
            min-width: 0;
            position: relative;
            user-select: none;
        }
    }

    .embla__slide iframe {
        pointer-events: auto !important;
        width: 100%;
        height: 300px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .embla__slide:hover iframe {
        pointer-events: auto;
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Contrôles en bas (boutons + compteur) */
    .embla__controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
    }

    .embla__buttons {
        display: flex;
        gap: 15px;
    }

    /* Boutons de navigation */
    .embla__button {
        background-color: var(--accent-color);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(231, 71, 60, 0.3);
    }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__button {
            width: 50px;
            height: 50px;
            font-size: 24px;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__button {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
    }

    .embla__button:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 20%);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(231, 71, 60, 0.5);
    }

    .embla__button:active {
        transform: scale(0.95);
    }

    .embla__button:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    /* Compteur de slides */
    .embla__counter {
        font-family: var(--heading-font);
    }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__counter {
            font-size: 18px;
            font-weight: 600;
            color: var(--heading-color);
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__counter {
            font-size: 16px;
            font-weight: 600;
            color: var(--heading-color);
        }

        .embla__controls {
            margin-top: 20px;
        }
    }

    .embla__counter-current {
        font-weight: 700;
        color: var(--accent-color);
    }

    .embla__counter-separator {
        margin: 0 5px;
        color: color-mix(in srgb, var(--heading-color), transparent 50%);
    }

    /* Animation de chargement */
    .embla__slide {
        animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* CSS pour les vidéos Facebook verticales dans Embla */

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__slide.vertical {
            flex: 0 0 22% !important;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__slide.vertical {
            flex: 0 0 80% !important;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
    }

    /* Conteneur vidéo dans le carrousel */
    .embla__slide.vertical .video-item {
        position: relative;
        border-radius: 0.625rem; /* 10px */
        overflow: hidden;
        box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.1); /* 0 5px 20px */
        transition: all 0.3s ease;
        background: #FDF8F0;
        width: 100%;
        margin: 0.625rem 0.9375rem; /* 10px 15px - Plus d'espace horizontal */
    }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__slide.vertical .video-item {
            max-width: 267px;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__slide.vertical .video-item {
            max-width: 240px;
        }
    }

    .embla__slide.vertical .video-item:hover {
        transform: scale(1.02);
        box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.2); /* 0 15px 40px */
    }

    /* Wrapper pour les vidéos verticales dans Embla */
    .embla__slide.vertical .video-wrapper.vertical {
        position: relative;
        padding-bottom: 177.78%;
        height: 0;
        overflow: hidden;
        margin: 0 auto;
    }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__slide.vertical .video-wrapper.vertical {
            max-width: 267px;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__slide.vertical .video-wrapper.vertical {
            max-width: 240px;
        }
    }

    .embla__slide.vertical .video-wrapper.vertical iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        pointer-events: none;
    }

    /* Zone de texte sous la vidéo dans Embla */
    .embla__slide.vertical .video-info {
        background: #FDF8F0;
        padding: 1.4rem;
    }

        .embla__slide.vertical .video-info h3 {
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
            margin-top: 0;
            font-family: 'Raleway', sans-serif;
            line-height: 1.3;
        }

        .embla__slide.vertical .video-info p {
            color: #666;
            margin-bottom: 0;
            line-height: 1.6;
        }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__slide.vertical .video-info h3 {
            font-size: 16px;
        }

        .embla__slide.vertical .video-info p {
            font-size: 14px;
        }

        /* Réduire l'espace entre vidéo et texte UNIQUEMENT sur la page Montages Webedia */
        .montages-webedia-page .embla__slide.vertical .video-info {
            padding: 1rem 1.4rem; /* Réduire le padding du haut */
            margin-top: 0; /* Supprimer la marge du haut */
        }

            .montages-webedia-page .embla__slide.vertical .video-info h3 {
                margin-top: 0; /* Supprimer la marge du haut du titre */
                margin-bottom: 0.5rem;
            }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__slide.vertical .video-info {
            padding: 1.2rem;
        }

            .embla__slide.vertical .video-info h3 {
                font-size: 14px;
            }

            .embla__slide.vertical .video-info p {
                font-size: 12px;
            }

        /* Réduire l'espace entre vidéo et texte UNIQUEMENT sur la page Montages Webedia */
        .montages-webedia-page .embla__slide.vertical .video-info {
            padding: 1rem 1.4rem; /* Réduire le padding du haut */
            margin-top: 0; /* Supprimer la marge du haut */
        }

            .montages-webedia-page .embla__slide.vertical .video-info h3 {
                margin-top: 0; /* Supprimer la marge du haut du titre */
                margin-bottom: 0.5rem;
            }
    }

    /* Animation d'apparition pour les slides verticaux */
    .embla__slide.vertical {
        animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* CSS pour les vidéos CARRÉES dans Embla */

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__slide.square {
            flex: 0 0 calc(33.333% - 1.25rem) !important;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__slide.square {
            flex: 0 0 80% !important;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
    }

    /* Conteneur vidéo carrée dans le carrousel */
    .embla__slide.square .video-item {
        position: relative;
        border-radius: 0.625rem;
        overflow: hidden;
        box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        background: #FDF8F0;
        width: 100%;
        margin: 0.625rem 0.9375rem;
    }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__slide.square .video-item {
            max-width: 25rem; /* 400px */
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__slide.square .video-item {
            max-width: 20rem; /* 320px */
        }
    }

    .embla__slide.square .video-item:hover {
        transform: scale(1.02);
        box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.2);
    }

    /* Wrapper pour les vidéos carrées (ratio 1:1) */
    .embla__slide.square .video-wrapper .square {
        position: relative;
        padding-bottom: 100% !important;
        height: 0;
        overflow: hidden;
        margin: 0 auto;
    }

    .video-wrapper-square {
        position: relative;
        padding-bottom: 100%;
        height: 0;
        overflow: hidden;
    }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__slide.square .video-wrapper.square {
            max-width: 25rem;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__slide.square .video-wrapper.square {
            max-width: 20rem;
        }
    }

    .embla__slide.square .video-wrapper.square iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        pointer-events: none;
    }

    /* Zone de texte sous la vidéo carrée */
    .embla__slide.square .video-info {
        background: #FDF8F0;
        padding: 1.4rem;
    }

        .embla__slide.square .video-info h3 {
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
            margin-top: 0;
            font-family: 'Raleway', sans-serif;
            line-height: 1.3;
        }

        .embla__slide.square .video-info p {
            color: #666;
            margin-bottom: 0;
            line-height: 1.6;
        }

    /* Desktop */
    @media (min-width: 1200px) {
        .embla__slide.square .video-info h3 {
            font-size: 16px;
        }

        .embla__slide.square .video-info p {
            font-size: 14px;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .embla__slide.square .video-info {
            padding: 1.2rem;
        }

            .embla__slide.square .video-info h3 {
                font-size: 14px;
            }

            .embla__slide.square .video-info p {
                font-size: 12px;
            }
    }

    /* ===================================================================
   NOUVELLE GALERIE VIDÉOS VERTICALES - Grid Layout
   Ajoutez ce code à la fin de votre fichier main.css
   =================================================================== */

    /* Container de la galerie */
    .video-gallery-section {
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    /* Grid des vidéos */
    .video-grid {
        display: grid;
        gap: 2rem;
        padding: 0 1rem;
    }

    /* Desktop: 4 colonnes */
    @media (min-width: 1200px) {
        .video-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* Mobile: 2 colonnes */
    @media (max-width: 1199px) {
        .video-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Chaque item vidéo */
    .video-grid .video-item {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        background: #fff;
        margin-bottom: 0;
    }

        .video-grid .video-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

    /* Wrapper vidéo vertical */
    .video-grid .video-wrapper.vertical {
        position: relative;
        padding-bottom: 177.78%;
        height: 0;
        overflow: hidden;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .video-grid .video-wrapper.vertical iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border: 0;
        }

    /* Info sous la vidéo */
    .video-grid .video-info {
        padding: 1.2rem;
        background: #fff;
    }

        .video-grid .video-info h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .video-grid .video-info p {
            font-size: 0.875rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
        }

    /* Ajustements responsive supplémentaires */
    @media (max-width: 1199px) {
        .video-gallery-section {
            padding: 1rem 0;
        }

        .video-grid {
            gap: 1.5rem;
        }

            .video-grid .video-info {
                padding: 1rem;
            }
    }

    /* Vignettes HD */
    @media (min-width: 1200px) {
        .video-thumbnail-hd {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 9px;
        }
    }

    /* Mobile et Tablette */
    @media (max-width: 1199px) {
        .video-thumbnail-hd {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 9px;
        }
    }


    /* ========================================
   PAGE À PROPOS - STYLES PERSONNALISÉS
   ======================================== */

    /* Section À propos avec photo */
    .about-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

        .about-section .row {
            justify-content: center;
            align-items: center;
        }

        .about-section .col-lg-5 {
            display: flex;
            justify-content: center;
        }

    /* Texte justifié - Page À propos */
    .about-page main p {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
    }

    .about-photo {
        border-radius: 15rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        width: 22rem;
        height: 22rem;
        object-fit: cover;
    }

    .about-content h2 {
        font-family: var(--heading-font);
        font-size: 2rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--font-color);
        margin-bottom: 1rem;
    }

    /* Section Compétences */
    .skills-section {
        padding: 2rem 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: -1rem;
    }

        .section-title h2 {
            font-family: var(--heading-font);
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--heading-color);
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

    .skill-item {
        background: white;
        border-radius: 15px;
        padding: 1.2rem 1.5rem;
        margin-bottom: 1rem;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .skill-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--accent-color);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .skill-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(231, 71, 60, 0.2);
        }

            .skill-item:hover::before {
                transform: scaleY(1);
            }

    .skill-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        background: linear-gradient(135deg, var(--accent-color), #ff5a4d);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 5px 15px rgba(231, 71, 60, 0.3);
        transition: all 0.3s ease;
    }

    .skill-item:hover .skill-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 8px 20px rgba(231, 71, 60, 0.5);
    }

    .skill-content {
        flex: 1;
    }

    .skill-name {
        font-family: var(--heading-font);
        font-size: 1rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 0.2rem;
    }

    .skill-description {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .skill-item {
            padding: 1rem 1.2rem;
            margin-bottom: 0.5rem;
            gap: 0.8rem;
        }

        .skill-name {
            font-size: 0.95rem;
        }

        .skill-description {
            font-size: 0.8rem;
        }
    }

    /* Section Intérêts */
    .interests-section {
        padding: 1rem 0;
        max-width: 1000px;
        margin: 0 auto;
    }

    .interests-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0;
        list-style: none;
    }

    .interest-item {
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--font-color);
        font-family: var(--heading-font);
        padding: 0 1.2rem;
        position: relative;
        margin-top: -1rem;
    }

        .interest-item:not(:last-child)::after {
            content: '•';
            position: absolute;
            right: 0;
            color: var(--accent-color);
            font-weight: 700;
        }

    /* Version Mobile */
    @media (max-width: 768px) {
        .interest-item {
            font-size: 1rem;
            padding: 0.5rem 0.8rem;
        }
    }

    /* Section Témoignages */
    .testimonials-section {
        padding: 1rem 0;
        background-color: var(--background-color);
    }

    .testimonial-card {
        background-color: #1a1a1a;
        color: #fff;
        border-radius: 10px;
        padding: 2.5rem;
        margin: 1rem;
        position: relative;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .quote-icon {
        color: #4a9d5f;
        font-size: 3rem;
        margin-bottom: 1rem;
        font-family: Georgia, serif;
    }

    .testimonial-text {
        font-style: italic;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        color: #fff;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-photo {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #fff;
    }

    .author-info h4 {
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        margin: 0;
        font-family: var(--heading-font);
    }

    .author-info p {
        color: #ccc;
        font-size: 0.9rem;
        margin: 0;
    }

    /* Navigation carrousel */
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background-color: var(--accent-color);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
    }

    .carousel-control-prev {
        left: -70px;
    }

    .carousel-control-next {
        right: -70px;
    }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: #d13329;
            opacity: 1;
        }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }

    .carousel-indicators {
        margin-bottom: 0;
    }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            border: none;
            margin: 0 5px;
        }

            .carousel-indicators button.active {
                background-color: var(--accent-color);
            }

    /* ========================================
   MEDIA QUERIES - DESKTOP (1200px et +)
   ======================================== */
    @media (min-width: 1200px) {
        /* Styles spécifiques desktop déjà définis ci-dessus */
    }

    /* ========================================
   MEDIA QUERIES - MOBILE (max 1199px)
   ======================================== */
    @media (max-width: 1199px) {
        /* Section À propos */
        .about-section {
            padding: 0rem 0;
        }

            .about-section .col-lg-5 {
                padding-right: 0;
                margin-bottom: 2rem;
            }

        .about-photo {
            width: 18rem;
            height: 18rem;
        }

        .about-content h2 {
            font-size: 1.5rem;
            margin-top: 0;
            text-align: center;
        }

        .about-content p {
            font-size: 0.95rem;
            text-align: center;
        }

        /* Section Compétences */
        .skills-section {
            padding: 2rem 0;
        }

        .section-title {
            margin-bottom: -1rem;
            margin-top: 1rem;
        }

            .section-title h2 {
                font-size: 1.5rem;
            }


        .skill-item {
            padding: 1rem;
        }

        .skill-icon {
            width: 60px;
            height: 60px;
            margin-left: 0.4rem;
            margin-right: 0.4rem;
            min-width: 60px;
            font-size: 1.5rem;
        }

        .skill-name {
            font-size: 1.1rem;
        }

        .skill-description {
            font-size: 0.85rem;
        }

        /* Section Intérêts */
        .interests-section {
            padding: 0rem 0;
        }

        .interest-card {
            padding: 1.5rem;
        }

            .interest-card i {
                font-size: 2.5rem;
            }

            .interest-card h3 {
                font-size: 1rem;
            }

        /* Section Témoignages */
        .testimonials-section {
            padding: 3rem 0;
        }

        .testimonial-card {
            padding: 1.5rem;
            margin: 0.5rem;
        }

        .quote-icon {
            font-size: 2.5rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .author-photo {
            width: 60px;
            height: 60px;
        }

        .author-info h4 {
            font-size: 1rem;
        }

        .author-info p {
            font-size: 0.85rem;
        }

        /* Carrousel */
        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
        }

        .carousel-control-prev {
            left: -20px;
        }

        .carousel-control-next {
            right: -20px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 16px;
            height: 16px;
        }
    }

    /*PHOTOS DETAILS*/
    /* Desktop (1200px et +) */
    @media (min-width: 1200px) {
        .photo-gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 350px;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

            .gallery-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            }

            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .gallery-item:hover img {
                transform: scale(1.05);
            }

            /* Tailles variées pour effet dynamique */
            .gallery-item.large {
                grid-column: span 2;
                grid-row: span 2;
            }

            .gallery-item.wide {
                grid-column: span 2;
            }

            .gallery-item.tall {
                grid-row: span 2;
            }
    }

    /* Mobile (max 1199px) */
    @media (max-width: 1199px) {
        .photo-gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 8rem;
            gap: 12px;
            padding: 0rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

            .gallery-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            }

            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .gallery-item:hover img {
                transform: scale(1.05);
            }

            /* Tailles variées pour effet dynamique */
            .gallery-item.large {
                grid-column: span 2;
                grid-row: span 2;
            }

            .gallery-item.wide {
                grid-column: span 2;
            }

            .gallery-item.tall {
                grid-row: span 2;
            }

            .gallery-item.widemobile {
                grid-column: span 2;
            }

            .gallery-item.smallsquare {
                grid-column: span 1;
            }
    }

    /* Lightbox personnalisé */
    .lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 10000;
        display: none;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

    .lightbox-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 5px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        }

    .lightbox-close {
        position: absolute;
        top: 30px;
        right: 40px;
        font-size: 50px;
        color: white;
        cursor: pointer;
        z-index: 10001;
        transition: color 0.3s ease;
        line-height: 1;
        font-weight: 300;
    }

        .lightbox-close:hover {
            color: var(--accent-color);
        }

    .lightbox-prev,
    .lightbox-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 60px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 20px;
        z-index: 10001;
        user-select: none;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            color: var(--accent-color);
            transform: translateY(-50%) scale(1.1);
        }

    .lightbox-counter {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--heading-font);
        background: rgba(0, 0, 0, 0.6);
        padding: 10px 25px;
        border-radius: 30px;
    }

    /* Info lightbox (compteur + description) */
    .lightbox-info {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        max-width: 80%;
        z-index: 10001;
    }

    .lightbox-counter {
        color: white;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--heading-font);
        background: rgba(0, 0, 0, 0.6);
        padding: 10px 25px;
        border-radius: 30px;
        position: static;
        transform: none;
    }

    .lightbox-description {
        color: white;
        font-size: 16px;
        font-weight: 400;
        font-family: var(--default-font);
        background: rgba(0, 0, 0, 0.7);
        padding: 12px 30px;
        border-radius: 25px;
        text-align: center;
        max-width: 600px;
        line-height: 1.5;
        backdrop-filter: blur(10px);
    }

    /* Version mobile */
    @media (max-width: 1199px) {
        .lightbox-info {
            bottom: 20px;
            max-width: 90%;
        }

        .lightbox-counter {
            font-size: 14px;
            padding: 8px 20px;
        }

        .lightbox-description {
            font-size: 14px;
            padding: 10px 20px;
            max-width: 90%;
        }
    }

    /* Desktop (1200px et +) */
    @media (min-width: 1200px) {
        .lightbox-prev,
        .lightbox-next {
            font-size: 60px;
            padding: 20px;
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        .lightbox-close {
            top: 30px;
            right: 40px;
            font-size: 50px;
        }

        .lightbox-counter {
            font-size: 18px;
            padding: 10px 25px;
        }
    }

    /* Mobile (max 1199px) */
    @media (max-width: 1199px) {
        .lightbox-prev,
        .lightbox-next {
            font-size: 40px;
            padding: 10px;
        }

        .lightbox-prev {
            left: 10px;
        }

        .lightbox-next {
            right: 10px;
        }

        .lightbox-close {
            top: 20px;
            right: 20px;
            font-size: 40px;
        }

        .lightbox-counter {
            font-size: 14px;
            padding: 8px 20px;
        }
    }

/* ========================================
   BOUTONS MOBILE - VIDÉOS & PHOTOS
   ======================================== */

.mobile-cta-buttons {
    display: none;
}

@media (max-width: 1199px) {
    .mobile-cta-buttons {
        display: block;
        padding: 1.5rem 1rem 0 1rem;
        background-color: transparent;
        position: relative;
        z-index: 3;
        margin-top: -8rem;
    }

    .cta-buttons-container {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.4rem 1.5rem;
        background: var(--background-color);
        border: none;
        border-radius: 10px;
        text-decoration: none;
        color: black;
        font-family: var(--heading-font);
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        flex: 1;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .cta-button-photos {
        animation-delay: 0.2s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .cta-button:hover {
        background: linear-gradient(135deg, #d13329, #ff5a4d);
        box-shadow: 0 8px 30px rgba(231, 71, 60, 0.3);
        transform: translateY(-2px);
    }

    .cta-button:active {
        transform: scale(0.98);
    }
}