/********** Template CSS **********/
:root {
    --primary: #EB1616;
    --secondary: #191C24;
    --light: #ffffff;
    --dark: #0c0c0c;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
nav {
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.671);
    min-height: 80px;
    font-size: 1.1em;
    right: 0;
}

@media (min-width: 992px) {
    nav {
        height: 100px;
        font-size: 1.3em;
    }
}

.logo {
    max-height: 40px;
}

nav a:not(.c-exept) {
    margin-right: 1.4vw;
}

.centered-text {
    text-align: center;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 768px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
    }
}

.carousel-caption h1 {
    font-size: 1.8rem;
}

@media (min-width: 768px) {
    .carousel-caption h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .carousel-caption h1 {
        font-size: 4.5rem;
    }
}

.carousel-caption h4 {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .carousel-caption h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-contact {
    background: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, 0.648)), url(../img/sl-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, 0)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-propos {
    background: linear-gradient(rgba(0, 0, 0, 0.376), rgba(0, 0, 0, 0.72)), url(../img/girl-back.jpg) center center no-repeat;
    background-size: cover;
}

.page-FAQ {
    background: linear-gradient(rgba(0, 0, 0, 0.376), rgba(0, 0, 0, 0.72)), url(../img/coffee.JPEG) center center no-repeat;
    background-size: cover;
}

.page-media {
    color: #111111;
}

@media (max-width: 768px) {
    .page-contact, .page-header, .page-propos, .page-FAQ, .page-media {
        min-height: 200px;
        padding: 50px 0;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}



#welcome {
    min-height: 1040px;
    height: auto;
}

#welcome h2 {
    font-family: 'Oswald', sans-serif;
    line-height: 1.2;
    font-size: 2.5rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    #welcome h2 {
        line-height: 1.1;
        font-size: 5.1rem;
    }
}

#welcome h3 {
    font-family: 'Oswald', sans-serif;
    line-height: 1.2;
    font-size: 2rem;
    color: white; /* Changed to white as requested */
    margin-top: 20PX;
}

@media (min-width: 768px) {
    #welcome h3 {
        line-height: 1.1;
        font-size: 3.6rem;
    }
}

/* Specific color for the welcome titles that should stay dark on white background */
#welcome .wow.fadeInUp h3:first-of-type {
    color: #181818;
}

/* Ensure the question text is always white on the dark background */
#welcome .row-top h3 {
    color: white !important;
}

@media (max-width: 1400px) and (min-width: 992px) {
    #welcome .wow.fadeInUp h3 {
        color: white; /* Make the "bienvenue" text white when it falls into the black background */
    }
}

@media (max-width: 991.98px) {
    #welcome h2, #welcome h3 {
        color: white !important;
    }
}

#welcome p {
    color: #ffffff;
    font-size: 1.1rem;
    text-align: justify;
}

@media (min-width: 768px) {
    #welcome p {
        font-size: 1.3rem;
    }
}

#welcome img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

#welcome {
    background: #151213;
}

@media (min-width: 992px) {
    #welcome {
        background: linear-gradient(to bottom, white 0, white 550px, #151213 550px);
    }
}

@media (min-width: 1401px) {
    #welcome {
        background: linear-gradient(to bottom, white 0, white 380px, #151213 380px);
    }
}

blockquote {
    min-height: 196px; /* Use min-height instead of fixed height */
    height: auto;
    background: url('../img/quote.svg') center no-repeat;
    background-size: 100% 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Add some padding for desktop too */
}

@media (max-width: 992px) {
    blockquote {
        height: auto;
        min-height: 196px;
        padding: 40px 20px;
        background-size: cover;
    }
    blockquote p {
        font-size: 1.1rem;
    }
}

/* section 3 : hero banner */
/**************************/
.hero-banner {
    margin-top: 0px;
    background-image: url('../img/section-welc.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    min-height: 100vh;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-banner h2:first-of-type {
    font-weight: 200;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0;
}

@media (min-width: 768px) {
    .hero-banner h2:first-of-type {
        font-size: 50px;
    }
}

.hero-banner p {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 30px;
}

@media (min-width: 768px) {
    .hero-banner p {
        font-size: 60px;
    }
}

.custom {
    /* cta */
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 40px;
    padding: 20px 30px;
    background-color: #e71b24;
    border-radius: 0;
}

.custom:hover {
    background-color: #1f1f1f;
}

/******* Section 4 : Prestations*****/
/***********************************/
#prestations {
    padding-top: 60px;
}

#prestations h2 {
    margin-bottom: 60px;
}

#prestations h4 {
    margin: 30px;
    color: #151213;
}

#prestations p {
    font-size: 18px;
}

.card {
    border: none;
}

.card img {
    height: 250px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .card img {
        height: 400px;
    }
}

.card-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.btnsquare {
    margin: auto;
    width: 140px;
    height: 40px;
    text-transform: uppercase;
        border-radius: 0;
        border: none;
        font-size: 14px;
        background-color: #1f1f1f;
        color: #ffffff;
        padding: 9px 0px 0px 0px;
}

.btnsquare:hover {
    background-color: #d20007;
    color: #ffffff;
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


.fondnoir1 span, .fondnoir1 p,
.fondnoir2 p,.fondnoir2 span,.fondblanc1 span {
     color: #ffffff;
 }

 .props h1, .props h3 {
    color: #151515;
}

.fondnoir1 {
    background-color: #111111;
}
.fondnoir2 {
    background-color:#313131;
}
.fondblanc1 {
    background-color: #ffffff;
}




/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

/******** */
.reservation {
    background-image: url('../img/photos/reservation-bg.png');
    background-size: cover;
    background-position: center center;
    height: 150vh;
}

/* Prestations Rollover Effects - Photos Only */
#prestations .card {
    border: none;
    background: transparent;
}

#prestations .overflow-hidden {
    border-radius: 10px; /* Optional: smooth corners for the photo */
    transition: transform 0.4s ease;
}

#prestations .card img {
    transition: transform 0.6s ease, filter 0.3s ease;
}

#prestations .card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.contact-section {
    background-image: url(/assets/img/photos/contact-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact-section h3 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section form label {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-section form input[type="text"],
.contact-section form input[type="email"],
.contact-section form input[type="tel"],
.contact-section form textarea {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 20px;
    width: 100%;
}

.contact-section form input[type="text"]:focus,
.contact-section form input[type="email"]:focus,
.contact-section form input[type="tel"]:focus,
.contact-section form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.7);
}

.contact-section form input[type="submit"] {
    background-color: #d20007;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    transition: background-color 0.5s ease;
}

.contact-section form input[type="submit"]:hover {
    background-color: #333;
}

.contact-section form label.checkbox {
    display: block;
    margin-top: 30px;
}

.contact-section form label.checkbox input[type="checkbox"] {
    display: inline-block;
    margin-right: 10px;
}

.contact-section form button {
    background-color: #d20007;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    margin-top: 20px;
}
/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.footer span {
    color:#fff;
}
.logott {
    height: auto;

    /* Alignement à gauche du logo */
    
    /* Marge à droite pour séparer le logo du contenu */
}

.adress {
    margin-top: 4px;

    /* Alignement à gauche du logo */

    /* Marge à droite pour séparer le logo du contenu */
}

.logo-tt  {
     margin: 0px !important;
     width: 240px;

 }

 .logo-tt-s {
     margin-right: 0 !important;
     margin-top: 20px;
     max-width: 150px;
 }

 @media (min-width: 768px) {
    .logo-tt-s {
        margin-right: 20px !important;
        margin-top: 40px;
        max-width: none;
    }
 }

 /** PAGE media* */
 .video-section {
     width: 100%;
     height: auto;
     position: relative;
     overflow: hidden;
     margin-bottom: 0; /* Reduced margin */
 }

 .py-5.media-section, .page-media { 
     padding-top: 0.5rem !important;
     padding-bottom: 1rem !important;
 }

 .video-section video {
     width: 100%;
     height: auto;
 }

  .mtop {
    margin-top: 20px;
 }

 @media (min-width: 768px) {
    .mtop {
        margin-top: 30px;
    }
 }

 @media (min-width: 992px) {
    .mtop {
        margin-top: 40px;
    }
 }

/* FAQ */
@import url(https://fonts.googleapis.com/css?family=Raleway);

.faq {
    max-width: 1080px;
    width: 95%;
    margin: 60px auto 100px auto;
}

.faq-header {
    font-size: 42px;
    border-bottom: 1px dotted #ccc;
    padding: 24px;
}

.faq-content {
    margin: 0 auto;
}

.faq-question {
    padding: 20px 0;
    border-bottom: 1px dotted #ccc;
}

.panel-title {
    font-size: 24px;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 10px 10px 0 68px;
    display: block;
    cursor: pointer;
}

.panel-content {
    font-size: 20px;
    padding: 0px 14px;
    margin: 0 40px;
    height: 0;
    overflow: hidden;
    z-index: -1;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.panel:checked~.panel-content {
    height: auto;
    opacity: 1;
    padding: 14px;
}

.plus {
    position: absolute;
    margin-left: 20px;
    margin-top: 4px;
    z-index: 5;
    font-size: 42px;
    line-height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.panel:checked~.plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.panel {
    display: none;
}

@media (max-width: 767.98px) {
    #welcome {
        min-height: auto;
    }

    #welcome h2 {
        font-size: 2rem;
    }

    #welcome h3 {
        font-size: 1.8rem;
        margin-top: 10px;
    }

    #welcome p {
        font-size: 1rem;
    }

    #welcome img {
        margin-top: 20px;
    }

    #welcome {
        background: #151213;
    }
    
    .display-1 { font-size: 2.5rem; }
    .display-2 { font-size: 2.2rem; }
    .display-3 { font-size: 2rem; }
    .display-4 { font-size: 1.8rem; }
}

@media (max-width: 767.98px) {
    br.hide-mobile {
        display: none;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .row-top img, .row-top + .row img {
        margin-top: 30px;
    }
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for horizontal scroll and sticky footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.footer {
    margin-top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footer > .container {
    max-width: 1320px; /* Keep the content centered but the footer background full width */
}