/* Enhanced style.css for Victor Morton-Bruce | Airban GIS Portfolio */

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

header {
  text-align: center;
  background: linear-gradient(135deg, #1E5631, #76B947);
  color: white;
  padding: 70px 20px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 25px;
}

header .button {
  display: inline-block;
  background-color: #ffffff;
  color: #1E5631;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

header .button:hover {
  background-color: #dff6e4;
  transform: translateY(-2px);
}

section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  color: #1E5631;
  margin-bottom: 20px;
  position: relative;
}

section h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #76B947;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card h3 {
  color: #1E5631;
}

.card a {
  display: inline-block;
  margin-top: 15px;
  color: white;
  background-color: #1E5631;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.card a:hover {
  background-color: #2f8f46;
}

.services h3 {
  color: #1E5631;
  margin-top: 25px;
}

.services p {
  max-width: 600px;
  margin: 0 auto 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.contact-form button {
  background-color: #1E5631;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #2f8f46;
  transform: translateY(-1px);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #1E5631;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #2f8f46;
  transform: scale(1.15);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.social-icons svg {
  width: 22px;
  height: 22px;
  fill: white;
}

footer {
  background-color: #1E5631;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }
  section h2 {
    font-size: 1.6rem;
  }
  .card, .contact-form {
    padding: 15px;
  }
  .social-icons a {
    width: 40px;
    height: 40px;
  }
}
.pricing-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background-color: #1E5631;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #2f8f46;
  transform: translateY(-2px);
}

.download-btn {
  background-color: #76B947;
  color: #fff;
}

.download-btn:hover {
  background-color: #4ca24a;
}
/* ===== Cadastral Section ===== */
.cadastral-section {
  background: #f5f5f5;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cadastral-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.cadastral-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
}

.cadastral-text {
  flex: 1;
  min-width: 300px;
}

.cadastral-text h2 {
  color: #1a472a;
  font-size: 2rem;
  margin-bottom: 15px;
}

.cadastral-text p {
  color: #333;
  line-height: 1.6;
}

.cadastral-text .caption {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #1a472a;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #218838;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .cadastral-container {
    flex-direction: column;
    text-align: center;
  }

  .cadastral-image img {
    max-width: 90%;
  }
}
.site-header {
  width: 100%;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}

.header-banner {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #1a472a;
  display: block;
}
/* Mobile banner fallback */
@media (max-width: 768px) {
  .header-banner {
    content: url("header_banner_mobile.png");
    border-bottom: 2px solid #1a472a;
  }
}
.insights-header {
  text-align:center;
  padding:60px 20px;
  background:#f4f6f8;
}

.insights-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:30px;
  padding:40px;
}

.insight-card {
  border:1px solid #ddd;
  padding:25px;
  border-radius:8px;
  background:white;
  transition:0.3s;
}

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

.insight-card a {
  color:#0a58ca;
  font-weight:bold;
  text-decoration:none;
}
