/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fdfdfd;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(11,107,58,0.6), rgba(11,107,58,0.6)),
              url('images/background.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
}

.logo {
  max-width: 320px;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  margin: 0.5rem 0;
}

p {
  font-size: 1.1rem;
}

/* Inline Hero Image (van + simulator) */
.hero-inline {
  max-width: 640px;
  width: 100%;
  border-radius: 12px;
  margin: 2rem auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  display: block;
}

/* Buttons */
.btn {
  background: #f4d35e;
  color: #111;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover { background: #f1c40f; }

/* Section Headings */
h2 {
  font-family: 'Playfair Display', serif;
  color: #0b6b3a;
  margin-bottom: 1rem;
}

/* Grid Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* About Section */
#about {
  background: #f5faf7;
  padding: 4rem 2rem;
  border-top: 4px solid #0b6b3a;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text .about-lead {
  font-size: 1.25rem;
  font-style: italic;
  color: #0b6b3a;
  border-left: 4px solid #f4d35e;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.highlight-item {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-top: 3px solid #0b6b3a;
}

.highlight-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  color: #0b6b3a;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.highlight-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

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

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* Photo Break */
.photo-break {
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.photo-break-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* Contact Form */
form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  background: #0b6b3a;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover { background: #065f46; }

/* Footer */
footer {
  background: #0b6b3a;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
