/* =====================================================
   Lakefront Shuttle — styles.css
   ===================================================== */

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ── Header ──────────────────────────────────────────── */
.site-header {
  background: #161616;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  flex-wrap: wrap;
}
.logo { height: 56px; width: auto; }
.logo-link { flex-shrink: 0; }

/* Nav */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-list > li > a {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem .65rem;
  border-radius: 3px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-list > li > a:hover { background: #d41f00; color: #fff; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  min-width: 220px;
  border-top: 3px solid #d41f00;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  color: #eee;
  padding: .6rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: background .15s, color .15s;
}
.dropdown li a:hover { background: #d41f00; color: #fff; }
.caret { font-size: .6em; margin-left: 3px; }

/* Phone */
.header-phone {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  background: #d41f00;
  padding: .45rem .9rem;
  border-radius: 3px;
  transition: opacity .2s;
}
.header-phone:hover { opacity: .85; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .35rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: url('images/slide1.jpg') center/cover no-repeat;
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 4rem 1rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  background: #d41f00;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  margin-bottom: .75rem;
}
.hero p {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  opacity: .92;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
}
.btn-red { background: #d41f00; color: #fff; border-color: #d41f00; }
.btn-red:hover { background: #b81a00; border-color: #b81a00; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: #161616; }
.cta-wrap { margin: 2rem 0; }

/* ── Page Banner ─────────────────────────────────────── */
.page-banner {
  background: #161616;
  color: #fff;
  padding: 3.5rem 0 3rem;
  text-align: center;
  border-bottom: 4px solid #d41f00;
}
.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}
.page-banner p {
  font-size: 1.05rem;
  opacity: .8;
  margin-top: .5rem;
}

/* ── Services Section ────────────────────────────────── */
.section { padding: 4rem 0; }
.section-alt { background: #f5f5f5; }
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #161616;
  margin-bottom: .5rem;
}
.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.divider {
  width: 60px;
  height: 4px;
  background: #d41f00;
  margin: .6rem auto 1.5rem;
  border-radius: 2px;
}

/* Cards */
.cards { display: grid; gap: 2rem; }
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #161616;
  margin-bottom: .5rem;
}
.card-body p { font-size: .9rem; color: #555; line-height: 1.65; }
.card-body .btn { margin-top: 1.1rem; font-size: .8rem; padding: .6rem 1.4rem; }

/* ── Locations Grid ──────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.location-tile {
  background: #161616;
  color: #fff;
  text-align: center;
  padding: 1.6rem 1rem;
  border-radius: 5px;
  border-bottom: 3px solid #d41f00;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s;
}
.location-tile:hover { background: #d41f00; border-color: #b81a00; color: #fff; }

/* ── Content pages ───────────────────────────────────── */
.content-section { padding: 3.5rem 0; }
.content-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.content-wrap h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #161616;
  margin: 2rem 0 .75rem;
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap p { color: #444; line-height: 1.75; margin-bottom: 1rem; }
.content-wrap ul { margin: .75rem 0 1rem 1.25rem; list-style: disc; }
.content-wrap ul li { color: #444; margin-bottom: .35rem; line-height: 1.6; }

/* Info box */
.info-box {
  background: #f5f5f5;
  border-left: 4px solid #d41f00;
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { margin: 0; color: #333; font-size: .92rem; }
.info-box strong { color: #d41f00; }

/* Schedule table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: .9rem;
}
.schedule-table th {
  background: #161616;
  color: #fff;
  padding: .75rem 1rem;
  text-align: left;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.schedule-table td { padding: .7rem 1rem; border-bottom: 1px solid #e5e5e5; color: #333; }
.schedule-table tr:nth-child(even) td { background: #f9f9f9; }

.schedule-list { margin: .75rem 0 1rem 1.25rem; list-style: disc; }
.schedule-list li { color: #444; margin-bottom: .5rem; }

/* ── Contact Page ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: #161616; }
.contact-info p { color: #555; margin-bottom: .75rem; line-height: 1.7; }
.contact-info a { color: #d41f00; font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.contact-detail-icon {
  background: #d41f00;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: #999; }
.contact-detail-text a, .contact-detail-text span { font-size: 1rem; font-weight: 600; color: #161616; }
.contact-detail-text a:hover { color: #d41f00; }

/* Form */
.contact-form { background: #f5f5f5; padding: 2rem; border-radius: 6px; }
.contact-form h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: #161616; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  color: #333;
  background: #fff;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d41f00;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }

/* ── About Page ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}
.about-img { border-radius: 6px; overflow: hidden; }
.about-img img { width: 100%; height: 340px; object-fit: cover; }
.feature-list { margin: 1rem 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  color: #444;
  line-height: 1.6;
}
.feature-list li::before {
  content: '✓';
  background: #d41f00;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Stats bar ───────────────────────────────────────── */
.stats-bar {
  background: #d41f00;
  color: #fff;
  padding: 2.5rem 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.stat-label { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .88; margin-top: .3rem; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: #161616;
  color: #ccc;
  padding: 3.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: #aaa; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 2px solid #d41f00;
  padding-bottom: .4rem;
  display: inline-block;
}
.footer-links ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-links a { color: #aaa; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: #d41f00; }
.footer-contact p { font-size: .85rem; color: #aaa; margin-bottom: .5rem; }
.footer-contact a { color: #ccc; transition: color .2s; }
.footer-contact a:hover { color: #d41f00; }
.footer-bottom {
  background: #0d0d0d;
  text-align: center;
  padding: 1rem;
  font-size: .78rem;
  color: #666;
  margin-top: 0;
}

/* ── Wedding/Events page ─────────────────────────────── */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}
.service-feature:last-child { border-bottom: none; }
.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }
.service-feature img { width: 100%; height: 280px; object-fit: cover; border-radius: 6px; }
.service-feature-text h2 { font-size: 1.5rem; font-weight: 700; color: #161616; margin-bottom: .75rem; }
.service-feature-text p { color: #555; line-height: 1.75; margin-bottom: .75rem; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  /* Mobile nav */
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1e1e1e;
    border-top: 2px solid #d41f00;
  }
  .main-nav.open { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    justify-content: flex-start;
  }
  .nav-list > li > a {
    display: block;
    padding: .85rem 1.25rem;
    border-radius: 0;
    border-bottom: 1px solid #2a2a2a;
  }
  .has-dropdown .dropdown {
    position: static;
    background: #252525;
    border-top: none;
    display: none;
    min-width: 100%;
  }
  .has-dropdown.active .dropdown { display: block; }
  .header-inner { position: relative; }
  .header-phone { font-size: .75rem; padding: .4rem .7rem; }

  /* Layouts */
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-feature, .service-feature.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-feature img { height: 220px; }
}

@media (max-width: 600px) {
  .hero { min-height: 420px; }
  .page-banner { padding: 2.5rem 0 2rem; }
  .stats-inner { gap: 1rem; }
  .stat-num { font-size: 1.7rem; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Alpine Valley / Concert sections ---- */
.concert-section { margin-bottom: 2.5rem; padding: 1.5rem; background: #f9f9f9; border-left: 4px solid #d41f00; border-radius: 4px; }
.concert-section h3 { color: #161616; margin-top: 0; }
.ticket-links { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.ticket-links p { width: 100%; margin-bottom: 0.25rem; font-weight: 600; }
.info-box { background: #fff8f7; border: 1px solid #ffc5b8; border-radius: 6px; padding: 1.5rem; margin: 1.5rem 0; }
.info-box h3 { color: #d41f00; margin-top: 0; }

/* ---- Button sizes ---- */
.btn-sm { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
.btn-lg { font-size: 1rem; padding: 0.75rem 1.75rem; }
.btn-full { width: 100%; text-align: center; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-outline-dark { background: transparent; color: #161616; border: 2px solid #161616; }
.btn-outline-dark:hover { background: #161616; color: #fff; }

/* ---- Ticket btn wrap ---- */
.ticket-btn-wrap { margin-bottom: 1.5rem; }
.ticket-btn-wrap.bottom { margin-top: 2rem; margin-bottom: 0; }

/* ---- Schedule table ---- */
.schedule-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; }
.schedule-table th { background: #161616; color: #fff; padding: 0.6rem 0.8rem; text-align: left; font-size: 0.875rem; }
.schedule-table td { padding: 0.6rem 0.8rem; border-bottom: 1px solid #eee; font-size: 0.9rem; }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) td { background: #f9f9f9; }

/* ---- Note text ---- */
p.note { font-size: 0.85rem; color: #666; font-style: italic; margin-top: -0.5rem; }

/* ---- Feature list ---- */
.feature-list { list-style: none; padding: 0; margin: 1rem 0; }
.feature-list li { padding: 0.4rem 0; color: #333; }

/* ---- CTA box ---- */
.cta-box { background: #f0f0f0; border-radius: 6px; padding: 1.5rem 2rem; margin: 2rem 0; text-align: center; }
.cta-box h3 { margin-top: 0; }

/* ---- Two column layout ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-bottom: 3rem; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img img { width: 100%; border-radius: 6px; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } .two-col.reverse { direction: ltr; } }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.4rem; }
.contact-item strong { display: block; margin-bottom: 0.2rem; }
.contact-form .form-group { margin-bottom: 1.2rem; }
.contact-form label { display: block; margin-bottom: 0.3rem; font-weight: 600; font-size: 0.9rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 0.6rem 0.8rem; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; font-size: 0.95rem; box-sizing: border-box; }
.contact-form textarea { resize: vertical; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- CTA section ---- */
.cta-section { background: #161616; color: #fff; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { margin: 0; color: #fff; }
.cta-inner p { margin: 0.5rem 0 0; color: #ccc; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Inner content ---- */
.inner-content .content-wrap { max-width: 800px; }
.inner-content h2 { color: #d41f00; }
.inner-content h3 { color: #161616; margin-top: 1.5rem; }
