@import "//netdna.bootstrapcdn.com/font-awesome/3.0/css/font-awesome.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    height: 100%;
}

body {
    line-height: 1.6;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #eae4d8;
    font-family: 'Segoe UI', sans-serif;
    display: block;
}

.info-box {
            position: relative;
            width: 100%;
            margin: 0 auto;
            background-color: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .image-banner {
            width: 100%;
            height: 300px;
            object-fit: cover;
            object-position: center 25%;
        }
        .info-panel {
            display: flex;
            padding: 20px;
            width: 100%;
            justify-content: space-around;
        }
        .left-badge {
            background-color: #FF6A00;
            color: white;
            font-size: 24px;
            font-weight: bold;
            padding: 20px;
            position: absolute;
            top: 200px;
            left: 0;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .rendez-vous {
        background: linear-gradient(to right, #FF6A00, #ff5858); /* ou orange: #ff6a00 à #ffbb00 */
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        font-size: 25px;
        width: 100%;
        margin-top: 20px;
        font-family: 'Segoe UI', sans-serif;
        transition: background 0.3s ease;
        display: inline-block;
        text-align: center;
        }

.rendez-vous:hover {
  background: linear-gradient(to right, #ff6a00, #ffbb00);
  cursor: pointer;
}


        .infos h2 {
            margin-top: 0;
        }
        .infos p {
            line-height: 1.5;
        }

.card-box{
    display: flex; 
    gap: 10px; 
    justify-content: space-evenly;
    align-items: center; 
    flex-wrap: wrap; 
    margin-top: 10px;
}

@media (max-width: 768px) {
    .card-box{
        flex-direction: column;
    }

    .card-container {
        width: 80% !important;
        margin: 20px 0;

    }

}

.card-container {
      display: flex;
      background: #ffffff;
      border-radius: 14px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      max-width: 700px;
      overflow: hidden;
      width: 45%;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .card-image {
      width: 300px;
      background: url('https://i.postimg.cc/tCk370bG/Silicon-Beach.png') no-repeat center center;
      background-size: cover;
    }

    .card-content {
      padding: 20px 30px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .location {
      font-size: 0.85em;
      color: #999;
      margin-bottom: 8px;
    }

    .property-title {
      font-size: 1.4em;
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
    }

    .viab {
      color: #666;
      margin-bottom: 10px;
    }

    .surface {
      margin-bottom: 15px;
      color: #444;
      font-size: 0.95em;
    }


    .buttons {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .buttons a {
      text-decoration: none;
      padding: 10px 15px;
      border-radius: 6px;
      font-size: 0.9em;
      font-weight: bold;
      transition: 0.2s ease;
    }

    .btn-primary {
      background-color: #ff6600;
      color: #fff;
    }

    .btn-primary:hover {
      background-color: #e65c00;
    }


.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 0;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: white;
  padding: 10px 20px;
  justify-content: space-between;
  display: flex;
}


.search{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.search form{
    display: flex;
    align-items: center;
    width: 100%;
}

.search select {
    width: 25%;
    padding: 5px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    border: 1px solid #ff6224;
}


.logo img {
    height: 50px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 30px;
  z-index: 2000;
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}


@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    flex-direction: column;
    align-items: center;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
    z-index: 9999;
  }

  .nav-menu.active {
    display: flex;
    z-index: 9999;
    position: absolute;
  }
}



.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6224;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }
    .nav-menu.active {
        display: flex;
        position: absolute;
    }
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

.container{
    width: 100%;
    height: 90vh;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content{
    width: 70%;
    height: auto;
    text-align: center;
    background-color: white;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    border-radius: 15px;
    box-shadow: rgba(74, 79, 97, 0.25) 0px 13px 27px -5px, rgba(74, 79, 97, 0.3) 0px 8px 16px -8px;
}

.content h2{
    font-size: 30px;
    color: #333;
    padding-top: 10px;
}

.content h2:hover{
    color: #ff6224;
    cursor: pointer;
}

.content a{
    font-size: 23px;
    color: #333;
    text-decoration: none;
    border: 2px solid #333;
    padding: 15px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.content a:hover{
    background-color: #fff;
    color: #000;
}

.response{
    gap: 10px; 
    display: flex; 
    justify-content: center; 
    margin-top: 20px;
}



.recherche{
    min-inline-size: 14ch;
    width: 30%;
    justify-content: space-between;

    &, &::picker(select){
        appearance: base-select;
        padding: 1rem;
        border: 1px solid #ff6224;
        border-radius: 1rem;
        line-height: 1;
    }

    &::picker(select){
        margin-block-start: 0.5rem;
    }

    &::picker-icon {
        display: none;  
    }

    .picker{
        transition: rotate 0.3s ease;

        :open &{
            rotate: 90deg;
        }
    }

    selectedcontent{
       transition: translate 1s var(--spring-easing), opacity 1s;

       @starting-style{
        opacity: 0;
        translate: 0% 100%
       }
    }
}

.sub-button{
    background-color: #ff6224;
    color: #fff;
    border: none;
    padding: 10px 35px;
    border-radius: 10px;
    margin-top: 0px;
    cursor: pointer;
}


@media (max-width: 1024px) {
    .content{
        height: auto;
    }

}

@media (max-width: 768px) {
    .recherche {
        width: 60%;
        height: 50px;
        margin-bottom: 30px ;
    }
    .response {
        display: block;
    }

    .content {
        width: 80%;
        height: auto;
        padding: 5px;
    }
    .content h2{
        font-size: 25px;
    }
}


@media (max-width: 480px) {
    .recherche {
        width: 70%;
        height: 50px;
        font-size: 14px;
        padding: 0.8rem;
    }
}

.background-clip{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio:16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .background-clip{
        width: auto;
        height: 100%;
    }
}

.title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #1e1e1e;
    margin-bottom: -10px;
}

.title h1{
    font-family: "Abril Fatface", serif;
    font-size: 40px;
    color: #fefff0;
    text-align: center;
    margin-top: 30px;
}

.title2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #1e1e1e;
    margin-bottom: -70px;
    margin-top: -150px;
}


.title2 h1{
    font-family: "Abril Fatface", serif;
    font-size: 40px;
    color: #fefff0;
    text-align: center;
    margin-top: 20px;
}


@media (max-width: 480px) {
    .title2 h1 {
        font-size: 25px;
    }
}



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

.wrapper {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    background-color: #1e1e1e;
    
}

.card {
    position: relative;
    width: 300px;
    height: 400px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

.poster {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.poster::before {
    content: '';
    position: absolute;
    bottom: -45%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: .3s;
}

.card:hover .poster::before {
    bottom: 0;
}

.poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.card:hover .poster img {
    transform: scale(1.1);
}

.details {
    position: absolute;
    bottom: -120%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 1.5em 1.5em 2em;
    background: #000a;
    backdrop-filter: blur(16px) saturate(120%);
    transition: .3s;
    color: #fff;
    z-index: 2;
}

.card:hover .details {
    bottom: 0;
}

.details h1,
.details h2 {
    font-weight: 700;
}

.details h1 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.details h2 {
    font-weight: 400;
    font-size: 1em;
    margin-bottom: 10px;
    opacity: .6;
}

.details .tags {
    display: flex;
    gap: .375em;
    margin-bottom: .875em;
    font-size: .85em;
    flex-flow: wrap ;
    flex-wrap: wrap;
}

.details .tags span {
    padding: .35rem .35rem;
    color: #fff;
    border: 1.5px solid rgba(255 255 255 / 0.4);
    border-radius: 50px;
    
}

.details .desc {
    color: #fff;
    opacity: .8;
    line-height: 1.5;
    margin-bottom: 1em;
}

.details a{
    text-decoration: none;
    color: #fff;
}

.details .cast h3 {
    margin-bottom: .5em;
}

.details .cast ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    width: 100%;
}

.details .cast ul li {
    list-style: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid #fff;
}

.details .cast ul li img {
    width: 100%;
    height: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    
}

.procedural {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 100px 50px;
    background-color: #1e1e1e;
}

.procedural .illustrations {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 250px;
    max-width: 100%;
    height: 300px;
    background: #FFF;
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.commod{
    font-size: 35px;
    margin-left: 25px;
}

.disponibilite{
    font-size: 35px;
    margin-left: 90px;
    color: #ff6600
}

@media (max-width:975px) {
 
    .commod .disponibilite {
       font-size: 20px;
    }
}

.procedural .illustrations:hover {
    height: 400px;
}

.procedural .illustrations .img-box {
    position: absolute;
    top: 20px;
    width: 200px;
    height: 120px;
    
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}

.procedural .illustrations:hover .img-box {
    top: -70px;
    scale: 0.75;
    
}

.procedural .illustrations .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: visible;
}
 
.procedural .illustrations .rules {
    position: absolute;
    top: 252px;
    width: 100%;
    height: 35px;
    padding: 0 30px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

.procedural .illustrations:hover .rules {
    top: 100px;
    height: 250px;
}

.procedural .illustrations .rules h2 {
    font-size: 20px;
    font-weight: 700;
    color: #03A9F4; 
}

.procedural .illustrations .rules p {
    text-align: justify;
    color: #333;
}

.procedural .illustrations .rules a {
    position: relative;
    top: 10px;
    display: inline-block;
    padding: 0px 25px;
    text-decoration: none;
    background: var(--clr);
    color: #FFF;
    font-weight: 500;
}

.procedural .illustrations .rules a:hover {
    opacity: 0.8;
}

@media (max-width: 480px) {
    .procedural .illustrations {
        width: 230px;
        border-radius: 15px;
    }

    .procedural .illustrations .img-box {
        width: 185px;
        border-radius: 10px;
    }

    .procedural .illustrations .rules p {
        font-size: 0.8rem;
    }

    .procedural .illustrations .rules a {
        font-size: 0.9rem;
    }
}

/** Footer Styles */

footer {
    margin-top: auto;
    position: relative;
    bottom: 0;
    padding-top: 600px;
    padding-bottom: 0%;
}

@media (max-height:800px) {
 
    header {
        padding-top: 40px;
    }
}

.footer-distributed {
    background-color: #fff;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 60px 50px;
    margin-top: 80px;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}



.footer-distributed .footer-left {
    width: 30%;
    margin-right: 50px;
}

.footer-distributed .footer-left img {
    width: 73%;
    height: 80px;
}

.footer-distributed h3 {
    color: black;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
}


.footer-distributed h3 span {
    color: #ff6224;
    font: normal 36px 'Cookie', cursive;
}



.footer-distributed .footer-links {
    color: black;
    margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}



.footer-distributed .footer-center {
    width: 30%;
}

.footer-distributed .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}
.footer-distributed .footer-center i.fa-location-dot {
    font-size: 17px;
    line-height: 38px;
}
.footer-distributed .footer-center i.fa-phone {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: black;
    vertical-align: middle;
    margin: 0;
}

.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-distributed .footer-center p a {
    color: #ff6224;
    text-decoration: none;
    ;
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 30%;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: black;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
    text-align: justify;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #ff6224;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons {
    margin-top: 25px;
}

.footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #33383b;
    padding-top: 8px;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
    background-color: #ff6224;
}

.footer-links a:hover {
    color: #ff6224;
}

@media (max-width: 880px) {
    .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .footer-distributed .footer-center i {
        margin-left: 0;
    }
}      

.footer-distributed{
  display: block;
  margin-top: 0px;
  
}
