@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');

/* 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;
}

/* Header */
header, .site-header {
  background-color: #fff;
  margin: 0;
  padding: 0;
  width: 100%;
}
.header-logo, .site-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .header-logo {
    max-height: 140px;
    object-fit: contain;
  }
}

/* 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;
}

/* Main */
main {
  min-height: 100vh;
  flex: 1;
  padding: 2em 1em 0 1em;
  margin-top: 0;
}

/* 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 p { margin: 0.5em 0; }
.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;
}

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

.booking-intro a:hover {
  color: #ff6600;
}
