@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
:root {
  --brand-brown: #5c4e3d;
  --brand-green: #4a5a41;
  --brand-orange: #ff6600;
  --brand-beige: #fcf8f5;
}
/* Reset & Base Styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #fdfcf7;
  color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
}

/* Header */
header, .site-header {
  background-color: #fff;
  margin: 0;
  padding: 0;
  width: 100%;
}
.header-logo-bar {
  width: 100vw;           /* Full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  background: #fff;
  padding: 0;             /* Remove extra padding */
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #5c4e3d;
  box-sizing: border-box;
  overflow: hidden;
}

.header-logo-full {
  width: 100vw;           /* Fill the bar */
  max-width: 100vw;       /* Never larger than viewport */
  height: auto;
  display: block;
  margin: 0;
}

.header-nav-wrap {
  width: 100%;
  background: #5c4e3d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2em;
  box-sizing: border-box;
}

.header-social a:hover svg {
  opacity: 1;
  transform: scale(1.12);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 1em 0;
}

/* Socials next to nav */
.header-social {
  display: flex;
  gap: 1em;
  margin-left: 2em;
}
.header-social a svg {
  width: 28px;
  height: 28px;
  opacity: 0.82;
  transition: opacity 0.2s, transform 0.18s;
}
.header-social a:hover svg {
  opacity: 1;
  transform: scale(1.12);
}
/* === Consistent Paragraph Style Across All Major Content === */
.webcopy p,
.louisiana-content p,
.kansas-maincopy p,
.hunt-card p,
.booking-card p,
.cta p,
.footer-copy p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.13em;
  line-height: 1.7;
  color: #44392c;
  margin: 1em 0;
  text-align: justify;
  letter-spacing: 0.01em;
}

.webcopy p:first-child,
.louisiana-content p:first-child,
.kansas-maincopy p:first-child {
  margin-top: 0;
}
.hunt-card p:first-child,
.booking-card p:first-child,
.cta p:first-child {
  margin-top: 0;
}
.webcopy p:last-child,
.louisiana-content p:last-child,
.kansas-maincopy p:last-child,
.hunt-card p:last-child,
.booking-card p:last-child,
.cta p:last-child {
  margin-bottom: 0;
}


/* Hero Section */
.hero-banner {
  background-image: url('images/vintage-toyota-landcruiser-quail-hunt.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 2em;
  border-radius: 12px;
  color: #fff;
  max-width: 800px;
}
.hero-title {
  font-size: 3em;
  font-family: 'Open Sans', sans-serif;
  margin: 0.2em 0;
}
.hero-subtitle {
  font-size: 1.5em;
  font-family: 'Open Sans', sans-serif;
}

/* Navigation */
nav, .footer-nav {
  background-color: #5c4e3c;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  padding: 1em 1em;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}
nav a, .footer-nav a, .site-footer nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.5em 0.25em;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
}
nav a:hover,
nav a.active,
.footer-nav a:hover,
.footer-nav a.active,
.site-footer nav a:hover {
  border-bottom: 2px solid #ff6600;
  color: #ff6600;
}
nav a.active, .footer-nav a.active {
  font-weight: 700;
}
.cta-about {
  text-align: center;
  margin: 2.2em 0 1.5em 0;
}
.cta-about a {
  display: inline-block;
  background: #5c4e3d;
  color: #fff;
  padding: 0.6em 2em;
  border-radius: 27px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.09em;
  box-shadow: 0 2px 8px rgba(41,30,13,0.09);
  transition: background 0.2s;
}
.cta-about a:hover {
  background: #473920;
  color: #f5e9d7;
}
.louisiana-section {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  background: #fcf8f5;
  border-radius: 10px;
  margin: 2.5em 0 0 0;
  box-shadow: 0 4px 24px rgba(92, 78, 61, 0.06);
  padding: 2em 1.5em;
}
.louisiana-section.reverse {
  flex-direction: row-reverse;
}
.louisiana-img {
  flex: 1 1 330px;
  max-width: 340px;
  border: 3px solid #b6986e;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}
.louisiana-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}
.louisiana-content {
  flex: 2 1 470px;
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.louisiana-content h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.5em;
  margin-top: 0;
  letter-spacing: 0.03em;
  color: #433621;
}

.cta-btn {
  display: inline-block;
  background: #b25623;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  padding: 0.7em 1.7em;
  text-decoration: none;
  margin-top: 1.3em;
  font-size: 1.08em;
  box-shadow: 0 1px 4px rgba(52, 32, 10, 0.07);
  border: none;
  transition: background 0.19s;
}
.local-explore {
  text-align: center;
  margin: 2em 0 2em 0;
  margin-bottom: 1em;
  background: none;
  padding: 0;
  box-shadow: none;
}

.local-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  justify-content: center;
  margin: 1.1em 0;
}

.local-btn {
  background: transparent;
  color: #b25623;
  font-weight: 600;
  padding: 1em 2em;
  border-radius: 38px;
  border: 2px solid #b25623;
  text-decoration: none;
  font-size: 1.06em;
  box-shadow: none;
  outline: none;
  display: inline-block;
  transition: 
    background 0.19s, 
    color 0.17s, 
    border-color 0.19s, 
    transform 0.13s;
  margin: 0.18em 0;
  cursor: pointer;
}
.local-btn:hover,
.local-btn:focus {
  background: #fff3e4;
  color: #ff6600;
  border-color: #ff6600;
  transform: scale(1.04);
}
.cta-btn:hover { background: #863d16; color: #fff; }
/* Card Grid Example */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 2em auto;
  padding: 0 1em;
}
.hunt-card {
  background-color: #fffef9;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 2em;
  border-left: 6px solid #927e5c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s;
}
.hunt-card:hover { transform: scale(1.02); }
.hunt-card h2 {
  margin-top: 0;
  font-family: 'Merriweather', serif;
  font-size: 1.5em;
}
.hunt-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5em 0;
}
.hunt-card ul li::before {
  content: "🪶 ";
  margin-right: 0.4em;
}

/* Web Copy */
.webcopy {
  background-color: rgba(253, 252, 247, 0.85);
  padding: 2em 1em;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 6px;
  text-align: justify;
}
.webcopy h1, .webcopy h2 { text-align: center; }

/* CTA Section */
.cta {
  background-color: #4a5a41;
  color: #fff;
  text-align: center;
  padding: 3em 1em;
  margin-bottom: 0;
  margin-top: 3em;
}
.cta h2 {
  margin-bottom: 1em;
  font-family: 'Merriweather', serif;
}
.cta a, .btn {
  display: inline-block;
  padding: 0.75em 2em;
  background-color: #a8b9a3;
  color: #3a4a41;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  transition: background-color 0.3s;
}
.cta a:hover, .btn:hover { background-color: #94a88e; color: #fff; }

/* Footer */
.site-footer {
  background-color: #4a5a41;
  color: #fff;
  text-align: center;
  padding: 2em 1em;
  font-size: 0.9em;
  margin: 0;
  border-top: none;
}
.site-footer nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.2s;
}
.site-footer nav a:hover { text-decoration: underline; color: #ddd; }

/* Booking Card */
.booking-card {
  background-color: #fdfcf7;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  padding: 3em 2em;
  max-width: 700px;
  margin: 2em auto;
  background-image: url('texture.png');
  background-size: cover;
  background-blend-mode: lighten;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #3a3a3a;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}
.booking-form button {
  background-color: #5c4e3c;
  color: white;
  padding: 0.85em 1.2em;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.booking-form button:hover { background-color: #3f372a; }

/* Glider.js Gallery */
.glider-contain {
  max-width: 600px;
  margin: 0 auto;
  padding: 2em 1em;
}
.glider {
  max-width: 600px;
  margin: 0 auto;
}
.glider img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  background: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.glider-prev,
.glider-next {
  background: #5c4e3d;
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  font-size: 1.5em;
  cursor: pointer;
  border-radius: 3px;
  margin: 0 0.5em;
  transition: background 0.3s;
}
.glider-prev:hover,
.glider-next:hover {
  background: #ff6600;
}
.dots {
  text-align: center;
  margin-top: 1em;
}
.dots button {
  border: none;
  background: #ccc;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
  transition: background 0.3s;
}
.dots button.active {
  background: #ff6600;
}

/* Accessibility/Utility */
a:focus {
  outline: 3px solid #ff6600;
  outline-offset: 2px;
}
.page-guidance {
  margin-top: 2rem;
  font-size: 1.1rem;
  text-align: center;
  font-style: italic;
}
.page-guidance a {
  color: #2c3e50;
  text-decoration: underline;
}

/* Responsive tweaks for mobile */
@media (max-width: 768px) {
  nav, .footer-nav {
    font-size: 1rem;
    gap: 1em;
  }
  .header-logo {
    max-height: 140px;
    object-fit: contain;
  }
  .booking-card {
    padding: 1.5em 0.5em;
  }
  .glider-contain, .glider {
    max-width: 98vw;
    padding: 0.5em;
  }
}
.webcopy p {
  text-align: justify;
}
.booking-center {
  text-align: center;
  margin: 0 auto;
}
.booking-header {
  text-align: center;
  margin-top: 2em;
  font-family: 'Merriweather', serif;
  font-size: 2.3em;
  color: #5c4e3d;
  letter-spacing: 0.01em;
  font-weight: bold;
}

.booking-intro {
  text-align: center;
  margin: 1.2em auto 2.5em auto;
  max-width: 520px;
  font-size: 1.18em;
  color: #44392c;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
}
.kansas-layout {
  display: flex;
  align-items: flex-start;
  gap: 1.2em;
  margin: 1.3em 0 0 0;
}
.kansas-image-stack {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-top: 0;
  gap: 1.7em;
  min-width: 260px;
  max-width: 320px;
}
.kansas-imgbox {
  background: #fff;
  border: 2px solid #b6986e;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  margin-top: 0;
  padding-top: 0;
  align-items: center;
  justify-content: center;
}
.kansas-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.kansas-maincopy {
  flex: 1 1 520px;
  font-size: 1.06em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.kansas-centerblock {
  margin: 3em auto 0 auto;
  text-align: justify;
  max-width: 640px;
}
.cta-btn {
  display: inline-block;
  background: #b25623;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  padding: 0.7em 1.7em;
  text-decoration: none;
  margin: 2em auto 0 auto;
  font-size: 1.08em;
  box-shadow: 0 1px 4px rgba(52, 32, 10, 0.07);
  border: none;
  transition: background 0.19s;
}
.cta-btn:hover { background: #863d16; color: #fff; }


.intro.webcopy {
  padding-top: 2px;
  margin-top: 0;
}
.intro.webcopy p:first-child {
  margin-top: 0;
}
.kansas-imgbox {
  margin-top: 0;
  padding-top: 0;
}
.kansas-image-stack {
  margin-top: 0;
  padding-top: 0;
}


.location-section {
  margin: 3em auto 2em auto;
  max-width: 1200px;
}
.location-title {
  text-align: center;
  font-size: 2.1em;
  color: #5c4e3d;
  font-family: 'Merriweather', serif;
  margin-bottom: 0.5em;
}

.booking-intro a {
  color: #5c4e3d;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s;
}

.booking-intro a:hover {
  color: #ff6600;
}
.footer-social a:hover svg {
  opacity: 0.85;
  transform: scale(1.08);
  transition: all 0.15s;
}
.footer-social svg {
  display: block;
}
.footer-nav a {
  margin: 0 0.5em;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}
.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}


/* Remove duplicate or conflicting nav/font-size/gap rules at 900px and 768px for .main-nav and .header-nav-wrap. You only need one solid mobile breakpoint for nav. */
@media (max-width: 700px) {
  .header-logo-full {
    width: 100vw;        /* use full viewport width */
    max-width: 100vw;    /* don't limit size */
    height: auto;
    display: block;
    margin: 0;           /* remove margins */
  }
  .header-logo-bar {
    padding: 0;
    background: #fff;
  }
}@media (max-width: 700px) {
  .header-nav-wrap {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .main-nav {
    flex-direction: row;             /* Make horizontal */
    gap: 1em;
    font-size: 1em;
    width: 100vw;
    padding: 0.5em 0.2em;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    background: #5c4e3d;
    white-space: nowrap;             /* Prevent wrapping */
  }
  .main-nav a {
    padding: 0.7em 0.7em;
    border-bottom: none;
    border-radius: 4px;
    width: auto;
    display: inline-block;
    color: #fff;
    font-weight: normal;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav a.active,
  .main-nav a:hover {
    color: #ff6600;
    background: #483c2b;
    border-bottom: 2px solid #ff6600;
    font-weight: bold;
  }
  .header-logo-bar {
    padding: 0;
  }
}
/* Optional: reduce h2, etc. for mobile */
@media (max-width: 700px) {
  h2, .hero-title, .location-title {
    font-size: 1.23em;
  }
}
@media (max-width: 850px) {
  .louisiana-section, .louisiana-section.reverse { flex-direction: column; gap: 1em; }
  .louisiana-img, .louisiana-content { max-width: 100%; }
}

@media (max-width: 900px) {
  .kansas-layout { flex-direction: column; gap: 1.2em; }
  .kansas-image-stack { flex-direction: row; max-width: 100%; gap: 1em; }
  .kansas-imgbox { aspect-ratio: 1/1; max-width: 50vw; }
}
@media (max-width: 600px) {
  .kansas-image-stack { flex-direction: column; }
  .kansas-imgbox { max-width: 100vw; }
  
}
.kansas-layout {
  align-items: flex-start !important;
}

.kansas-image-stack,
.kansas-imgbox,
.kansas-imgbox img,
.kansas-maincopy {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.kansas-maincopy > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.kansas-imgbox {
  box-sizing: border-box;
  /* Keep your border and radius, but don’t let it push things down */
}

/* OPTIONAL: If you want the image to *precisely* align with the text baseline, 
set vertical-align: top for the img, though this is rarely needed with flex: */
.kansas-imgbox img {
  vertical-align: top;
}
