﻿/* houseboats.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --ocean:#0B3C5D;
  --teal:#00A8A8;
  --white:#fff;
  --light:#F5F8FB;
  --text:#102535;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--white);
  color:var(--text);
  overflow-x:hidden;
}

/* NAVBAR */
/* NAV */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    padding: 20px 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(255,255,255,0.97);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    padding: 14px 48px;

    box-shadow: 0 4px 24px rgba(11,60,93,0.1);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: color 0.3s;

    position: relative;
}

.nav-links a::after {
    content: '';

    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;

    height: 1px;

    background: #00A8A8;

    transform: scaleX(0);

    transition: transform 0.3s;
}

.nav-links a:hover {
    color: #00A8A8;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav.scrolled .nav-links a {
    color: #0B3C5D;
}

.nav.scrolled .nav-links a:hover {
    color: #00A8A8;
}

.nav-cta {
    background: #00A8A8;
    color: #fff;

    border: none;

    padding: 10px 24px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s;
}

.nav-cta:hover {
    background: #00C8C8;

    transform: translateY(-1px);

    box-shadow: 0 8px 24px rgba(0,168,168,0.4);
}

/* HAMBURGER */

.nav-hamburger {
    display: none;

    flex-direction: column;
    gap: 5px;

    background: none;
    border: none;

    cursor: pointer;

    padding: 6px;

    z-index: 1001;

    position: relative;
}

.nav-hamburger span {
    display: block;

    width: 24px;
    height: 2px;

    background: rgba(255,255,255,0.9);

    border-radius: 2px;

    transition: all 0.32s ease;
}

.nav.scrolled .nav-hamburger span {
    background: #0B3C5D;
}

.nav-hamburger.open span {
    background: #00A8A8;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */

.nav-mobile-menu {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    background: rgba(6,15,23,0.98);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    z-index: 998;

    display: flex;
    flex-direction: column;

    padding: 92px 28px 36px;

    transform: translateY(-110%);

    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);

    pointer-events: none;

    border-bottom: 1px solid rgba(0,168,168,0.18);

    box-shadow: 0 24px 48px rgba(0,0,0,0.45);
}

.nav-mobile-menu.open {
    transform: translateY(0);
    pointer-events: all;
}

.nav-mobile-menu a {
    color: rgba(255,255,255,0.72);

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,0.07);

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-mobile-menu a::after {
    content: 'â€º';

    font-size: 22px;
    line-height: 1;

    color: #00A8A8;

    opacity: 0;

    transform: translateX(-6px);

    transition: all 0.2s ease;
}

.nav-mobile-menu a:hover {
    color: #fff;
    padding-left: 6px;
}

.nav-mobile-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.nav-mobile-menu a:last-of-type {
    border-bottom: none;
}

.nav-mobile-cta {
    margin-top: 28px;
    width: 100%;
    text-align: center;
}

/* MOBILE */

@media (max-width: 768px) {

    .nav {
        padding: 14px 16px;
    }

    .nav.scrolled {
        padding: 12px 16px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

}
/* MOBILE BOOK NOW BUTTON */

.btn-primary{
    background: linear-gradient(135deg, #00A8A8, #008888);
    color: #fff;
    border: none;

    padding: 14px 32px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 8px 24px rgba(0,168,168,0.35);
}

.btn-primary:hover{
    transform: translateY(-2px);

    box-shadow: 0 12px 32px rgba(0,168,168,0.5);

    background: linear-gradient(135deg, #00C8C8, #00A8A8);
}


.nav-mobile-cta{
    margin-top: 28px;
    width: 100%;
    text-align: center;
}
/* HERO */

.hero{
  height:100vh;
  background:url('/static/images/hoseboatpagehero.webp') center/cover;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:20px;
}

.hero-tag{
  color:var(--teal);
  letter-spacing:4px;
  text-transform:uppercase;
  font-size:12px;
}

.hero h1{
  color:white;
  font-size:68px;
  line-height:1.1;
  margin:25px 0;
  font-weight:800;
}

.hero h1 span{
  color:var(--teal);
}

.hero p{
  color:rgba(255,255,255,.8);
  line-height:1.8;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
}

.primary-btn,
.secondary-btn{
  padding:15px 30px;
  border-radius:50px;
  cursor:pointer;
  font-weight:600;
  border:none;
  transition:.3s;
}

.primary-btn{
  background:var(--teal);
  color:white;
}

.secondary-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,.5);
  color:white;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-3px);
}

/* FILTER */

.filter-section{
  margin-top:-70px;
  position:relative;
  z-index:10;
  padding:0 40px;
}

.filter-box{
  background:white;
  max-width:1200px;
  margin:auto;
  border-radius:25px;
  padding:30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.filter-item{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.filter-item label{
  font-size:14px;
  font-weight:600;
}

.filter-item select{
  padding:14px;
  border-radius:12px;
  border:1px solid #ddd;
}

.search-btn{
  background:var(--ocean);
  color:white;
  border:none;
  border-radius:14px;
  cursor:pointer;
  font-weight:600;
}

/* BOATS */

.boats-section{
  padding:120px 60px;
}

.section-header{
  text-align:center;
  margin-bottom:70px;
}

.section-header span{
  color:var(--teal);
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.section-header h2{
  font-size:50px;
  margin-top:15px;
  color:var(--ocean);
}

.boats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.boat-card{
  border-radius:24px;
  overflow:hidden;
  background:white;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.4s;
}

.boat-card:hover{
  transform:translateY(-10px);
}

.boat-image{
  height:260px;
  overflow:hidden;
}

.boat-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.boat-card:hover img{
  transform:scale(1.1);
}

.boat-content{
  padding:28px;
}

.boat-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.boat-top h3{
  font-size:24px;
  color:var(--ocean);
}

.boat-top span{
  color:var(--teal);
  font-weight:700;
}

.boat-details{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:20px;
}

.boat-details p{
  background:#eef8f8;
  padding:8px 14px;
  border-radius:50px;
  font-size:13px;
}

.boat-desc{
  color:#666;
  line-height:1.8;
}

.boat-buttons{
  display:flex;
  gap:15px;
  margin-top:25px;
}

.view-btn,
.book-btn{
  flex:1;
  padding:14px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
}

.view-btn{
  background:#edf4f7;
}

.book-btn{
  background:var(--teal);
  color:white;
}

/* FEATURED */

.featured{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  background:var(--light);
}

.featured-image{
  height:100%;
}

.featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.featured-content{
  padding:80px;
}

.featured-content span{
  color:var(--teal);
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.featured-content h2{
  font-size:50px;
  margin:20px 0;
  color:var(--ocean);
}

.featured-content p{
  line-height:1.9;
  color:#666;
}

.featured-features{
  margin:30px 0;
  display:grid;
  gap:15px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body{
    margin: 0;
    padding: 0;
}
a {
  text-decoration: none;
}

/* CTA */

.cta{
  position:relative;
  padding:130px 20px;
  background:url('/static/images/TJS03132-Enhanced-NR.jpg') center/cover;
  text-align:center;
}

.cta-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.7);
}

.cta-content{
  position:relative;
  z-index:2;
}

.cta span{
  color:var(--teal);
  letter-spacing:4px;
  text-transform:uppercase;
  font-size:12px;
}

.cta h2{
  color:white;
  font-size:60px;
  margin:25px 0;
}

.cta p{
  color:rgba(255,255,255,.7);
  margin-bottom:40px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
}

/* FOOTER */
/* FOOTER */

.footer {
  background: #060F17;
  padding: 72px 48px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
}

.footer-brand-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #00A8A8;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255,255,255,0.5);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.social-btn:hover {
  background: #00A8A8;
  border-color: #00A8A8;
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #00A8A8;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;

  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer-contact-icon {
  color: #00A8A8;
  flex: none;
  margin-top: 2px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;

  padding-top: 28px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-tagline-bottom {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
}

/* TABLET */

@media (max-width: 1024px) {

  .footer {
    padding: 60px 24px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.footer-logo{
    width: 220px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

/* MOBILE */

@media (max-width: 768px) {

  .footer {
    padding: 48px 16px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
/* MOBILE */

.menu-btn{
  display:none;
}

.mobile-menu{
  display:none;
}

@media(max-width:991px){

  .boats-grid{
    grid-template-columns:1fr 1fr;
  }

  .featured{
    grid-template-columns:1fr;
  }

  .filter-box{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .nav{
    padding:18px 20px;
  }

  .nav-links,
  .nav-btn{
    display:none;
  }

  .menu-btn{
    display:flex;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
  }

  .menu-btn span{
    width:25px;
    height:2px;
    background:white;
  }

  .nav.scrolled .menu-btn span{
    background:var(--ocean);
  }

  .mobile-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:100%;
    height:100vh;
    background:#07141d;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:30px;
    transition:.4s;
    z-index:999;
  }

  .mobile-menu.active{
    left:0;
  }

  .mobile-menu a{
    color:white;
    text-decoration:none;
    font-size:20px;
  }

  .mobile-book-btn{
    padding:15px 35px;
    border:none;
    background:var(--teal);
    color:white;
    border-radius:50px;
  }

  .hero h1{
    font-size:42px;
  }

  .hero-buttons,
  .cta-buttons{
    flex-direction:column;
  }

  .filter-box{
    grid-template-columns:1fr;
  }

  .boats-grid{
    grid-template-columns:1fr;
  }

  .boats-section{
    padding:100px 20px;
  }

  .section-header h2,
  .featured-content h2,
  .cta h2{
    font-size:36px;
  }

  .featured-content{
    padding:40px 20px;
  }

  .footer{
    padding:60px 20px 30px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

}


/* SCROLL ANIMATION */

.hero-content,
.filter-box,
.section-header,
.boat-card,
.featured-image,
.featured-content,
.featured-features div,
.cta-content,
.footer-grid > div {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
    will-change: transform, opacity;
}

/* ACTIVE */

.active-scroll {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* STAGGER EFFECT */

.boat-card:nth-child(1) {
    transition-delay: 0.1s;
}

.boat-card:nth-child(2) {
    transition-delay: 0.3s;
}

.boat-card:nth-child(3) {
    transition-delay: 0.5s;
}

.featured-features div:nth-child(1) {
    transition-delay: 0.1s;
}

.featured-features div:nth-child(2) {
    transition-delay: 0.2s;
}

.featured-features div:nth-child(3) {
    transition-delay: 0.3s;
}

.featured-features div:nth-child(4) {
    transition-delay: 0.4s;
}

.footer-grid > div:nth-child(1) {
    transition-delay: 0.1s;
}

.footer-grid > div:nth-child(2) {
    transition-delay: 0.2s;
}

.footer-grid > div:nth-child(3) {
    transition-delay: 0.3s;
}

.footer-grid > div:nth-child(4) {
    transition-delay: 0.4s;
}
/* Remove the browser/page offset above non-index hero sections */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

body > nav.nav:first-child,
body > .nav:first-child {
  top: 0;
  margin-top: 0;
}

.hero,
.packages-hero,
.gallery-hero,
.contact-hero,
.about-hero {
  margin-top: 0 !important;
}
