body,html{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    overflow-x: hidden;
    /* background-color: #eeeeee; */
    -webkit-tap-highlight-color: transparent;
}
body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #001446;
  background-image: url('../Files/Home/TestWall2.jpg');
  background-position: center;
  background-size: cover;
}
.content{
  display: flex;
  flex-direction: column;
  flex: 1;
}
.events{
  width: 100%;
  height: fit-content;
  padding: 50px 0;
  background-color: #fafafafa;
  display: grid;
  place-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.eventsBox{
  height:fit-content;
}
.theevents{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 1200px;
  padding: 0 10px;
  gap: 10px;
}
.theevents a{
  position: relative;
  display: inline-block;
}
.theevents img{
  width: 100%;
  border-radius: 5px;
  filter: saturate(1.2);
  display: block;
  cursor: pointer;
}
.eventsBox h1{
  font-size: 30px;
  color: #0B1347;
  padding-left: 10px;
}
.theevents p{
  position: absolute;
  text-transform: uppercase;
  top: 5px;
  left: 10px;
  font-size: 25px;
  color: white;
  font-weight: 600;
}
@media (max-width:900px) {
  .theevents{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    padding: 10px;
  }
}
@media (max-width:600px) {
  .theevents{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 10px;
    padding: 10px;
  }
  .events{
    padding: 20px 0;
  }
  .eventsBox h1{
    font-size: 25px;
  }
  /* .theevents img{
    border-radius: 0px;
  } */
}

:root{
    --Theme: #014d8f;
    --ThemeSecondary: #003e74;
  }
::-webkit-scrollbar{
    width: 0;
}
.main-image{
    height: 300px;
    filter: saturate(0.8);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: baseline;
    flex-direction: column;
}
.header-search-body{
    flex-grow: 1;
    width: 100%;
    display: grid;
    place-items: center;
}
.home-header{
    width: 100%;

}
.header-body{
    height: 100%;
    display: flex;
    align-items: center;
}
.header-body>h2{
    margin: 0;
    margin-left: 10px;
    font-weight: 600;
    color: white;
    font-size: 18px;
}
.header-body>div{
    height: 70px;
    width: 70px;
    border-radius: 6px;
    margin-left: 50px;
}
#LogoImg{
  width: 100%;
  height: 100%;
}
.search-box{
    width: fit-content;
}
.bottom-searchs{
    background-color: #00000040;
    backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.search-box>h4{
    margin: 0;
    color: white;
    font-size: 23px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.Input-boxs{
    width: fit-content;
    height: 100%;
}

.input-box {
    outline: none;
    background-color: rgba(242, 246, 255, 0.2); 
    width: fit-content;
    border: 2px solid rgba(211, 211, 211, 0.312);
    color: white;
    font-size: 16px;
    border-radius: 5px;
    padding: 0;
    padding: 13px;
}
.selected-value{
    margin-left: 5px;
}
  .select-box {
    font-weight: 500;
    background-color: rgba(242, 246, 255, 0.2); 
    padding: 10px 0px;
    border-radius: 5px;
    border: 2px solid rgba(211, 211, 211, 0.312);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
  }
  .custom-dropdown{
    width: 400px;
  }
  input[type='text'].input-box{
    width: 450px ;
    border: 2px solid transparent;
  }

  button.input-box {
    cursor: pointer;
    background: linear-gradient(to top,#004bad,#0068ef);
    transition: all .1s ease-in-out;
    display: flex;
    gap: 4px;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    width: 150px;
  }
  button.input-box ion-icon{
    font-size: 18px;
    transform: translateY(-1px);
  }
  
  .options-container {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    width: 200px;
    max-height: 150px;
    overflow-y: auto;
    border-radius: 5px;
    z-index: 1000;
  }
  
  .options-container.show {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
    padding: 10px;
  }
  
  .option {
    color: #474747;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
  }
  
  .option:hover {
    background-color: #eee;
    border-radius: 5px;
  }
  

.input-box::placeholder {
    color: white;
}

button.input-box:active {
    transform: scale(0.96);
}

.calendar-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    /* fill: white; */
    color: white;
    pointer-events: none;
}
.Available-text{
    text-align: center;
    margin-bottom: 20px;
    font-size: 35px;
    color: #0B1347;
}
#YachtDetails{
  background-color: #efefeffa;
  flex-grow: 1;
  padding: 10px 0;
}
.Yachts-main{
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;

}
.Yachts{
    max-width: 100%;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding: 10px;
}
.Yachts a{
    text-decoration: none;
}
.the-yachts:hover{
    transform: scale(1.02);
    box-shadow: 8px 8px 17px #00000035;
}
.the-yachts{
    transition: all .3s ease-in-out;
    cursor: pointer;
    /* border: 3px solid #00000000; */
    height: fit-content;
    max-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    box-shadow: 8px 8px 10px #00000025;
    padding-bottom: 10px;
}

.the-yachts .images img{
    max-width: 100%;
    /* height: 250px; */
    object-position: center;
    object-fit: cover;
}
.Yachts-descrip{
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    gap: 7px;
}
.Yachts-descrip h4{
    margin: 0;
    color: #0B1347;
}
.Y-name{
    font-size: 26px;
}
.Yachts-descrip b{
    color: var(--ThemeSecondary);
}
.price,.capacity,.book-now{
    font-size: 14px;
    width: 100%;
    display: flex;
    align-items: center;
}
.price ion-icon,.capacity ion-icon{
    color: var(--ThemeSecondary);
    font-size: 20px;
    margin-right: 5px;
}
.book-now{
 width: 95% !important;
 height: 50px;
 display: grid;
 place-content: center;
}
.book-now button{
    padding: 9px 35px;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    background-color: #003e74;
    color: white;
    font-weight: 600;
}
footer{
    width: 100%;
    /* height: 150px; */
    background-image: url('../Files/Home/TestWall2.jpg');
    margin: 0 !important;
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* footer>div{
    min-width: 30%;
    height: 100%;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  footer>div:last-child{
    align-items: baseline;
  }
  footer>div:last-child>a>div{
    width: fit-content;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  footer a{
    color: white;
    text-decoration: none;
    font-weight: 300;
  }
  footer ion-icon{
    font-size: 25px;
  } */


.EventDetails{
  max-width: 1520px;
  margin: 0 auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 15px;
}
.Event-headers{
  width: 80%;
  height: fit-content;
}
.Event-headers h1{
  font-weight: 400 !important;
  margin: 0;
  font-size: 40px;
}
.Event-headers h2{
  font-weight: 700 !important;
  margin: 0;
  font-size: 35px;
}
.Event-body{
  width: 80%;
  display: flex;
  margin-bottom: 20px;
  gap: 20px;

}
.Event-body > div{
  /* background-color: gray; */
  width: 50%;
  
}
.Event-body > div:last-child{
  display: grid;
  place-items: center;
}
.Event-body > div p{
  font-weight: 300;
  font-size: 15px;
}
.Event-body > div b{
  font-weight: 600;
  font-size: 16px;
}
.Event-body > div img{
  width: 100%;
  border-radius: 10px;
}
.videos-Details{
  width:80%;
  height:fit-content; 
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 10px;
  margin-bottom: 40px;
}
.videos-Details> video{
  width: 100%;
  height: 300px;
  background-color: black;
  border-radius: 10px;
}

@media (max-width:800px) {
  .Event-body{
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }
  .Event-body > div{
    width: 100%;
  }
  .Event-headers{
    width: 100%;
  }
  .Event-headers h1{
    font-size: 30px;
  }
  .Event-headers h2{
    font-size: 25px;
    margin-bottom: 20px;
  }
}
@media (max-width:1100px) {
    .Yachts{
        grid-template-columns: repeat(2,1fr);
    }
    .the-yachts{
        max-width: 100%;
    }
    
}
@media (max-width:1200px) {
  .videos-Details{
    width: 90%;
}
  
}
@media (max-width:700px) {
    .Yachts{
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
    }
    
    input[type='text'].input-box{
        width: 93%;
        margin: 0 auto;
    }
}
@media (max-width:650px) {
  .Available-text{
    font-size: 25px;
  }
  .main-image{
    height: 300px;
  }
    .header-body>div{
        margin-left: 10px;
    }
    .bottom-searchs{
        flex-direction: column;
        width: 100%;
        gap: 6px;
        transform: translateX(-10px);
    }
    button.input-box {
        width: 100%;
    }
    .search-box{
        width: 80%;
    }
    .search-box > h4{
        text-align: center;
    }
    .Input-boxs{
        width: 100%;
    }
    .custom-dropdown{
        width: 100%;
    }
}
/* 
@media (max-width: 950px) {
    footer>div:last-child>a>div{
      font-size: 13px;
    }
  
    
    
  }
  @media (max-width:680px) {
  footer>div:last-child>a>div{
    font-size: 12px;
  }
  footer{
    margin: 0;
  }
  footer>div{
    height: fit-content;
    gap: 10px;
  }
  footer ion-icon{
    font-size: 14px;
  }
  }
  @media (max-width:410px) {
    footer{
      flex-direction: column;
      height: fit-content;
      padding: 10px 0;
    }
    footer>div:last-child>a>div{
        width: fit-content;
        font-size: 15px;
      }
      footer>div{
        gap: 15px;
        margin: 0;
      }
      footer ion-icon{
        font-size: 17px;
      }
    
  }
   */