/* =========================================================
SMOKY MOUNTAIN BOAT RENTALS
FULL GLOBAL STYLESHEET
========================================================= */

:root{
  --navy:#0d2238;
  --navy-2:#17324e;
  --blue:#2f6fa5;
  --blue-soft:#dfeef9;
  --mist:#f5f8fb;
  --white:#ffffff;
  --text:#1d2a36;
  --muted:#64748b;
  --line:#d9e4ee;
  --accent:#d84a42;

  --shadow:0 15px 45px rgba(9,32,58,.08);
  --shadow-lg:0 24px 70px rgba(9,32,58,.12);

  --radius:18px;
  --radius-lg:30px;
  --container:1200px;
  --ease:.35s cubic-bezier(.22,.61,.36,1);
}

/* =========================================================
RESET
========================================================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter,sans-serif;
  line-height:1.6;
  color:var(--text);
  background:var(--white);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
select,
textarea{
  font:inherit;
}

button{
  border:none;
  background:none;
  cursor:pointer;
}

ul{
  list-style:none;
}

/* =========================================================
GLOBAL UTILITIES
========================================================= */

.container{
  width:min(92%, var(--container));
  margin:auto;
}

.section{
  padding:110px 0;
}

.alt-section{
  background:var(--mist);
}

.section-kicker,
.eyebrow{
  display:inline-block;
  font-size:.85rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue);
  margin-bottom:18px;
}

h1,
h2,
h3{
  font-family:Fraunces,serif;
  line-height:1.08;
  letter-spacing:-.02em;
  color:var(--navy);
}

.hero h1,
.final-cta h2{
  color:white;
}

h1{
  font-size:clamp(3rem,7vw,6.2rem);
}

h2{
  font-size:clamp(2.2rem,5vw,4rem);
}

h3{
  font-size:clamp(1.35rem,3vw,2rem);
}

p{
  font-size:1.04rem;
  color:var(--muted);
}

.section-heading{
  margin-bottom:70px;
}

.split-heading{
  display:grid;
  grid-template-columns:1fr 450px;
  gap:70px;
  align-items:end;
}

.centered{
  text-align:center;
  max-width:850px;
  margin-inline:auto;
}

.centered p{
  max-width:700px;
  margin:20px auto 0;
}

.placeholder-note{
  margin-top:14px;
  font-size:.92rem;
  color:var(--muted);
  font-style:italic;
}

/* =========================================================
BUTTONS
========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:999px;
  font-weight:800;
  transition:var(--ease);
  text-align:center;
  border:0;
  letter-spacing:.01em;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-primary{
  background:linear-gradient(135deg,#112b45 0%,#0d2238 100%);
  color:white;
  box-shadow:var(--shadow);
}

.btn-primary:hover{
  filter:brightness(1.04);
}

.btn-secondary{
  border:2px solid rgba(255,255,255,.52);
  color:#fff;
  backdrop-filter:blur(8px);
}

.btn-dark{
  background:var(--navy);
  color:#fff;
}

.btn-dark-outline{
  border:2px solid var(--navy);
  color:var(--navy);
  background:white;
}

.btn-light{
  background:#edf5fb;
  color:var(--navy);
}

.btn-light:hover{
  background:#e2eef8;
}

.btn-footer{
  background:white;
  color:#0d2238 !important;
  margin-top:15px;
  font-weight:800;
}

/* =========================================================
HEADER
========================================================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:14px 0;
  background:rgba(13,34,56,.84);
  backdrop-filter:blur(16px);
  transition:var(--ease);
}

.site-header.scrolled{
  background:rgba(7,22,37,.96);
  box-shadow:0 10px 35px rgba(0,0,0,.18);
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand{
  display:flex;
  align-items:center;
  gap:0;
}

.brand-logo{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 6px 22px rgba(0,0,0,.18);

  transform:scale(1.25);
  transform-origin:left center;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.main-nav a{
  color:white;
  font-weight:700;
  font-size:.96rem;
  position:relative;
}

.main-nav a.active{
  color:#7db9e6;
}

.main-nav a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:#7db9e6;
  transition:.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after{
  width:100%;
}

.nav-cta{
  background:var(--accent);
  padding:13px 20px;
  border-radius:999px;
  color:white !important;
}

.nav-cta:hover::after{
  display:none;
}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
}

.nav-toggle span{
  width:26px;
  height:2px;
  background:#fff;
  transition:.3s;
}

/* =========================================================
HERO
========================================================= */

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  padding-top:120px;
  overflow:hidden;
}

.inner-hero{
  min-height:72vh;
}

.hero-bg{
  position:absolute;
  inset:0;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(7,24,43,.84), rgba(7,24,43,.48)),
    linear-gradient(to top, rgba(7,24,43,.5), transparent);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
  color:white;
}

.hero-content .eyebrow{
  color:#8fc7ef;
}

.hero-copy{
  font-size:1.22rem;
  max-width:680px;
  margin:30px 0;
  color:#d5e5f3;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:35px;
}

.hero-trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:65px;
  max-width:820px;
}

.hero-trust-row div{
  background:rgba(255,255,255,.08);
  padding:24px;
  border-radius:20px;
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.1);
}

.hero-trust-row strong{
  display:block;
  font-size:1.1rem;
  margin-bottom:6px;
}

.hero-trust-row span{
  color:#d5e5f3;
}

/* =========================================================
QUICK BOOKING BAR
========================================================= */

.quick-booking{
  margin-top:-70px;
  position:relative;
  z-index:3;
}

.quick-booking-grid{
  background:white;
  border-radius:30px;
  padding:45px;
  box-shadow:var(--shadow-lg);
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:40px;
}

.quick-booking-actions{
  display:flex;
  gap:18px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

/* =========================================================
FLEET CARDS
========================================================= */

.fleet-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:38px;
}

.boat-card{
  background:white;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.boat-card-image{
  position:relative;
  height:360px;
}

.boat-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.boat-badge{
  position:absolute;
  top:22px;
  left:22px;
  background:white;
  padding:10px 16px;
  border-radius:999px;
  font-weight:800;
  color:var(--navy);
}

.boat-card-content{
  padding:42px;
}

.boat-card-content p{
  margin:18px 0 25px;
}

.feature-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:30px;
}

.feature-list li{
  padding-left:20px;
  position:relative;
  font-weight:600;
  color:var(--text);
}

.feature-list li:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--blue);
  position:absolute;
  left:0;
  top:10px;
}

.card-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* =========================================================
BOAT DETAIL / FLEET PAGE
========================================================= */

.boat-detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.reverse-grid{
  grid-template-columns:1fr 1fr;
}

.boat-detail-gallery{
  display:grid;
  gap:20px;
}

.main-detail-img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:32px;
  box-shadow:var(--shadow-lg);
}

.detail-thumbs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.detail-thumbs img{
  height:150px;
  width:100%;
  object-fit:cover;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.boat-detail-content p{
  margin:24px 0;
}

.spec-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin:32px 0;
}

.spec-grid div{
  padding:24px;
  border-radius:22px;
  background:var(--mist);
  border:1px solid var(--line);
}

.spec-grid span{
  display:block;
  color:var(--muted);
  font-size:.88rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}

.spec-grid strong{
  font-size:1.45rem;
  color:var(--navy);
}

.detail-panel{
  background:white;
  border:1px solid var(--line);
  border-radius:26px;
  padding:32px;
  box-shadow:var(--shadow);
  margin:30px 0;
}

.detail-panel h3{
  margin-bottom:20px;
}

.boat-booking-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.booking-note-card{
  background:linear-gradient(135deg,#eef5fb 0%,#dfeef9 100%);
  border:1px solid #cfe0ed;
  border-radius:26px;
  padding:32px;
  margin:30px 0;
  box-shadow:var(--shadow);
}

.booking-note-card h3{
  font-size:1.55rem;
  margin-bottom:14px;
}

.booking-note-card p{
  margin:0;
}

/* =========================================================
COMPARISON TABLE
========================================================= */

.comparison-section{
  background:white;
}

.comparison-table{
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:white;
}

.comparison-row{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
}

.comparison-row > div{
  padding:22px;
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
  font-weight:600;
}

.comparison-row > div:last-child{
  border-right:0;
}

.comparison-row:last-child > div{
  border-bottom:0;
}

.comparison-head{
  background:var(--navy);
  color:white;
}

.comparison-head > div{
  color:white;
  font-weight:900;
}

.comparison-row:not(.comparison-head):hover{
  background:#f8fbfe;
}

.table-link{
  color:var(--blue);
  font-weight:900;
}

/* =========================================================
EXPERIENCE
========================================================= */

.experience-section{
  background:var(--mist);
}

.experience-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:center;
}

.experience-image-stack{
  position:relative;
  padding-bottom:80px;
}

.stack-img-main{
  border-radius:32px;
  box-shadow:var(--shadow-lg);
}

.stack-img-small{
  width:58%;
  position:absolute;
  right:-30px;
  bottom:0;
  border:10px solid white;
  border-radius:28px;
  box-shadow:var(--shadow);
}

.icon-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin:38px 0;
}

.icon-card{
  background:white;
  padding:30px;
  border-radius:22px;
  box-shadow:var(--shadow);
}

.icon-card span{
  font-weight:900;
  color:var(--blue);
  display:block;
  margin-bottom:12px;
}

.icon-card h3{
  font-size:1.45rem;
  margin-bottom:10px;
}

.text-link{
  font-weight:900;
  color:var(--navy);
}

/* =========================================================
RENTAL OPTIONS CARDS
========================================================= */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:55px;
}

.pricing-card{
  background:white;
  border:1px solid var(--line);
  padding:50px 38px;
  border-radius:28px;
  text-align:center;
  box-shadow:var(--shadow);
}

.pricing-card .btn{
  margin-top:22px;
}

.highlighted{
  background:var(--navy);
  color:white;
  transform:scale(1.03);
}

.highlighted h3{
  color:white;
}

.highlighted p{
  color:#c5d6e6;
}

.pricing-card.highlighted .btn{
  background:white;
  color:var(--navy);
}

/* =========================================================
LOCATION
========================================================= */

.location-section{
  background:linear-gradient(180deg,#f7fbff 0%,#eef5fb 100%);
}

.location-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}

.check-list{
  margin-top:30px;
  display:grid;
  gap:16px;
}

.check-list li{
  background:white;
  padding:18px 20px;
  border-radius:18px;
  box-shadow:var(--shadow);
  font-weight:700;
}

.location-card{
  background:white;
  padding:50px;
  border-radius:30px;
  box-shadow:var(--shadow-lg);
}

.location-card h3{
  margin-bottom:18px;
}

.location-card p{
  margin-bottom:12px;
}

/* =========================================================
GALLERY
========================================================= */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.gallery-grid img{
  height:320px;
  width:100%;
  object-fit:cover;
  border-radius:24px;
  box-shadow:var(--shadow);
}

/* =========================================================
RENTAL INFO PAGE
========================================================= */

.rules-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.rule-card{
  background:white;
  border:1px solid var(--line);
  border-radius:26px;
  padding:34px;
  box-shadow:var(--shadow);
  transition:var(--ease);
}

.rule-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(15,35,60,.12);
}

.rule-card span{
  display:inline-flex;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  background:var(--blue-soft);
  color:var(--navy);
  border-radius:50%;
  font-weight:900;
  margin-bottom:20px;
}

.rule-card h3{
  font-size:1.45rem;
  margin-bottom:12px;
}

/* =========================================================
CONTACT PAGE
========================================================= */

.contact-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:start;
}

.contact-info-panel,
.contact-form-panel{
  background:white;
  border-radius:30px;
  padding:45px;
  box-shadow:var(--shadow-lg);
}

.contact-form-panel{
  position:relative;
  overflow:hidden;
}

.contact-form-panel:before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  right:-150px;
  top:-150px;
  border-radius:50%;
  background:rgba(223,238,249,.65);
  pointer-events:none;
}

.contact-info-panel p{
  margin:20px 0 30px;
}

.contact-methods{
  display:grid;
  gap:20px;
}

.contact-method{
  padding:24px;
  border-radius:22px;
  background:var(--mist);
  border:1px solid var(--line);
}

.contact-method h3{
  font-size:1.25rem;
  margin-bottom:8px;
}

.contact-method a{
  color:var(--blue);
  font-weight:900;
}

.contact-note-card{
  margin-top:26px;
  box-shadow:var(--shadow);
  padding:30px;
}

.contact-form{
  margin-top:28px;
  display:grid;
  gap:20px;
  position:relative;
  z-index:1;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-group{
  display:grid;
  gap:9px;
}

.form-group label{
  font-weight:900;
  color:var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid var(--line);
  background:var(--mist);
  border-radius:16px;
  padding:16px 18px;
  outline:none;
  color:var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--blue);
  background:white;
}

textarea{
  resize:vertical;
  min-height:170px;
}

.map-card{
  background:white;
  padding:18px;
  border-radius:30px;
  box-shadow:var(--shadow-lg);
}

.map-placeholder{
  min-height:430px;
  border-radius:24px;
  background:
    linear-gradient(135deg,rgba(13,34,56,.9),rgba(47,111,165,.82)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.1) 0,
      rgba(255,255,255,.1) 1px,
      transparent 1px,
      transparent 14px
    );
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:900;
  letter-spacing:.12em;
  font-size:1.2rem;
  text-transform:uppercase;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

/* =========================================================
FINAL CTA
========================================================= */

.final-cta{
  padding:110px 0;
  background:
    linear-gradient(rgba(9,27,44,.84),rgba(9,27,44,.84)),
    url('assets/tritoon-exterior-2.jpg') center/cover;
  color:white;
  text-align:center;
}

.final-cta .section-kicker{
  color:#8fc7ef;
}

.final-cta p{
  color:#d7e7f4;
  max-width:700px;
  margin:25px auto 0;
}

.final-cta-inner{
  max-width:900px;
}

/* =========================================================
FOOTER
========================================================= */

.site-footer{
  background:var(--navy);
  color:white;
  padding:90px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr;
  gap:50px;
}

.footer-brand img{
  width:80px;
  border-radius:50%;
  margin-bottom:20px;
}

.footer-grid p{
  color:#bfd3e4;
}

.footer-grid h3{
  color:white;
  font-size:1.2rem;
  margin-bottom:18px;
}

.footer-grid a,
.footer-grid span{
  display:block;
  margin-bottom:12px;
  color:#dbe8f4;
}

.footer-bottom{
  margin-top:60px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.15);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

.footer-bottom p{
  color:#bfd3e4;
}

/* =========================================================
MOBILE BOOKING BAR
========================================================= */

.mobile-booking-bar{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:white;
  box-shadow:0 -8px 30px rgba(0,0,0,.08);
  z-index:999;
}

.mobile-booking-bar a{
  flex:1;
  text-align:center;
  padding:16px;
  font-weight:900;
}

.mobile-booking-bar a:first-child{
  background:var(--navy);
  color:white;
}

.mobile-booking-bar a:last-child{
  color:var(--navy);
}

/* =========================================================
REVEAL ANIMATION
========================================================= */

.reveal-item{
  opacity:0;
  transform:translateY(38px);
  transition:
    opacity .8s cubic-bezier(.22,.61,.36,1),
    transform .8s cubic-bezier(.22,.61,.36,1);
}

.revealed{
  opacity:1;
  transform:none;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

  .split-heading,
  .experience-grid,
  .location-grid,
  .quick-booking-grid,
  .boat-detail-grid,
  .reverse-grid,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .fleet-grid,
  .pricing-grid,
  .rules-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid,
  .faq-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .quick-booking-actions{
    justify-content:flex-start;
  }
}

@media(max-width:900px){

  .main-nav{
    position:fixed;
    top:88px;
    left:-100%;
    width:100%;
    background:var(--navy);
    padding:40px;
    flex-direction:column;
    align-items:flex-start;
    transition:.3s;
    gap:22px;
    box-shadow:0 30px 70px rgba(0,0,0,.25);
  }

  .main-nav.active{
    left:0;
  }

  .main-nav a{
    font-size:1.08rem;
  }

  .main-nav a::after{
    display:none;
  }

  .nav-toggle{
    display:flex;
  }

  body.menu-open{
    overflow:hidden;
  }

  .hero-trust-row,
  .feature-list,
  .icon-grid,
  .spec-grid{
    grid-template-columns:1fr;
  }

  .comparison-table{
    overflow-x:auto;
  }

  .comparison-row{
    min-width:760px;
  }
}

@media(max-width:700px){

  .section{
    padding:80px 0;
  }

  .gallery-grid,
  .faq-grid,
  .detail-thumbs,
  .form-row{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
    padding-top:150px;
    padding-bottom:90px;
  }

  .inner-hero{
    min-height:auto;
  }

  h1{
    font-size:clamp(2.7rem,13vw,4.2rem);
  }

  h2{
    font-size:clamp(2rem,9vw,3.1rem);
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-actions .btn{
    width:100%;
  }

  .quick-booking{
    margin-top:-30px;
  }

  .quick-booking-grid{
    padding:30px;
  }

  .quick-booking-actions{
    flex-direction:column;
    width:100%;
  }

  .quick-booking-actions .btn{
    width:100%;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    display:block;
  }

  .footer-bottom p + p{
    margin-top:10px;
  }

  .mobile-booking-bar{
    display:flex;
  }

  body{
    padding-bottom:68px;
  }

  .stack-img-small{
    position:relative;
    width:100%;
    right:auto;
    margin-top:25px;
  }

  .main-detail-img{
    height:380px;
  }

  .detail-thumbs img{
    height:220px;
  }

  .boat-booking-actions{
    flex-direction:column;
  }

  .boat-booking-actions .btn{
    width:100%;
  }

  .contact-info-panel,
  .contact-form-panel,
  .location-card{
    padding:30px;
  }

  .brand-logo{
    width:54px;
    height:54px;
  }

  .booking-note-card{
    padding:26px;
  }

  .rule-card{
    padding:28px;
  }
}

/* =========================================================
FAREHARBOR INTEGRATION HOOKS
Buttons using .fareharbor-hook are intentionally simple.
FareHarbor can replace href="#fareharbor-booking" or attach their widget/lightframe.
Available targets: general-booking, tritoon, premium.
========================================================= */
.fareharbor-hook{
  cursor:pointer;
}
