/* ============================================================
   High Point Quail Hunting Preserve – Shared Stylesheet
   Color scheme: burnt orange, dark brown, warm cream
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #FAF5EF;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #D4760A;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  color: #2C1810;
  line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout Utilities ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--dark {
  background-color: #2C1810;
  color: #FAF5EF;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #FAF5EF;
}

.section--tan {
  background-color: #F0E6D8;
}

.section--accent {
  background-color: #D4760A;
  color: #fff;
}

.section--accent h2,
.section--accent h3 {
  color: #fff;
}

.text-center { text-align: center; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #8B4513;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.section--dark .section-subtitle {
  color: #D4760A;
}

.divider {
  width: 60px;
  height: 3px;
  background: #D4760A;
  margin: 0.75rem auto 2rem;
  border: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: #D4760A;
  color: #fff;
  border-color: #D4760A;
}

.btn-primary:hover {
  background: #b8620a;
  border-color: #b8620a;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #D4760A;
  border-color: #D4760A;
}

.btn-outline:hover {
  background: #D4760A;
  color: #fff;
  text-decoration: none;
}

.btn-outline--light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline--light:hover {
  background: rgba(255,255,255,0.15);
  text-decoration: none;
}

/* ---------- HEADER ---------- */
.site-header {
  background: #2C1810;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo-area {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.header-logo-area img {
  height: 60px;
  width: auto;
}

.header-tagline {
  display: flex;
  flex-direction: column;
}

.header-tagline .site-name {
  font-size: 0.85rem;
  font-weight: bold;
  color: #D4760A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.header-tagline .site-sub {
  font-size: 0.72rem;
  color: #c8a882;
  font-style: italic;
  line-height: 1.4;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.main-nav a {
  color: #FAF5EF;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.45rem 0.6rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: #D4760A;
  text-decoration: none;
  background: rgba(212,118,10,0.1);
}

.main-nav a.nav-external {
  color: #D4760A;
}

.main-nav a.nav-external:hover {
  color: #FAF5EF;
  background: #D4760A;
}

/* Social icons in header */
.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-social a img {
  height: 24px;
  width: 24px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.header-social a:hover img {
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #FAF5EF;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #2C1810;
  border-top: 1px solid rgba(212,118,10,0.3);
  padding: 0.75rem 1.25rem 1rem;
  gap: 0.1rem;
}

.mobile-nav a {
  color: #FAF5EF;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: #D4760A;
  text-decoration: none;
}

.mobile-nav a.nav-external {
  color: #D4760A;
}

.mobile-nav .mobile-social {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(212,118,10,0.3);
}

.mobile-nav .mobile-social img {
  height: 26px;
  width: 26px;
}

.mobile-nav-open .mobile-nav {
  display: flex;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2C1810;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
}

.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  margin-bottom: 0.5rem;
}

.hero-content .hero-sub {
  color: #F0C882;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero-content .hero-tagline {
  color: #FAF5EF;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: #2C1810;
  padding: 3rem 1.25rem;
  text-align: center;
  border-bottom: 3px solid #D4760A;
}

.page-hero h1 {
  color: #FAF5EF;
}

.page-hero p {
  color: #c8a882;
  font-style: italic;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

/* ---------- FEATURE BLOCK ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.feature-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text h2 {
  margin-bottom: 1rem;
}

.feature-text .feature-list {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
}

.feature-text .feature-list li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
  color: #555;
}

.feature-text .feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #D4760A;
  font-size: 0.7rem;
  top: 0.55rem;
}

/* ---------- RATES ---------- */
.rates-intro {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.rates-group {
  margin-bottom: 3rem;
}

.rates-group-title {
  background: #2C1810;
  color: #FAF5EF;
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 4px solid #D4760A;
  margin-bottom: 0;
}

.rates-subheading {
  background: #8B4513;
  color: #FAF5EF;
  padding: 0.4rem 1.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.rates-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.rates-table th {
  background: #F0E6D8;
  color: #2C1810;
  text-align: left;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid #D4760A;
}

.rates-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #e8ddd2;
  color: #333;
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table tr:hover td {
  background: #FDF8F3;
}

.rates-table .price {
  font-weight: bold;
  color: #D4760A;
  font-size: 1rem;
}

.rates-notes {
  background: #F0E6D8;
  border-left: 4px solid #D4760A;
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
  border-radius: 0 3px 3px 0;
}

.rates-notes h3 {
  margin-bottom: 0.75rem;
}

.rates-notes ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: #555;
}

.rates-notes ul li {
  margin-bottom: 0.35rem;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 3px;
  background: #2C1810;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-info-card {
  background: #fff;
  border: 1px solid #e8ddd2;
  border-radius: 4px;
  padding: 2rem;
}

.contact-info-card h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #D4760A;
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-info-item .ci-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8B4513;
  font-weight: bold;
  min-width: 70px;
  padding-top: 0.1rem;
}

.contact-info-item .ci-value {
  color: #333;
  font-size: 0.95rem;
}

.contact-info-item .ci-value a {
  color: #D4760A;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid #e8ddd2;
  border-radius: 4px;
  padding: 2rem;
}

.contact-form-wrap h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #D4760A;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8B4513;
  margin-bottom: 0.35rem;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #d5c9bc;
  border-radius: 3px;
  font-family: 'Georgia', serif;
  font-size: 0.92rem;
  color: #333;
  background: #FAF5EF;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D4760A;
  background: #fff;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.sms-disclosure {
  background: #F0E6D8;
  border: 1px solid #d5c9bc;
  border-radius: 3px;
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* ---------- DOGS PAGE ---------- */
.dogs-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.dogs-content {
  max-width: 800px;
  margin: 0 auto;
}

.dogs-contact-box {
  background: #F0E6D8;
  border-left: 4px solid #D4760A;
  padding: 1.5rem 1.75rem;
  border-radius: 0 4px 4px 0;
  margin-top: 2rem;
}

.dogs-contact-box h3 {
  margin-bottom: 0.75rem;
}

/* ---------- PICKLED EGGS ---------- */
.eggs-coming-soon {
  text-align: center;
  padding: 2rem 0;
}

.eggs-coming-soon .big-label {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #D4760A;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.flavor-form {
  max-width: 600px;
  margin: 2.5rem auto 0;
  background: #fff;
  border: 1px solid #e8ddd2;
  border-radius: 4px;
  padding: 2rem;
  text-align: left;
}

.flavor-form h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.flavor-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 400px) {
  .flavor-checkboxes {
    grid-template-columns: 1fr;
  }
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #333;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #D4760A;
  cursor: pointer;
  flex-shrink: 0;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.about-sidebar {
  background: #F0E6D8;
  border-radius: 4px;
  padding: 1.75rem;
  border-top: 4px solid #D4760A;
}

.about-sidebar h3 {
  margin-bottom: 0.75rem;
}

.about-fact {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd1c5;
  font-size: 0.9rem;
  color: #555;
}

.about-fact strong {
  color: #2C1810;
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.1rem;
}

.about-fact:last-child {
  border-bottom: none;
}

/* ---------- LEGAL PAGES ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e8ddd2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #555;
}

.legal-content ul li {
  margin-bottom: 0.3rem;
}

.legal-content p {
  color: #555;
}

.legal-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #2C1810;
  color: #c8a882;
}

.footer-upper {
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .footer-upper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-upper {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h4 {
  color: #D4760A;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col address {
  font-size: 0.87rem;
  font-style: normal;
  line-height: 1.8;
  color: #c8a882;
}

.footer-col a {
  color: #c8a882;
  font-size: 0.87rem;
}

.footer-col a:hover {
  color: #D4760A;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav-links a {
  font-size: 0.87rem;
}

.footer-bible {
  font-style: italic;
  font-size: 0.85rem;
  color: #a88a6e;
  border-left: 2px solid #D4760A;
  padding-left: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-bible .verse-ref {
  font-style: normal;
  font-weight: bold;
  color: #D4760A;
  font-size: 0.8rem;
  display: block;
  margin-top: 0.2rem;
}

.footer-lower {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-lower-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-lower-links a {
  font-size: 0.78rem;
  color: #a88a6e;
}

.footer-lower-links a:hover {
  color: #D4760A;
}

.footer-copyright {
  font-size: 0.78rem;
  color: #7a6250;
}

.footer-powered {
  font-size: 0.72rem;
  color: #7a6250;
}

.footer-powered a {
  color: #a88a6e;
  font-size: 0.72rem;
}

.footer-powered a:hover {
  color: #D4760A;
  text-decoration: none;
}

/* ---------- INFO STRIP ---------- */
.info-strip {
  background: #D4760A;
  color: #fff;
  text-align: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
}

.info-strip a {
  color: #fff;
  font-weight: bold;
}

/* ---------- CARD GRID ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e8ddd2;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(44,24,16,0.12);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
}

.card-body p {
  color: #666;
  font-size: 0.9rem;
}

/* ---------- HIGHLIGHT BOX ---------- */
.highlight-box {
  background: #F0E6D8;
  border-left: 4px solid #D4760A;
  padding: 1.5rem 1.75rem;
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
}

.highlight-box p {
  margin-bottom: 0.5rem;
  color: #555;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* ---------- RESPONSIVE HEADER ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-social { display: none; }
  .hamburger { display: flex; }
  .header-tagline .site-name { font-size: 0.78rem; }
}

@media (min-width: 901px) {
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---------- MISC ---------- */
.text-orange { color: #D4760A; }
.text-brown { color: #2C1810; }
.fw-bold { font-weight: bold; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
