/* ==========================================================================
   Day Tripper Property Group LLC - Design System & Reset
   ========================================================================== */

/* 1. CSS Custom Properties / Theme Variables */
:root {
  --primary-green: #2A4B38;
  --primary-green-hover: #1E372B;
  --accent-orange: #E06A3B;
  --accent-orange-hover: #C5532A;
  --bg-light: #F9F8F3;
  --bg-white: #FFFFFF;
  --text-dark: #1A2522;
  --text-muted: #5C6B66;
  --border-light: #E2E7E4;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --max-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
}

/* 2. Global Reset & Base Rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 3. Utility Layout Classes */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 4rem 0;
}

.text-center { text-align: center; }

/* 4. Button & CTA System */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background-color: var(--primary-green);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: #FFFFFF;
}

/* 5. Reusable Card Component */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Header & Navigation Styling
   ========================================================================== */
.site-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

/* Mobile Hamburger Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-green);
  position: relative;
  transition: background-color 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--primary-green);
  transition: transform 0.2s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ==========================================================================
   Hero Section Styling
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, rgba(42, 75, 56, 0.92), rgba(26, 37, 34, 0.95)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 5.5rem 0 4.5rem;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  max-width: 850px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(224, 106, 59, 0.2);
  border: 1px solid var(--accent-orange);
  color: #FFD5C6;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #E2E7E4;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.btn-outline-light:hover {
  background-color: #FFFFFF;
  color: var(--primary-green);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #D1DCD6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  
  .site-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: none;
    border-bottom: 1px solid var(--border-light);
  }

  .site-nav.active { display: flex; }

  .nav-list {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero-title { font-size: 2rem; }
}
/* ==========================================================================
   Property Highlights & Section Styling
   ========================================================================== */
.section-header {
  max-width: 650px;
  margin: 0 auto 3rem;
}

.sub-heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Property Card Grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--border-light);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .card-image {
  transform: scale(1.04);
}

/* Card Badges */
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-orange { background-color: var(--accent-orange); }
.badge-green { background-color: var(--primary-green); }
.badge-dark { background-color: var(--text-dark); }

/* Card Body & Content */
.card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.amenity-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.amenity-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-footer {
  margin-top: auto;
}

.card-btn {
  width: 100%;
  text-align: center;
}
/* ==========================================================================
   Lead Capture Pop-Up Modal Styling
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 37, 34, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--accent-orange);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.6rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.modal-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(42, 75, 56, 0.15);
}

.form-btn {
  width: 100%;
  padding: 0.9rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   Site Footer Styling
   ========================================================================== */
.site-footer {
  background-color: var(--primary-green);
  color: #E2E7E4;
  padding-top: 4rem;
  margin-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #B4C4BD;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD5C6;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-heading {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #B4C4BD;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-contact p {
  color: #B4C4BD;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-contact a {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-bottom {
  background-color: var(--text-dark);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: #8C9C96;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* ==========================================================================
   Page Banner & Detail Layout
   ========================================================================== */
.page-banner {
  background-color: var(--primary-green);
  color: #FFFFFF;
  padding: 3rem 0;
  text-align: center;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #D1DCD6;
}

.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.detail-block {
  margin-bottom: 2.5rem;
}

.detail-block h2 {
  font-size: 1.6rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.detail-block p {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   Photo Gallery Component
   ========================================================================== */
.gallery-container {
  margin-bottom: 2.5rem;
}

.main-photo {
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--border-light);
}

.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.thumb {
  height: 90px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.thumb:hover,
.thumb.active {
  opacity: 1;
  border-color: var(--accent-orange);
}

/* ==========================================================================
   Amenities Grid Component
   ========================================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--bg-white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.amenity-icon {
  font-size: 1.75rem;
}

.amenity-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.amenity-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   Calendar Embed Wrapper
   ========================================================================== */
.calendar-embed-wrapper {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.calendar-placeholder {
  color: var(--primary-green);
  font-size: 1.1rem;
}

/* ==========================================================================
   Sidebar Booking Card
   ========================================================================== */
.detail-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  padding: 2rem;
}

.booking-title {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 0.25rem;
}

.booking-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 992px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  
  .detail-sidebar {
    position: static;
  }
  
  .main-photo {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   RV Site Rules & Custom Page Styling
   ========================================================================== */
.rules-list {
  list-style: none;
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rules-list li {
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
}

.rules-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: bold;
}
/* ==========================================================================
   Tenants & Contact Page Custom Styling
   ========================================================================== */
.contact-form-full {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.tenant-info-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary-green);
  margin-top: 2rem;
}

.tenant-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.tenant-box {
  background-color: var(--bg-light);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.tenant-box h3 {
  font-size: 1.05rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.tenant-box p {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.pay-address {
  background-color: var(--bg-white);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.85rem !important;
  border: 1px solid var(--border-light);
  margin-top: 0.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.contact-info-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-green);
}

.contact-info-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 576px) {
  .tenant-details-grid {
    grid-template-columns: 1fr;
  }
}