body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* HERO */
.hero {
  background: url('images/JV_Exterior Front.jpg') center/cover no-repeat;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.45);
  color: white;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
}

.tagline {
  font-size: 20px;
  margin: 15px 0;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #f4a261;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section.light {
  background: #f9f9f9;
}

/* FEATURES */
.features {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.features li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card p {
  padding: 10px;
  font-size: 14px;
}

/* CONTACT */
.contact-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}