:root {
  --horse-green: #1a472a;
  --horse-beige: #e4ddd3;
  --horse-gold: #f9d45a;
}

body {
  background-color: var(--horse-beige);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.contact-section {
  min-height: 100vh;
  position: relative;
}

.green-header {
  background-color: var(--horse-green);
  height: 250px;
  width: 100%;
  position: relative;
}

/* The Shield Shape */

.shield-container {
  background-color: var(--horse-green);
  width: 320px;
  height: 400px;
  position: relative;
  z-index: 10;
  border-bottom-left-radius: 50% 30%;
  border-bottom-right-radius: 50% 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.logo-placeholder {
  text-align: center;
  color: var(--horse-gold);
}

.hcm-text {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  margin-top: -10px;
}

.horse-club {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Form Styling */

.contact-form-container {
  max-width: 500px;
  /*margin-left: auto;*/
}

.form-control {
  background-color: #f8f9fa;
  padding: 0.75rem 1.25rem;
}

.form-control:focus {
  background-color: #fff;
  border-color: var(--horse-green);
  box-shadow: 0 0 0 0.25rem rgba(26, 71, 42, 0.1);
}

.btn-green {
  background-color: var(--horse-green);
  color: white;
  border: none;
  transition: all 0.3s;
}

.btn-green:hover {
  background-color: #245d37;
  color: white;
  transform: translateY(-2px);
}

/* Tagline */

.tagline {
  color: #556b2f;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
}

.social-icons a {
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .green-header {
    height: auto;
    padding-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .shield-container {
    width: 250px;
    height: 300px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    margin-left: 0;
    max-width: 100%;
  }
}

#form-ctrl {
  display: none;
}

