/* style.css for Split Layout Template - Aria Vencora */

/* Base styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #333;
}

/* Split hero section: image left, text right */
.split-hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

/* Image side styling */
.image-side {
  flex: 1;
  min-width: 300px;
  max-height: 100vh;
  overflow: hidden;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 4px solid #eee; /* subtle separation line */
}

/* Text side styling */
.text-side {
  flex: 1;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
  background-color: #fff;
}

.text-side h1 {
  margin-top: 0;
  font-size: 2.5rem;
  color: #005fa3; /* Primary theme color */
}

.text-side h2 {
  font-weight: normal;
  color: #555;
  margin-bottom: 1rem;
}

.text-side p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Call to action button */
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #005fa3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #00467a;
}

/* Trust Badge Banner Below Text Side */
.trust-badge {
  margin-top: 2rem;
  background-color: #e6f7ff;
  color: #0073b1;
  border-left: 6px solid #005fa3;
  padding: 1rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 600px;
}

.trust-badge i {
  color: #f1c40f;
  font-size: 1.2rem;
}

/* Contact section styling */
section#contact {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Form input fields */
form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

/* Submit button */
button {
  background: #005fa3;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #00467a;
}

/* Map section styles */
#map {
  text-align: center;
  padding: 2rem;
}

.map-image {
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.map-caption {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
}

/* Footer styling */
footer {
  background: #f1f1f1;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* Social icon links */
.social-links {
  margin-bottom: 0.5rem;
}

.social-links a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  text-decoration: none;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .split-hero {
    flex-direction: column;
  }

  .text-side {
    padding: 2rem 1.5rem;
  }
}
