/* Tellico Lake Boat Rentals — static replica of tellicolakeboatrentals.com (Wix original).
   Issue #272, step 2 (reference site Tim is interested in for ideas).
   Fonts approximated: Poppins (headings/body, matches the original's poppins-*),
   Playfair Display italic (the decorative italic tagline). */

:root {
  --ink:       #2b2b2b;
  --blue:      #2f6f9f;     /* section headings / accents */
  --blue-d:    #235578;
  --soft:      #f4f6f8;     /* alt section background */
  --line:      #e3e7eb;
  --green:     #5a8f3c;     /* "LAKE" word accent */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", "Futura", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300; color: var(--ink); line-height: 1.6; background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40; background: #fff; border-bottom: 1px solid var(--line);
}
.topbar .inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.topbar .brand { font-weight: 600; font-size: 18px; color: var(--ink); }
.topbar nav { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar nav a { color: var(--ink); font-size: 14px; font-weight: 400; }
.topbar nav a:hover { color: var(--blue); }

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px;
  background: url("../img/hero-flag.jpg") center/cover no-repeat;
}
.hero h1 {
  font-weight: 600; font-size: clamp(40px, 7vw, 86px); line-height: 1.05; color: #1c1c1c;
}
.hero .tagline {
  margin-top: 28px; font-family: "Playfair Display", Georgia, serif; font-style: italic;
  font-size: clamp(20px, 3vw, 32px); color: #1c1c1c;
}
.hero .tagline .lake { font-family: "Poppins", sans-serif; font-style: normal; font-weight: 600; }

/* ---------- Section scaffolding ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 70px 24px; }
.section.alt { background: var(--soft); max-width: none; }
.section.alt > .wrap { max-width: 1180px; margin: 0 auto; }
.section h2 {
  font-weight: 600; font-size: 34px; color: var(--blue); text-align: center; margin-bottom: 10px;
}
.section .sub { text-align: center; font-weight: 400; margin-bottom: 40px; }

/* ---------- Boat cards ---------- */
.boats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.boat { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.boat img { width: 100%; height: 240px; object-fit: cover; }
.boat .body { padding: 22px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.boat .tier { font-size: 12px; letter-spacing: .14em; color: var(--blue); font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.boat .name { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.boat .rate { font-weight: 600; font-size: 17px; }
.boat .rate.week { color: var(--blue-d); margin-bottom: 14px; }
.boat .cap { font-size: 13px; color: #666; margin-top: auto; }
.boat .cap strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; }

/* ---------- Policies ---------- */
.policies { max-width: 820px; margin: 0 auto; text-align: center; }
.policies p { margin-bottom: 18px; }

/* ---------- Why rent: feature columns ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.features .feat { text-align: center; }
.features .feat img { width: 100%; height: 180px; object-fit: cover; border-radius: 6px; margin-bottom: 18px; }
.features .feat h3 { font-weight: 600; font-size: 20px; color: var(--blue); margin-bottom: 10px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; max-width: 1000px; margin: 0 auto; }
.contact-info p { margin-bottom: 12px; }
.contact-info .lbl { font-weight: 600; color: var(--blue); }
.form input, .form textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 14px; border: 1px solid var(--line);
  border-radius: 4px; font-family: inherit; font-size: 15px; background: #fff;
}
.form textarea { min-height: 130px; resize: vertical; }
.form button {
  background: var(--blue); color: #fff; border: 0; padding: 12px 36px; border-radius: 4px;
  font-size: 15px; cursor: pointer; font-family: inherit;
}
.form button:hover { background: var(--blue-d); }

/* ---------- Footer ---------- */
.foot { background: #1c2630; color: #c7d0d8; text-align: center; padding: 30px 20px; font-size: 13px; }

@media (max-width: 900px) {
  .boats { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .boats { grid-template-columns: 1fr; }
  .topbar nav { display: none; }
}
