/*
Theme Name: High Life Charters 
Author: Ledge Digital 
Version: 1.0
*/
<style>
.wpforms-field-label{
    font-size: 18px!important;
}
body{
    width:100%;
}
video{
    width:100%;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
nav{
    height: 65px;
    width: 100%;
    background-color: #062f4f;
    color: white;
    position: sticky;
    box-shadow: 0px 0px 8px #000;
    z-index:99;
    display: flex;
}
header{
    position: sticky;
    z-index: 9999;
    top: 0px;
}
footer{
    height:75px;
    width:100%;
    background-color:white;
}
.mobile-button{
    display: none;
}
.footer{
    display: flex;
    align-items: center;    /* Vertical */
    justify-content: center;
    color: #062f4f
    height: 75px;
    padding-top: 25px;
}
.nav-container{
    justify-content: space-between;
    display: flex;
    transition: all 0.3s ease-in-out;
}
nav ul{
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    height: 60px;
    align-items:center;
    transition: all 0.3s ease-in-out;
}
.logo {
    height: 120px;
    background-color: #062f4f;
    border-radius: 8px;
    border-bottom: 5px solid #f5c546;
    box-shadow: 0 6px 6px -6px black;
    transition: all 0.3s ease-in-out;
}
nav ul li{
    list-style-type: none;
}
nav ul li .cta{
    background-color: white;
    color: #062f4f;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
nav ul li .cta:hover{
    background-color: #f5c546;
    color: #062f4f;
    transition: all 0.3s ease-in-out;
}
nav ul li a{
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
nav ul li a:hover{
    color: #f5c546;
    transition: all 0.3s ease-in-out;
}
.hero{
    width:100%;
    position: relative;
}
.banner-overlay{
    bottom: 40px;
    height: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    gap: 20px;
    align-items: center;
    margin-top: -185px;
    position: relative;
}
h1{
    color: #062f4f;
    font-size: 68px;
}
h1:before {
    position: absolute;
    left:180px;
    top: 50%;
    margin-top: -57px;
    height: 2px;
    width: 108px;
    content: "";
    border-top: 2px solid #062f4f;
}
h1:after{
    position: absolute;
    right:180px;
    top: 50%;
    margin-top: -57px;
    height: 2px;
    width: 108px;
    content: "";
    border-top: 2px solid #062f4f;
}
.the-form{
    width: 100%!important;
    max-width: 500px!important;
}
legend,label{
    color: white!important;
}
.empty-space{
    height: 35px;
    width: 100%;
    background-color: unset;
    position: relative;
}
/* Main Container */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Slider (Horizontal Scroll) */
.slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px;
  width: 100%;
}

/* Individual Card */
.card {
  flex: 0 0 300px; /* Card width */
  height: 350px;
  background: linear-gradient(135deg, #6e45e2, #88d3ce);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow:hidden;
}

/* Navigation Buttons */
.slider-container button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }
main{
    margin-top: -100px;
}
.banner-overlay h2{
    display: block;
    margin-top: -40px;
    color: #062f4f;
    font-size: 26px;
}
.banner-overlay a{
    background-color: #062f4f;
    padding: 20px;
    color: white;
    font-size: 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.banner-overlay a:hover{
    color: #062f4f;
    background-color: #f5c546;
    transition: all 0.3s ease-in-out;
}
.rates-box, .boat, .items, .contact{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: 80px;
}
.rates-section,.contact-section{
    background-color:#062f4f;
    padding-bottom: 25px;
    color: white;
}
.rates-section h3,.contact-section h3{
    color: white;
    padding-bottom: 10px;
    padding-top: 50px;
}
.boat img{
    height:400px;
}
h3{
    font-size: 42px;
    color: #062f4f;
}
.rates-container{
    display: flex;
    gap: 50px;
}
.rates{
    border: solid 3px #062f4f;
    border-radius: 8px;
    padding: 10px 20px;
}
@media (max-width: 1400px) {
    h1{
        font-size:44px;
    }
    h1:before, h1:after{
        display:none;
    }
    .banner-overlay{
        margin-top: -135px;
    }
}
@media (max-width: 1024px) {
    .show-menu{
	visibility: visible!important;
        transition: all 0.2s ease-in-out;
    }
    .mobile-button{
        display: block;
        height: 55px;
        margin-top:5px;
        cursor: pointer;
        z-index: 999;
    }
    .nav-container ul{
        background-color: #062f4f;
        transition: all 0.2s ease-in-out;
        height:100vh;
        width:50%;
        padding-top:75px;
        position: absolute;
        right:0;
        display: block; 
        z-index:1;
    }
    .nav-container ul li a{
        font-size: 24px;
        line-height: 55px;
    }
    .nav-container ul li .cta{
        line-height: 80px;
    }
    h1{
        font-size:38px;
    }
    .banner-overlay{
        margin-top: -85px;
    }
    .nav-container ul{
	visibility: hidden;
    }
    .empty-space{
        display:none;
    }
    .logo{
        height: 60px;
        border:unset;
        box-shadow: unset;
    }
}
@media (max-width: 650px) {
    .banner-overlay{
        margin-top: -25px;
    }
    video{
        height: 60vh;
        object-fit: cover;
    }
    h1{
        font-size:42px;
    }
    h3{
       font-size: 32px; 
    }
    h4{
        font-size:22px;
    }
}
</style>
