/* Thème Marron/Doré - Couleur principale du CV */
:root {
    --primary-orange: #B8860B;
    --primary-orange-dark: #8B6914;
    --primary-orange-light: #D4AF37;
}

/* Navigation active et hover */
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
    background-color: var(--primary-orange) !important;
    color: #ffffff !important;
}

/* Boutons */
.btn-new,
.sim-btn {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

.btn-new:hover {
    background-color: var(--primary-orange-dark) !important;
}

/* Section title accent */
.section-title h3::after {
    background-color: var(--primary-orange) !important;
}

/* Services icons */
.ser-icon {
    background-color: var(--primary-orange) !important;
}

/* Portfolio filter active */
.filter-button-group button.active {
    background: var(--primary-orange) !important;
    color: #fff !important;
}

/* Portfolio filter inactive - blanc */
.filter-button-group button:not(.active) {
    background: #ffffff !important;
    color: #333333 !important;
}

/* Scroll to top */
#scroll-to-top,
.dmtop {
    background-color: var(--primary-orange) !important;
}

/* Links and accents */
a:hover {
    color: var(--primary-orange) !important;
}

/* Contact form focus */
.contact_form .form-control:focus {
    border-color: var(--primary-orange) !important;
}

/* Amélioration de la visibilité du texte dans la section contact */
#contact .section-title h3 {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}

#contact .section-title p {
    color: #ffffff !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8) !important;
}

#contact .section-title p[style*="color: #ff6b35"],
#contact .section-title p[style*="color: #B8860B"] {
    color: #B8860B !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
    font-weight: 700 !important;
}

/* Testimonials border */
.desc {
    border-color: var(--primary-orange) !important;
}

/* Hero Section - Style DevFolio avec image statique */
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
    overflow: hidden;
    background: linear-gradient(rgba(184, 134, 11, .6), rgba(139, 105, 20, .6)), url(../images/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container-fluid {
    padding: 0;
}

.hero .hero-content {
    position: relative;
    padding-left: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text p {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero .hero-text h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero .hero-text h2 {
    display: inline-block;
    margin: 0;
    height: 35px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero .hero-text .typed-text {
    display: none;
}

.hero .hero-text .typed-cursor {
    font-size: 35px;
    font-weight: 300;
    color: #ffffff;
}

.hero .hero-btn .btn {
    margin-top: 35px;
    color: #B8860B;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    transition: ease-out 0.3s;
}

.hero .hero-btn .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.hero .hero-btn .btn:first-child {
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero .hero-content {
        padding: 0 15px;
    }
    
    .hero .hero-text p {
        font-size: 20px;
    }
    
    .hero .hero-text h1 {
        font-size: 45px;
    }
    
    .hero .hero-text h2 {
        font-size: 25px;
        height: 25px;
    }
    
    .hero .hero-btn .btn {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero,
    .hero .hero-text,
    .hero .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero .hero-text p {
        font-size: 18px;
    }
    
    .hero .hero-text h1 {
        font-size: 35px;
    }
    
    .hero .hero-text h2 {
        font-size: 22px;
        height: 22px;
    }
    
    .hero .hero-btn .btn {
        padding: 10px 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text p {
        font-size: 16px;
    }
    
    .hero .hero-text h1 {
        font-size: 30px;
    }
    
    .hero .hero-text h2 {
        font-size: 18px;
        height: 18px;
    }
    
    .hero .hero-btn .btn {
        padding: 8px 10px;
        letter-spacing: 0;
        font-size: 12px;
    }
}


