/* MVP Rentals Guest Guides - Shared Stylesheet */

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

body {
  background: #F8F5EF;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  color: #222222;
}

/* Header */
header, header, .header {
  background: #0d2e10;
  color: #ffffff;
  padding: 18px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
header .brand, .header .brand { display: flex; align-items: center; gap: 14px; }
header .logo, .header .logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  object-fit: cover;
}
header h1, .header h1 { font-size: 1.35rem; font-weight: 700; }
header .subtitle, .header .subtitle { font-size: 0.9rem; opacity: 0.85; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

/* Summary bar */
.summary-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.summary-card, .summary-item {
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
}
.summary-card .number, .summary-card .summary-value, .summary-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.summary-card .label, .summary-card .summary-label, .summary-card span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.92;
}
.summary-green, .summary-item.green { background: #1F6224; }
.summary-gold, .summary-item.gold { background: #C8990A; }
.summary-deep, .summary-item.deep { background: #0d2e10; }
.summary-neutral, .summary-item.neutral { background: #4a5568; }

/* Sections */
.section { margin-bottom: 36px; }
.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d2e10;
  border-bottom: 2px solid #D6E8D6;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

/* Card grid */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}
.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.card-header {
  background: #1F6224;
  color: #ffffff;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.card-header h3 { font-size: 0.95rem; font-weight: 700; }

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.badge-info { background: #D6E8D6; color: #0d2e10; }
.badge-warning { background: #C8990A; color: #ffffff; }
.badge-danger { background: #c0392b; color: #ffffff; }

.card-body { padding: 14px 16px 16px; }
.card-body p {
  font-size: 0.88rem;
  color: #555555;
  margin-bottom: 10px;
}
.card-body p:last-child { margin-bottom: 0; }
.card-body strong { color: #222222; }

.card-body ul { list-style: none; padding: 0; }
.card-body ul li {
  padding: 6px 0;
  border-bottom: 1px solid #f0ede5;
  font-size: 0.85rem;
}
.card-body ul li:last-child { border-bottom: none; }

/* Notes callout */
.notes {
  background: #fffdf5;
  border-left: 3px solid #C8990A;
  padding: 10px 14px;
  font-size: 0.83rem;
  color: #555555;
  margin-bottom: 12px;
  border-radius: 0 4px 4px 0;
}
.notes.warning { border-left-color: #e67e22; background: #fff8f0; }
.notes.danger { border-left-color: #c0392b; background: #fff5f5; }

/* Links / buttons */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.links a {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.links a:hover { opacity: 0.85; }
.btn-primary { background: #1F6224; color: #ffffff; }
.btn-secondary { background: #e8e8e8; color: #222222; }
.btn-gold { background: #C8990A; color: #ffffff; }
.btn-outline {
  background: transparent;
  border: 2px solid #1F6224;
  color: #1F6224;
}

/* Info rows */
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0ede5;
  font-size: 0.88rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { font-weight: 600; color: #555555; }
.info-row .value {
  font-weight: 700;
  color: #1F6224;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* Checklist */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 10px 14px;
  border-bottom: 1px solid #f0ede5;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checklist li:last-child { border-bottom: none; }
.checklist li:hover { background: #fafaf5; }
.checklist li.checked { color: #888888; text-decoration: line-through; }
.checklist li .check-box {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #1F6224;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.15s;
}
.checklist li.checked .check-box { background: #1F6224; }
.checklist li.checked .check-box::after {
  content: "\2713";
  color: #ffffff;
  display: block;
  text-align: center;
  line-height: 14px;
  font-weight: bold;
  font-size: 12px;
}

/* Two-column helper */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 24px 16px 16px;
  font-size: 0.78rem;
  color: #888888;
}

/* Property chooser */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.property-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}
.property-card .property-hero {
  background: #1F6224;
  color: #ffffff;
  padding: 22px 20px;
  text-align: center;
}
.property-card .property-hero h3 { font-size: 1.4rem; margin-bottom: 4px; }
.property-card .property-hero .addr { font-size: 0.82rem; opacity: 0.85; }
.property-card .property-body {
  padding: 14px 18px;
  font-size: 0.82rem;
  color: #555555;
}

/* Responsive */
@media (max-width: 768px) {
  header, header, .header {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  header h1, .header h1 { font-size: 1.1rem; }
  .container { padding: 16px 12px 32px; }
  .summary-bar { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .property-grid { grid-template-columns: 1fr; }
}

/* Intro card - used on area page and for welcome sections */
.intro-card {
  background: linear-gradient(135deg, #1F6224 0%, #174d1c 100%);
  color: #ffffff;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 32px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.intro-card p {
  font-size: 1rem;
  margin-bottom: 14px;
  opacity: 0.95;
}
.intro-card p:last-child { margin-bottom: 0; }
.intro-card .card-links { margin-top: 6px; }
.intro-card .btn-outline {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #ffffff;
}
.intro-card .btn-outline:hover { background: rgba(255,255,255,0.22); }

/* .btn base class (used alongside btn-primary/secondary/gold/outline) */
.btn {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary { background: #1F6224; color: #ffffff; }
.btn-secondary { background: #e8e8e8; color: #222222; }
.btn-gold { background: #C8990A; color: #ffffff; }
.btn-outline {
  background: transparent;
  border: 2px solid #1F6224;
  color: #1F6224;
  padding: 6px 14px;
}

/* Card links wrapper (used in cards to group buttons) */
.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

/* Card header icons - keep emoji aligned with text */
.card-header h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Improve spacing inside cards */
.card-body > * + * { margin-top: 10px; }
.card-body .card-links { margin-top: 14px; }

/* Subtle icon sizing */
.section-title { font-size: 1.2rem; }
