:root{
  --text:#111;
  --muted:#444;
  --white:#fff;
  --overlay: rgba(0,0,0,.45);

  --btn:#b07a1d;          /* warm gold */
  --btn-hover:#9a6a18;

  --link:#0b43ff;         /* “Learn More” blue */
  --footer:#1b1b1b;

  --container: 1120px;
}

/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body {
  color: #1a1a1a;
  background: #ffffff; /* keep white like the screenshot */
  font-family: "Hind", "Avenir", "Helvetica", Arial, sans-serif;
  font-size: 16px;     /* 1.6rem depends on html font-size; 16px is safe */
  font-weight: 400;
  line-height: 1.612;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  margin: 0 0 1.625em;
  padding: 0;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* HERO */
.hero{
  position:relative;
  min-height: 640px;
  background:
    linear-gradient(var(--overlay), var(--overlay)),
    url("images/hero.jpg") center/cover no-repeat;
  color: var(--white);
  overflow:hidden;
}
.hero__overlay{
  /* kept for flexibility (optional extra overlay layer) */
  display:none;
}
.hero__top{
  position:relative;
  z-index:2;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 24px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
}
.brand__logo{
  width: 300px;
  height: auto;
  display:block;
}
.brand__text{
  letter-spacing:.5px;
  line-height:1.05;
}
.brand__title{
  font-size:20px;
  font-weight:700;
}
.brand__subtitle{
  font-size:16px;
  font-weight:500;
  opacity:.95;
}

.nav__links{
  display:flex;
  gap: 34px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav__links a{
  color:#fff;
  opacity:.95;
}
.nav__links a:hover{opacity:1; text-decoration:underline}

.hero__content{
  position:relative;
  z-index:1;
  min-height: 520px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 80px 0 60px;
}
.hero__content h1{
  font-size: 52px;
  font-weight: 400;
  margin: 0 0 14px;
}
.hero__content p{
  margin:0 0 28px;
  font-size: 22px;
  font-weight: 600;
  opacity:.95;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 26px;
  border-radius: 4px;
  background: var(--btn);
  color:#fff;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
}
.btn:hover{background:var(--btn-hover)}

/* Mobile menu button */
.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.18);
  border-radius:6px;
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  margin: 5px auto;
  border-radius:10px;
}

.nav__mobile{
  display:none;
  padding: 8px 0 18px;
  border-top:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.15);
}
.nav__mobile a{
  display:block;
  padding: 12px 24px;
  color:#fff;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:13px;
  opacity:.95;
}
.nav__mobile a:hover{opacity:1; background: rgba(255,255,255,.06)}

/* WELCOME */
.welcome{
  padding: 44px 0 26px;
  text-align:center;
}
.welcome__inner{
  max-width: 980px;
}
.welcome h2{
  margin:0;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
}
.welcome__quote{
  margin: 16px 0 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.welcome__text{
  margin: 10px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* FEATURES */
.features{
  padding: 26px 0 60px;
}
.features__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  align-items:start;
  text-align:center;
}
.feature__img{
  width:100%;
  aspect-ratio: 16/9;
  background: #ddd center/cover no-repeat;
  border-radius: 2px;
  margin-bottom: 18px;
}
.feature h3{
  margin: 0 0 12px;
  letter-spacing: 1px;
  font-size: 16px;
}
.feature p{
  margin:0 0 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.feature__link{
  color: var(--link);
  font-weight: 600;
}
.feature__link:hover{text-decoration:underline}

/* FOOTER */
.footer{
  background: var(--footer);
  color: rgba(255,255,255,.55);
  padding: 30px 0;
}
.footer__inner{
  text-align:center;
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.footer p{margin:0}
/* ---------- Inner (white) pages ---------- */
.header--light{
  background: #fff;
}

.nav__links--dark a{
  color:#222;
  opacity:.9;
}
.nav__links--dark a:hover{
  opacity:1;
  text-decoration: underline;
}

.nav__links--dark .is-active{
  font-weight:700;
  text-decoration: underline;
}

.nav__toggle--dark{
  border:1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.8);
}
.nav__toggle--dark span{ background:#222; }

.nav__mobile--dark{
  border-top:1px solid rgba(0,0,0,.12);
  background:#fff;
}
.nav__mobile--dark a{
  color:#222;
  opacity:.9;
}
.nav__mobile--dark a:hover{
  background: rgba(0,0,0,.04);
  opacity:1;
}
.nav__mobile--dark .is-active{
  font-weight:700;
  text-decoration: underline;
}

/* Page layout like screenshot */
.page{
  background:#fff;
  color:#1a1a1a;
}

.page__hero{
  padding: 90px 0 22px; /* lots of top whitespace like the screenshot */
}

.page__section{
  padding: 18px 0 70px;
}

.page__content{
  max-width: 980px;
  font-size: 16px;
}

.page__title{
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 20px;
  text-align:center;
}

.page__lead{
  text-align:center;
  margin: 0 0 22px;
  line-height: 1.9;
  font-size: 16px;
}

.page__h2{
  font-size: 52px;
  font-weight: 400;
  margin: 46px 0 14px;
  text-align:center;
}

.page__section p{
  text-align:center;
  line-height: 2;
  margin: 0 0 22px;
  font-size:16px;
}
.contact-info{
  margin: 40px auto 10px;
  text-align: left;
  max-width: 520px;
  font-size: 20px;        /* makes the whole block larger */
  line-height: 3.4;
  padding-bottom: 350px;
}

.contact-info p{
  margin: 0 0 14px;
}

.contact-info strong{
  font-weight: 700;
}

.contact-info a{
  color: inherit;
  text-decoration: none;
}
.contact-info a:hover{
  text-decoration: underline;
}

/* Map block */
.map{
  margin: 20px auto 10px;
  width: 100%;
  max-width: 820px;
}

.map img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* Lake map page */
.lake-map{
  margin: 26px auto 10px;
  width: 100%;
  max-width: 760px;   /* matches screenshot feel */
}

.lake-map img{
  display:block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.lake-map{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* ---------- Boats / Rentals page ---------- */
.hero-image{
  margin: 18px auto 22px;
  width: 100%;
  max-width: 760px; /* matches screenshot */
}
.hero-image img{
  display:block;
  width:100%;
  height:auto;
}

/* Table styling like screenshot */
.table-wrap{
  margin: 8px auto 18px;
  max-width: 760px;
  overflow-x: auto;                 /* mobile support */
  -webkit-overflow-scrolling: touch;
}

.rates-table{
  width: 100%;
  min-width: 640px;                 /* helps keep columns readable */
  border-collapse: collapse;
  font-size: 14px;
}

.rates-table thead th{
  background: #d9ecf8;              /* light blue header */
  text-align: left;
  padding: 10px 10px;
  border: 1px solid #d0d0d0;
  font-weight: 700;
}

.rates-table td{
  padding: 10px 10px;
  border: 1px solid #e0e0e0;
  background:#fff;
}

.view-link{
  color: #0b43ff;
  text-decoration: none;
}
.view-link:hover{
  text-decoration: underline;
}

.notes-title{
  font-size: 28px;
  font-weight: 400;
  margin: 18px 0 10px;
  text-align: left;
}

.notes{
  margin: 0;
  padding-left: 20px;
  text-align: left;
  line-height: 1.9;
  font-size: 14px;
}
/* ---------- Boat cards (replaces table) ---------- */
.boat-list{
  max-width: 760px;
  margin: 8px auto 10px;
}

.boat-card{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid #e6e6e6;
}

.boat-card:first-child{
  border-top: none;
}

.boat-card__img img{
  width: 100%;
  height: auto;
  display: block;
}

.boat-card__title{
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 400;
}

.boat-card__rates{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  max-width: 520px;
}

.rate__label{
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 4px;
}

.rate__value{
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.rate__note{
  font-size: 14px;
  font-weight: 400;
  color: #333;
}

/* Mobile: stack image above text */
@media (max-width: 820px){
  .boat-card{
    grid-template-columns: 1fr;
  }

  .boat-card__rates{
    grid-template-columns: 1fr;
  }
}
/* ---------- Rentals hub page ---------- */
.rentals-links{
  max-width: 760px;
  margin: 22px auto 0;
  display: grid;
  gap: 18px;
}

.rental-card{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  border: 1px solid #e6e6e6;
  background: #fff;
  text-decoration: none;
}

.rental-card__img{
  background: #ddd center/cover no-repeat;
  min-height: 160px;
}

.rental-card__body{
  padding: 14px 14px;
}

.rental-card__body h2{
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 400;
  color: #111;
}

.rental-card__body p{
  margin: 0 0 10px;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

.rental-card__cta{
  color: #0b43ff;
  font-weight: 600;
}

.rental-card:hover{
  border-color: #d2d2d2;
}

.rental-card:hover .rental-card__cta{
  text-decoration: underline;
}
html, body { height: 100%; }

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Cabin rentals table width like screenshot */
.table-wrap--cabins{
  max-width: 820px;
  margin: 18px auto 28px;
}

/* Table footer line */
.table-foot{
  margin: 10px 0 0;
  font-size: 14px;
  color: #333;
  text-align: left;
}

/* Important info section */
.section-title{
  font-size: 30px;
  font-weight: 400;
  margin: 26px 0 10px;
  text-align: left;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.info-list{
  max-width: 820px;
  margin: 0 auto 30px;
  padding-left: 22px;
  line-height: 2;
  font-size: 14px;
  text-align: left;
}

.info-list li{
  margin: 0 0 18px;
}

/* Mobile: make table scroll */
@media (max-width: 860px){
  .table-wrap--cabins{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .rates-table{
    min-width: 720px;
  }
}


main{
  flex: 1;   /* pushes footer to bottom when content is short */
}
/* Mobile */
@media (max-width: 820px){
  .rental-card{
    grid-template-columns: 1fr;
  }
  .rental-card__img img{
  width: 100%;
  height: 160px;
  object-fit: cover;   /* crops nicely */
}
}
/* Camping hero image (wide but not tall) */
.camping-hero{
  max-width: 900px;
  margin: 18px auto 22px;
}

.camping-hero img{
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1100px){
  .camping-hero img{
    max-height: 320px;
    object-fit: cover;
  }
}


/* Keep notes aligned with the table/image width */
.theme-inner .notes-title,
.theme-inner .notes{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Small screens */
@media (max-width: 520px){
  .notes-title{ font-size: 24px; }
}
/* ===== Mobile-friendly tables (no horizontal scroll) ===== */
@media (max-width: 680px){

  /* Turn any .rates-table into stacked rows */
  .rates-table{
    min-width: 0 !important;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .rates-table thead{
    display: none; /* hide header on mobile */
  }

  .rates-table,
  .rates-table tbody,
  .rates-table tr,
  .rates-table td{
    display: block;
    width: 100%;
  }

  .rates-table tr{
    border: 1px solid #e0e0e0;
    margin: 0 0 14px;
    background: #fff;
  }

  .rates-table td{
    border: none;
    border-top: 1px solid #eee;
    padding: 10px 12px;
  }

  .rates-table td:first-child{
    border-top: none;
  }

  /* Label each cell using data-label */
  .rates-table td::before{
    content: attr(data-label);
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 4px;
    font-weight: 600;
  }

  /* Stop forcing horizontal scroll */
  .table-wrap--cabins,
  .table-wrap--camping{
    overflow: visible !important;
  }
}



/* Responsive tweaks */
@media (max-width: 900px){
  .page__hero{ padding-top: 70px; }
  .page__title{ font-size: 48px; }
  .page__h2{ font-size: 40px; }
  .map iframe{ height: 420px; }
}

@media (max-width: 520px){
  .page__title{ font-size: 38px; }
  .page__h2{ font-size: 30px; }
  .map iframe{ height: 340px; }
}

/* RESPONSIVE */
@media (max-width: 900px){
  .hero__content h1{font-size:44px}
  .hero__content p{font-size:19px}
  .features__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature__img{max-width: 640px; margin-left:auto; margin-right:auto;}
}

@media (max-width: 760px){
  .nav__links{display:none}
  .nav__toggle{display:inline-block}
  .nav{padding: 18px 0}
  .hero{min-height: 600px}
  .hero__content{padding: 70px 0 50px}
  .hero__content h1{font-size:38px}
  .hero__content p{font-size:18px}
  .container{width: min(var(--container), calc(100% - 32px));}
}
