@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root 
{
    --color-primary-cta: #ffcf34;
    --color-text-primary: #67419a;
    --color-text-light: #FFFFFF;
    --color-background-primary: #FFFFFF;
    --color-background-dark: #5A524A;
    --color-overlay: rgba(0, 0, 0, 0.5);
    --color-border: #E0E0E0;
    --color-background-secondary: #F8F6F3;
    --font-display: "Inter", sans-serif;
    --font-body: "Inter", sans-serif;

    --color-footer-bg: #4A4036;
	--color-footer-text: #E0E0E0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-background-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-text-primary);
    line-height: 1.2;
}

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Head navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo img {
    display: block;
}

.nav-desktop {
    display: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary-cta);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: var(--color-primary-cta);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--color-primary-cta);
}


.btn-primary {
    background-color: var(--color-primary-cta);
    color: var(--color-text-light);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #E6B025;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-dark {
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #4A4036;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-primary);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--color-primary-cta);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./image/fond.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 1rem 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 482px; /*964*/
    height: 312px; /*624*/
    border-radius: 2%;
    object-fit: cover;
    border: 4 solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--color-text-light); 
}



.hero-divider {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-text {
        font-size: 1.25rem;
    }
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--color-background-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.section-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary-cta);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-content .btn-dark 
{
    margin-top: 1.5rem;

    background-color: var(--color-footer-bg); 
    color: var(--color-text-light);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    max-width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .about {
        padding: 5rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
}

/* Gallery Carousel */
.gallery {
    padding: 4rem 0;
    background-color: var(--color-background-primary);
}

.carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-item {
    display: none;
    width: 100%;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background-color: var(--color-primary-cta);
    color: white;
}

.carousel-control.prev {
    left: 1rem;
}

.carousel-control.next {
    right: 1rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--color-primary-cta);
    width: 32px;
    border-radius: 6px;
}

@media (min-width: 768px) {
    .carousel-item img {
        max-height: 700px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
}

.hero-logo {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-divider {
    animation-delay: 0.3s;
}

.hero-text {
    animation-delay: 0.4s;
}

.hero-content .btn-primary {
    animation-delay: 0.5s;
}




/*  -----     ---   FOOTER   ---     -----  */

.s_text_block 
{
    background-color: var(--color-footer-bg); 
    color: var(--color-footer-text);
}

.s_text_block p, .s_text_block h5, .s_text_block a, .s_text_block li 
{
    color: var(--color-footer-text) !important; 
    font-size: 1rem;
    line-height: 1.5;
}

.s_text_block a:hover 
{
    color: var(--color-primary-cta) !important;
}

.s_text_block .row 
{
    justify-content: center;
}

.s_text_block .col-lg-3, .s_text_block .col-lg-8 
{
    background-color: var(--color-footer-bg);
}

.s_hr hr 
{
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.o_footer_copyright 
{
    background-color: var(--color-footer-bg);
}

.o_footer_copyright .text-muted 
{
    color: var(--color-footer-text) !important;
}

.s_hr 
{
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}



#scrollUpContainer 
{
    position: relative;
    background-color: var(--color-footer-bg); 
    height: 30px; 
}

#scrollToTopBtn 
{
    position: absolute;
    top: -25px; 
    left: 50%;
    transform: translateX(-50%);
    

    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    
    background-color: var(--color-footer-bg); 
    border: 3px solid var(--color-primary-cta); 
    
    color: var(--color-primary-cta); 
    
    text-decoration: none;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

#scrollToTopBtn:hover 
{
    background-color: #5D5247; 
}

.o_footer_copyright 
{
    position: relative; 
    background-color: var(--color-footer-bg) !important;
}









#siret-section {
    padding-bottom: 50px !important; 
}