/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,300;1,300&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;

}
body {
    font-family: 'Poppins', sans-serif; /* Consistent font */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
html{
    scroll-behavior: auto;

}
.hero{
    width: 100%;
    height: 100vh;
    background-image: transparent;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* modified */
}

.navbar-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

nav .logo{
    width: 100px;

}

nav ul {
    list-style: none;
    display: flex; /* Make the menu items horizontal by default */
    align-items: center;
    margin: 0; /* Reset default margins */
    padding: 0; /* Reset default padding */
}

nav ul li{
    display:inline-block;
    margin-left: 40px;
    text-transform: uppercase;
}

nav ul li a{
    text-decoration: none;
    color:#fff ;
    text-shadow: 3px #AB8608;
    font-family: "Albert sans", sans-serif;
    font-style: normal;
    font-size: 15px;
    font-weight:400;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #ddd;
}
#crea{
    height: 246px;
}
/* Toggle button styles (hamburger icon) */
.navbar-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none; /* Hidden by default, shown in media query */
}

.navbar-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    display: block; /* Ensure bars are block elements */
}

/* Rotate bars to create 'X' when active */
.navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.content{
    text-align: center;
}

.content h1{
    font-size: 54px;
    font-family: Lora, serif;
    color: #fff;
    font-weight: 600px;
    line-height: 72px;

}

.txt_bg{
    color: #fff;
    font-family: 'Lora', serif;
    font-size: 30px;
}
.content a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
}
.back-video{
    width: 100%;
    position: absolute;
    right:0;
    bottom:0;
    z-index: -1;
}

/* RESPONSIVE FOR BACKGROUND VIDEO */

@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }


}

@media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }


}

.scroll-down{
    height: 50px;
    width: 30px;
    border: 2px solid white;
    position: absolute;
    left: 50%;
    bottom: 20px;
    border-radius: 50px;
    cursor: pointer;
}

.scroll-down::before,
.scroll-down::after{
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    border: 2px solid white;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 1s ease-in-out infinite;
}

.scroll-down::after{
    top:30%;
    animation-delay: .3s;
}

@keyframes scroll-down {
    0%{
        opacity:0;
    }
    30%{
        opacity:1;
    }
    60%{
        opacity:1;
    }
    100%{
        opacity:0;
        top:90%
    }
}

/* SECTION NOS SERVICES */

@keyframes appear{
    from{
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}

.block{
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range:entry 0% cover 40%;

}

.py-5{
    padding-top: .1rem;
}

.services_wrapper{
    font-family:'Lora', sans-serif;
    text-transform: uppercase;
    color: #2b2929;
    font-size: 25px;
}

#text_Present{
    color: #000;
    font-size: 30px;
    font-family: serif;
}

.album{
    top:-30px;
}

/* FOOTER */
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  .b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
  }

  .bd-mode-toggle {
    z-index: 1500;
  }

  .bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
  }


/* Media query for smaller screens */
@media (max-width: 768px) {
    nav .logo{
        z-index: 1;
    }

    nav ul {
        display: none; /* Hide the menu by default */
        flex-direction: column; /* Stack the menu items vertically */
        position: absolute;
        top: 0; /* Adjust based on your header height */
        left: 0;
        width: 100%;
        height: 270px;
        background-color: rgba(41, 31, 14, 1); /* Optional: Add a background to the mobile menu */
        text-align: center;
    }

    nav ul li {
        display: block; /* Make list items block elements */
        margin: 20px 0;
    }

    nav ul li a {
        font-size: 18px;
    }

    /* Show the menu when the 'active' class is added (by JavaScript) */
    nav ul.active {
        display: block;
    }

    .navbar-toggle {
        display: block; /* Show the toggle button */
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1;
    }
    .scroll-down{
        z-index: -10;
    }

}


/* DEBUT CSS DE LA PAGE CONTACT */

