/* Your Huron Vacation — public site styles */
:root {
    --primary: #1a6ea0;
    --primary-light: #2589c4;
    --primary-dark: #0d3b52;
    --accent: #e9c46a;
    --bg: #f4f6f8;
    --text: #1a202c;
    --muted: #5a6b7b;
    --card: #ffffff;
    --border: #e2e8f0;
    --footer-bg: #0d3b52;
    --radius: 12px;
    --shadow: 0 4px 18px rgba(13, 59, 82, 0.08);
    --shadow-lg: 0 12px 40px rgba(13, 59, 82, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
h1, h2, h3, h4, .display { font-family: "Montserrat", system-ui, sans-serif; font-weight: 800; line-height: 1.15; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.section { padding: 72px 0; }
.section-sm { padding: 44px 0; }
.section-title { font-size: 2rem; margin: 0 0 12px; }
.section-lead { color: var(--muted); font-size: 1.1rem; max-width: 680px; margin: 0 auto 40px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 999px;
    font-weight: 600; border: 2px solid transparent; cursor: pointer; transition: all .18s ease; font-size: 1rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-accent { background: var(--accent); color: var(--primary-dark); }
.btn-accent:hover { filter: brightness(.95); color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 15px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; justify-content: center; }

/* Navbar */
.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.site-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Montserrat", sans-serif; font-weight: 800;
    font-size: 1.2rem; color: var(--primary-dark); }
.brand i { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a { padding: 8px 14px; border-radius: 8px; color: var(--text); font-weight: 500; }
.nav-links a:hover, .nav-links a.active { background: var(--bg); color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-dark); cursor: pointer; }
@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .nav-links { position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; align-items: stretch;
        background: #fff; border-bottom: 1px solid var(--border); padding: 10px 20px; gap: 2px; display: none; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px; }
}

/* Hero */
.hero { position: relative; color: #fff; text-align: center; padding: 110px 0 96px;
    background: linear-gradient(rgba(13,59,82,.62), rgba(13,59,82,.72)), var(--hero-img, linear-gradient(135deg, var(--primary), var(--primary-dark)));
    background-size: cover; background-position: center; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 0 16px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero p { font-size: 1.25rem; max-width: 640px; margin: 0 auto 28px; opacity: .95; }
.hero .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Cards / grid */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 4/3; object-fit: cover; width: 100%; background: #dfe6ec; }
.card-body { padding: 20px; }
.card-title { font-size: 1.3rem; margin: 0 0 6px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: .92rem; margin: 10px 0; }
.card-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Badges / rating */
.badge { display: inline-flex; align-items: center; gap: 5px; background: var(--bg); color: var(--primary-dark);
    padding: 4px 12px; border-radius: 999px; font-size: .82rem; font-weight: 600; }
.rating { color: var(--accent); font-weight: 700; }
.rating .fa-star { color: var(--accent); }

/* Amenities */
.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; list-style: none; padding: 0; }
.amenities li { display: flex; align-items: center; gap: 10px; color: var(--text); }
.amenities i { color: var(--primary); width: 20px; text-align: center; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.gallery-grid img { aspect-ratio: 1; object-fit: cover; border-radius: 8px; cursor: pointer; width: 100%;
    transition: opacity .15s ease; }
.gallery-grid img:hover { opacity: .88; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,26,38,.94); display: none; align-items: center;
    justify-content: center; z-index: 2000; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
.lightbox-close, .lightbox-nav { position: absolute; color: #fff; background: rgba(255,255,255,.12); border: none;
    font-size: 1.6rem; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav.prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 18px; top: 50%; transform: translateY(-50%); }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.form-control { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
    font-size: 1rem; font-family: inherit; background: #fff; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,110,160,.14); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }

/* Alerts */
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #e6f6ed; color: #1b6b3a; }
.alert-error { background: #fdeaea; color: #b02a2a; }

/* Reviews */
.review-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.review-card .stars { color: var(--accent); margin-bottom: 8px; }
.review-card .author { font-weight: 700; margin-top: 12px; }

/* Detail page */
.detail-hero { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; aspect-ratio: 16/11; }
.detail-hero .side { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.detail-hero .side img { aspect-ratio: 16/8; }
@media (max-width: 720px){ .detail-hero { grid-template-columns: 1fr; } .detail-hero .side { display:none; } }
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; margin-top: 40px; }
@media (max-width: 900px){ .detail-layout { grid-template-columns: 1fr; } }
.booking-box { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px;
    position: sticky; top: 90px; }

/* Footer */
.site-footer { background: var(--footer-bg); color: #cfe0ea; padding: 56px 0 26px; margin-top: 60px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 34px; }
@media (max-width: 720px){ .footer-grid { grid-template-columns: 1fr; gap: 26px; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; text-align: center; font-size: .88rem; }

/* Utility */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-2{margin-top:1rem}.mb-3{margin-bottom:1.5rem}
