/* Float Fingerlakes LLC — static replica of floatfingerlakes.com (Wix original).
   Issue #272. Replication only; fonts approximated with Google Fonts:
   Anton  -> the heavy condensed display headings used by the original
   Montserrat (light) -> the light body sans used by the original */

:root {
  --dark:        #2e2e2e;   /* feature columns 1 & 2 */
  --mid:         #3a3a3a;
  --light-panel: #e7e7e7;   /* FAQ column */
  --cyan:        #28c4e6;    /* "safe boating" panel + accents */
  --cyan-dark:   #1ba6c6;
  --black:       #000;
  --book-blue:   #2f6cb5;    /* rate text on Book Now */
  --book-blue-d: #1c4f8b;
  --text:        #ffffff;
  --text-dark:   #2b2b2b;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.55;
}

.display {
  font-family: "Anton", "Oswald", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #232323;
  border-bottom: 1px solid #000;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px; gap: 24px;
}
.logo img { height: 78px; width: auto; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  color: #fff; font-size: 14px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; }

/* ---------- Page banner ---------- */
.banner {
  height: 150px;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55)), url("../img/banner-lake.jpg") center/cover no-repeat;
}

/* ---------- Home: feature columns ---------- */
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature {
  padding: 60px 34px 70px; text-align: center; color: #fff;
  min-height: 460px; display: flex; flex-direction: column; align-items: center;
}
.feature .icon { font-size: 56px; margin-bottom: 28px; color: #fff; line-height: 1; }
.feature .icon svg { width: 58px; height: 58px; }
.two-icons .icon svg { width: 54px; height: 54px; }
.feature h2 { font-size: 22px; margin-bottom: 18px; }
.feature p { font-weight: 300; max-width: 240px; margin-bottom: 26px; }
.feature .more { margin-top: auto; font-weight: 400; letter-spacing: .05em; }
.feature .more:hover { color: var(--cyan); }
.feature.c1 { background: var(--dark); }
.feature.c2 { background: var(--mid); }
.feature.c3 { background: var(--light-panel); color: var(--text-dark); }
.feature.c3 .icon, .feature.c3 .more { color: var(--text-dark); }
.feature.c4 { background: var(--cyan); }

/* ---------- Home gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); }
.gallery img { width: 100%; height: 340px; object-fit: cover; }

/* ---------- Generic content sections ---------- */
.section { max-width: 1000px; margin: 0 auto; padding: 60px 24px; text-align: center; }
.section h1.display { font-size: 52px; line-height: 1.05; margin-bottom: 34px; }
.section p { margin: 0 auto 14px; max-width: 820px; font-size: 17px; }

.two-icons { display: flex; justify-content: center; gap: 110px; margin: 50px 0; flex-wrap: wrap; }
.two-icons .col { max-width: 240px; }
.two-icons .icon { font-size: 52px; color: var(--text-dark); margin-bottom: 16px; }
.two-icons h3 { font-size: 21px; font-weight: 400; margin-bottom: 12px; letter-spacing: .04em; }

.btn-book {
  display: inline-block; background: #000; color: #fff;
  padding: 20px 70px; font-size: 17px; letter-spacing: .06em;
  border: 0; cursor: pointer; transition: background .15s;
}
.btn-book:hover { background: var(--cyan-dark); }

/* ---------- Book Now ---------- */
.book .tagline { color: var(--book-blue); font-size: 26px; font-weight: 400; margin-bottom: 30px; }
.book .rates-title { color: var(--book-blue); font-size: 21px; font-weight: 600; margin-bottom: 4px; }
.book .deposit { color: #777; font-size: 13px; margin-bottom: 10px; }
.book .rate { color: var(--book-blue); font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.book .fine { font-size: 16px; margin-bottom: 4px; }
.book .call { color: var(--book-blue); font-weight: 600; }
.book .pop { color: var(--book-blue-d); font-weight: 700; font-size: 28px; margin: 8px 0; }
.book .brand { color: var(--book-blue-d); font-weight: 700; font-size: 24px; }

/* ---------- Forms ---------- */
.form { max-width: 560px; margin: 36px auto 0; text-align: left; }
.form input, .form textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 14px;
  border: 1px solid #cfcfcf; background: #f7f7f7; font-family: inherit; font-size: 15px;
}
.form textarea { min-height: 150px; resize: vertical; }
.form .submit {
  background: var(--cyan-dark); color: #fff; border: 0; padding: 12px 30px;
  font-size: 15px; cursor: pointer; float: right; letter-spacing: .04em;
}
.form .submit:hover { background: var(--book-blue); }
.form::after { content: ""; display: block; clear: both; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; text-align: left; align-items: start; }
.contact-grid h4 { color: var(--book-blue); font-weight: 400; font-size: 18px; margin-bottom: 4px; }
.contact-grid p { text-align: left; margin-bottom: 22px; }
.map-wrap { margin-top: 30px; background: #dfe3d8; padding: 40px 24px; text-align: center; }
.map-wrap iframe { width: 100%; max-width: 980px; height: 420px; border: 0; margin: 0 auto; }

/* ---------- About: link boxes ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 30px; }
.box-title { background: #000; color: #fff; padding: 16px; font-size: 19px; margin-bottom: 22px; }
.click-here { display: block; position: relative; }
.click-here img { width: 100%; height: 200px; object-fit: cover; filter: brightness(.7); }
.click-here span {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 22px;
}
.links-list a { display: block; color: var(--book-blue); text-decoration: underline; margin-bottom: 26px; line-height: 1.4; }
.links-list a:hover { color: var(--cyan-dark); }

/* ---------- FAQ ---------- */
.faq-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 16px; }
.faq-head h1 { font-size: 40px; font-weight: 300; color: #2b2b2b; }
.faq-cat { color: #c0392b; border-bottom: 3px solid #c0392b; display: inline-block; padding-bottom: 8px; margin: 26px 0 10px; }
.faq-item { border: 1px solid #e0e0e0; margin-bottom: 18px; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px; font-size: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "⌄"; font-size: 22px; color: #888; }
.faq-item[open] summary::after { content: "⌃"; }
.faq-item .answer { padding: 0 26px 24px; }
.faq-item .answer p { text-align: left; margin: 0 0 14px; max-width: none; }
.faq-item .answer .indent { padding-left: 30px; margin-bottom: 2px; }

/* ---------- Footer ---------- */
.site-footer { background: #000; color: #fff; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; padding: 44px 24px; text-align: center;
}
.footer-col h5 { font-size: 18px; margin-bottom: 14px; letter-spacing: .04em; }
.footer-col p { font-weight: 300; margin-bottom: 4px; }
.footer-col .ico { color: var(--cyan); margin-right: 6px; }
.footer-col + .footer-col { border-left: 1px solid #333; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col + .footer-col { border-left: 0; border-top: 1px solid #333; padding-top: 20px; }
}
@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #232323; padding: 10px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .feature-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .section h1.display { font-size: 36px; }
  .two-icons { gap: 50px; }
}
