/* ============================================================
   RentAMotorHome.com — Premium RV Domain For Sale
   Plain CSS (no Tailwind, no Font Awesome)
   Color palette: Forest green #2d6a2d, Warm amber #e8a020
   ============================================================ */

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

body {
  font-family: "Open Sans", sans-serif;
  background-color: #f5f5f0;
  color: #333;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  font-size: inherit;
}

/* --- Utility classes --- */
.heading-font {
  font-family: "Montserrat", sans-serif;
}

.text-green {
  color: #2d6a2d;
}

.text-amber {
  color: #e8a020;
}

.center {
  text-align: center;
}

.bg-white {
  background-color: #fff;
}

.bg-sage {
  background-color: #f0f4ec;
}

.bg-amber-light-bg {
  background-color: #fdf6e3;
}

/* --- Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .container,
  .container-narrow {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* --- Navigation --- */
.navbar {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  height: 2rem;
  width: auto;
}

.nav-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3c1a;
}

.nav-badge-wrap {
  display: none;
}

@media (min-width: 768px) {
  .nav-badge-wrap {
    display: flex;
    align-items: center;
  }
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #e8f5e8;
  color: #1a5c1a;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(rgba(20, 50, 20, 0.65), rgba(20, 50, 20, 0.7)),
    url("https://images.unsplash.com/photo-1764749212596-dcd998ebd3c4?auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 56rem;
  padding: 5rem 1.5rem;
}

.hero-heading {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #e0e0d8;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background-color: #e8a020;
  color: #1a3c1a;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background-color: #d08f18;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background-color: #fff;
  color: #2d6a2d;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #f0f4ec;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-full {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* --- Sections --- */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a3c1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #4b5563;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: #2d6a2d;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a3c1a;
}

.feature-text {
  color: #4b5563;
}

/* --- Showcase --- */
.showcase-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .showcase-grid {
    flex-direction: row;
    align-items: center;
  }
}

.showcase-info {
  flex: 1;
}

@media (min-width: 768px) {
  .showcase-info {
    padding-right: 2.5rem;
  }
}

.showcase-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a3c1a;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .showcase-title {
    font-size: 2.25rem;
  }
}

.showcase-text {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #374151;
}

.check {
  color: #2d6a2d;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.showcase-card-wrap {
  flex: 1;
  position: relative;
}

.showcase-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.04);
  border-top: 4px solid #2d6a2d;
}

.showcase-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.premium-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #e8f5e8;
  color: #1a5c1a;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.showcase-domain {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3c1a;
  margin-bottom: 0.5rem;
}

.showcase-availability {
  color: #4b5563;
}

/* --- Price Tag --- */
.price-tag {
  position: relative;
  background: linear-gradient(135deg, #f0f4ec 0%, #fdf6e3 100%);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.price-tag::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f0f4ec;
}

.price-label {
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d6a2d;
}

.showcase-card-footer {
  text-align: center;
}

.escrow-note {
  color: #4b5563;
  margin-bottom: 1rem;
}

/* --- CTA Section --- */
.cta-subtitle {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 2rem;
}

.cta-card {
  max-width: 28rem;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #e8a020;
}

.cta-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a3c1a;
}

.cta-card-text {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.cta-fine-print {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}

/* --- FAQ --- */
.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #d4ddd0;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-item-last {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a3c1a;
}

.faq-answer {
  color: #4b5563;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background-color: #1a3c1a;
  color: #fff;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  color: #e8a020;
}

.footer-text {
  color: #b0c8a8;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #b0c8a8;
  transition: color 0.2s ease;
  font-size: 0.875rem;
}

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

.footer-escrow-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid #3a6b3a;
  border-radius: 0.375rem;
}

.footer-bottom {
  border-top: 1px solid #2d5a2d;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #7da07a;
  font-size: 0.875rem;
}
