/* ============================================================
   VISIT HOBART, OHIO
   Complete Refined Stylesheet — October 2025 (Card Fix)
   ============================================================ */

/* --- Root Colors & Variables --- */
:root {
  --blue: #1a5ca7;
  --blue-dark: #0f3e7a;
  --gold: #f5c542;
  --gold-light: #ffe27a;
  --light: #ffffff;
  --ink: #111;
  --muted: #444;
  --bg: #f4f6f8;
  --radius: 10px;
  --max: 1200px;
}

/* --- Base Typography & Layout --- */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.8;
  font-size: 18px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

h1, h2, h3, h4 {
  color: var(--blue-dark);
  margin: 0 0 .5rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #dce9ff 0%, #fff3d6 100%);
  color: var(--ink);
  border-bottom: 5px solid var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-logo {
  width: 260px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--blue-dark);
}

.hero-tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: #333;
}

/* --- NAVIGATION --- */
.main-nav {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 1.2rem 0;
}

.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--gold);
}

/* ============================================================
   HOME PAGE FEATURE SECTIONS
   ============================================================ */

/* ============================================================
   CLEAN REBUILD: Feature Cards (Dine / Play / Stay)
   ============================================================ */

/* ============================================================
   PERFECTLY ALIGNED FEATURE CARDS
   ============================================================ */

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  margin: 3rem auto;
  align-items: stretch;
}

/* Card container */
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 2px solid #eee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Overlay gradient */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}

/* Inner layout: centers text and keeps button level */
.feature-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

/* Text block centered vertically */
.feature-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-body h3 {
  margin: 0 0 0.6rem;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0,0,0,0.8);
}

.feature-body p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #f8f8f8;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* Footer stays pinned at same visual level */
.feature-footer {
  margin-top: 2rem;
  align-self: flex-start;
}

/* Button */
.feature-footer .btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.feature-footer .btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Background images */
.feature-card.dine {
  background-image: url('https://images.unsplash.com/photo-1529692236671-f1dc28a3b3a2?auto=format&fit=crop&w=900&q=80');
}
.feature-card.play {
  background-image: url('https://images.unsplash.com/photo-1472653431158-6364773b2a56?auto=format&fit=crop&w=900&q=80');
}
.feature-card.stay {
  background-image: url('https://images.unsplash.com/photo-1519710164239-da123dc03ef4?auto=format&fit=crop&w=900&q=80');
}


.btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* --- What's New --- */
.whats-new {
  margin: 4rem auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.whats-new h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1.5rem 2rem;
}

.new-card {
  background: #f9fbff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  border-top: 4px solid var(--blue);
}

.new-card h4 {
  color: var(--blue-dark);
  margin-bottom: .4rem;
}

.btn-small {
  display: inline-block;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: var(--radius);
  font-size: .9rem;
}

.btn-small:hover {
  background: var(--blue);
}

/* --- Events Grid --- */
.events {
  background: #fffdf9;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin: 3rem auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.events h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Enhanced Event Cards */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.event-card {
  background: #ffffff;
  border-radius: 14px;
  border-left: 6px solid var(--blue);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 1.75rem;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.event-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(to bottom, var(--blue), var(--gold));
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.event-card h4 {
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.event-card p {
  color: #222;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.event-card strong {
  color: #000;
  font-weight: 600;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   CONTENT PAGES (About, Contact, See & Do)
   ============================================================ */

.about-page,
.page-content,
.pages-content {
  max-width: 980px;
  margin: 2rem auto 3rem;
  background: #fffdf9;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  padding: 3rem 2.5rem;
}

/* ============================================================
   EXPLORE + FOOTER
   ============================================================ */

.explore {
  background: linear-gradient(180deg, #1a1a1a 0%, #232323 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.explore h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: .75rem;
}

.explore p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #ddd;
}

.btn-light {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.btn-light:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* --- Site Footer --- */
.site-footer {
  background: var(--blue-dark);
  color: #fff;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2.5rem 1.5rem;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: var(--gold);
}

.legal {
  background: #0b2c57;
  text-align: center;
  padding: 1rem;
  font-size: .9rem;
  color: #d6e3ff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero-logo { width: 180px; }
  .hero-title { font-size: 2rem; }
  .about-page, main.wrap { max-width: 90%; }
  .about-page h1 { font-size: 1.9rem; }
  .about-page h2 { font-size: 1.3rem; }
}
