/* ============================================
   SWIFTWATER WAY STATION — Website Styles
   Theme: Rustic Woods / Nature / Pig Logo
   Deep forest greens, warm barn wood browns,
   cream accents, pig pink pop
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --cream: #F5F0E8;
  --brown: #6B4C3B;
  --brown-light: #A0816A;
  --brown-dark: #3B2820;
  --green: #2D5A3F;
  --green-dark: #1B3D2A;
  --green-light: #4A7D5E;
  --pink: #D4727E;
  --pink-dark: #B85A65;
  --gold: #C8A96E;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --border: #DDD5C8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a { color: var(--brown); text-decoration: none; }
a:hover { color: var(--green); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ============ NAVIGATION ============ */
.nav {
  background: var(--green-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream) !important;
  white-space: nowrap;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 50%;
}

.nav-logo:hover { color: var(--gold) !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-phone {
  background: var(--pink) !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.nav-phone:hover { background: var(--pink-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 16px 24px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  overflow: hidden;
}
.hero.has-bg {
  background-image: url('photos/long drone shot.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 40px 24px;
}

.hero-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: var(--green);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

.hero-badge span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }

/* mobile overrides consolidated at bottom of file */

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--green); color: white !important; }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); }

.btn-outline { background: transparent; color: white !important; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--brown-dark) !important; }

.btn-brown { background: var(--brown); color: white !important; }
.btn-brown:hover { background: var(--brown-dark); }

.btn-cabin { background: var(--pink); color: white !important; }
.btn-cabin:hover { background: var(--pink-dark); }

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ INFO BAR ============ */
.info-bar {
  background: var(--green);
  color: white;
  padding: 20px 0;
}

.info-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.info-item { text-align: center; }
.info-item strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); }
.info-item span { font-size: 15px; }
.info-item a { color: white; }
.info-item a:hover { color: var(--gold); }

/* ============ SECTION STYLES ============ */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 16px;
}

/* ============ FEATURES GRID ============ */
.features { padding: 64px 0; background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }

.feature-icon { font-size: 48px; margin-bottom: 12px; }
.card-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  border: 2px solid var(--border);
}
.card-photo-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  border: 2px solid var(--border);
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ============ MENU PREVIEW ============ */
.menu-preview { padding: 64px 0; background: var(--cream); }

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.menu-preview-item {
  background: white;
  padding: 24px;
  border-radius: 10px;
  border-left: 4px solid var(--pink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.menu-preview-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.menu-preview-item p { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }

.price { font-weight: 700; color: var(--pink); font-size: 16px; }

/* ============ REVIEWS ============ */
.reviews { padding: 64px 0; background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 12px;
}

.review-card {
  background: var(--cream);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.stars { color: var(--gold); font-size: 20px; margin-bottom: 12px; }
.review-card p { font-size: 14px; color: var(--text); line-height: 1.6; font-style: italic; }

/* ============ CABIN PROMO ============ */
.cabin-promo {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: white;
}

.cabin-promo-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cabin-promo-text { flex: 1; min-width: 300px; }

.cabin-promo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--gold);
}

.cabin-promo-text p { font-size: 16px; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.9); }

.cabin-promo-badge {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  min-width: 160px;
}

.cabin-promo-badge span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
}

.cabin-promo-badge small { display: block; font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}

.footer p { font-size: 14px; line-height: 1.7; margin-bottom: 4px; }
.footer a { color: rgba(255,255,255,0.8); }
.footer a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 24px;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  padding: 48px 0;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 8px;
}

.page-header p { color: rgba(255,255,255,0.8); font-size: 16px; }

/* ============ MENU PAGE ============ */
.menu-page { padding: 48px 0; }

.menu-section {
  margin-bottom: 48px;
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.menu-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--brown-dark);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.menu-section-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted var(--border);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-weight: 700;
  color: var(--brown-dark);
  font-size: 16px;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

.menu-item-price {
  font-weight: 700;
  color: var(--pink);
  font-size: 16px;
  white-space: nowrap;
  margin-left: 16px;
}

.menu-item-left { flex: 1; }

/* ============ SPECIALS TABS ============ */
.specials-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.specials-tab {
  padding: 10px 20px;
  border: 2px solid var(--pink);
  background: white;
  color: var(--pink);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.specials-tab:hover {
  background: var(--cream);
}
.specials-tab.active {
  background: var(--pink);
  color: white;
}
.specials-panel {
  display: none;
}
.specials-panel.active {
  display: block;
}

/* ============ ABOUT PAGE ============ */
.about-content { padding: 48px 0; }

.about-section {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.about-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.about-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.about-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.about-card p { font-size: 14px; color: var(--text-light); }

/* ============ CONTACT PAGE ============ */
.contact-content { padding: 48px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* contact mobile consolidated at bottom */

.contact-info {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail-icon { font-size: 24px; min-width: 32px; text-align: center; }

.contact-detail h3 { font-size: 14px; color: var(--brown); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-detail p { font-size: 15px; color: var(--text); }
.contact-detail a { color: var(--pink); font-weight: 600; }

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  min-height: 400px;
}

.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: none; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 40px 24px;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.cta-banner p { font-size: 16px; margin-bottom: 20px; color: rgba(255,255,255,0.9); }
.cta-banner .btn { background: white; color: var(--green) !important; }
.cta-banner .btn:hover { background: var(--cream); }

/* ============ COMPREHENSIVE MOBILE STYLES ============ */
@media (max-width: 768px) {
  /* --- NAV --- */
  .nav-logo { font-size: 16px; gap: 8px; }
  .nav-logo img { height: 36px; }

  /* --- HERO --- */
  .hero { min-height: 380px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .hero-content { padding: 28px 16px; }
  .hero-badge { top: unset !important; bottom: 10px; left: 10px; gap: 6px !important; padding: 0 !important; }
  .hero-badge img { height: 34px !important; width: auto !important; border-radius: 6px !important; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: center; }
  .hero-btns .btn { width: 80%; text-align: center; padding: 12px 20px; font-size: 14px; }

  /* --- INFO BAR --- */
  .info-bar-inner { flex-direction: column; gap: 12px; text-align: center; }

  /* --- SECTIONS --- */
  .section-title { font-size: 24px; }
  .section-sub { font-size: 14px; }
  .container { padding: 0 16px; }
  .features { padding: 40px 0; }

  /* --- FEATURE CARDS --- */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 20px 12px; }
  .feature-card h3 { font-size: 16px; }
  .feature-card p { font-size: 13px; }
  .card-photo-lg { width: 60px; height: 60px; }

  /* --- MENU PREVIEW --- */
  .menu-preview { padding: 40px 0; }
  .menu-preview-grid { grid-template-columns: 1fr; }
  .menu-preview-item { padding: 18px; }

  /* --- REVIEWS --- */
  .reviews { padding: 40px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 20px; }

  /* --- CABIN PROMO --- */
  .cabin-promo { padding: 40px 0; }
  .cabin-promo-inner { flex-direction: column; gap: 24px; text-align: center; }
  .cabin-promo-text { min-width: unset; }
  .cabin-promo-text h2 { font-size: 24px; }

  /* --- PAGE HEADERS (inner pages) --- */
  .page-header { padding: 32px 0; }
  .page-header h1 { font-size: 28px; }

  /* --- MENU PAGE --- */
  .menu-section { padding: 20px 16px; }
  .menu-section h2 { font-size: 22px; }
  .menu-item { flex-direction: column; gap: 2px; }
  .menu-item-price { margin-left: 0; }
  .specials-tabs { gap: 6px; }
  .specials-tab { padding: 8px 14px; font-size: 13px; }

  /* --- ABOUT PAGE --- */
  .about-section { padding: 24px 16px; }
  .about-section h2 { font-size: 22px; }
  .about-section p { font-size: 15px; }
  .about-section [style*="float:left"],
  .about-section [style*="float:right"],
  .about-section [style*="float: left"],
  .about-section [style*="float: right"],
  .about-section img[style*="float"] {
    float: none !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 0 16px 0 !important;
    display: block;
  }
  .about-grid { grid-template-columns: 1fr; }

  /* --- STORE PAGE grids --- */
  .photo-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .photo-grid-3 { grid-template-columns: 1fr !important; }

  /* --- CONTACT --- */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }
  .contact-map iframe { min-height: 280px; }

  /* --- FOOTER --- */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer { padding: 36px 0 0; }

  /* --- CTA BANNER --- */
  .cta-banner h2 { font-size: 22px; }
  .cta-banner p { font-size: 14px; }
}

/* Extra small phones */
@media (max-width: 480px) {
  .hero-badge img { height: 28px !important; }
  .hero h1 { font-size: 24px; }
  .hero-sub { font-size: 13px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-card { padding: 16px 10px; }
  .nav-logo { font-size: 14px; }
  .nav-logo img { height: 32px; }
}
