.header {
  padding: 150px 200px;
  min-height: 130vh;
  background-image: url("../assets/headerbgimg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0px 100%;
}
.header h1 {
  color: white;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 110px;
  line-height: 1.1;
}
.header h1 span {
  color: #EAC85D;
}
.header img {
  width: 360px;
  max-width: 100%;
  height: auto;
}

.darren-bio {
  display: flex;
  flex-direction: row;
}
.darren-bio h2 {
  color: #EAC85D;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 130px;
}
.darren-bio p {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  color: #59606E;
  line-height: 125%;
}
.darren-bio .bio-info {
  padding-right: 80px;
  padding-left: 20px;
  padding-bottom: 50px;
}
.darren-bio .titles {
  padding: 26px 0;
}
.darren-bio .second {
  padding: 26px 0;
}
.darren-bio img {
  flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.speak-cta {
  background-color: darkslategrey;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 50px;
}
.speak-cta p {
  color: white;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  width: 75%;
  max-width: 900px;
  text-align: center;
  padding-bottom: 50px;
  line-height: 1.6;
}
.speak-cta h2 {
  color: #EAC85D;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 80px;
  text-align: center;
  padding: 50px 0;
  line-height: 1.2;
}
.speak-cta .button {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  color: white;
  padding: 20px 60px;
  background-color: #59606E;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-block;
}

/* Cards Grid Section */
.cards-grid-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  align-items: center;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  max-width: 1400px;
  width: 100%;
}


.text-box {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;
}

.text-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.photo-box {
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 400px;
}

.photo-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

/* Speaking Box */
.speaking-box .card-icon {
  color: #EAC85D;
  margin-bottom: 24px;
}

.speaking-box h3 {
  color: #2c3e50;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.speaking-box p {
  color: #59606E;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

/* Community Box */
.community-box {
  background: linear-gradient(135deg, #EAC85D 0%, #d4af47 100%);
  position: relative;
}

.community-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/noise.svg");
  opacity: 0.1;
  pointer-events: none;
}

.community-box > * {
  position: relative;
  z-index: 2;
}

.community-box .card-icon {
  color: #2c3e50;
  margin-bottom: 24px;
}

.community-box h3 {
  color: #2c3e50;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.community-box p {
  color: #2c3e50;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

/* Card Buttons */
.card-button {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.card-button.primary {
  background-color: #EAC85D;
  color: #2c3e50;
}

.card-button.primary:hover {
  background-color: #d4af47;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 200, 93, 0.4);
}

.card-button.secondary {
  background-color: #2c3e50;
  color: white;
}

.card-button.secondary:hover {
  background-color: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .card-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .cards-grid-section {
    padding: 60px 30px;
  }

  .text-box {
    padding: 40px 30px;
  }

  .photo-box {
    min-height: 300px;
  }
}

/* Bio Links */
.bio-link {
  color: #EAC85D;
  text-decoration: underline;
  font-weight: 600;
}

.bio-link:hover {
  color: #d4af47;
}

/* Footer */
footer {
  background-color: #2c3e50;
  padding: 60px 50px 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #EAC85D;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(234, 200, 93, 0.3);
}

.footer-text {
  text-align: center;
}

.footer-text p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin: 0;
}

/* Tablet & Mobile Responsive */
@media (max-width: 1024px) {
  .header {
    padding: 100px 60px;
    min-height: 100vh;
  }

  .header h1 {
    font-size: 70px;
  }

  .header img {
    width: 280px;
  }

  .darren-bio {
    flex-direction: column;
  }

  .darren-bio img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .darren-bio .bio-info {
    padding: 40px 60px;
  }

  .darren-bio h2 {
    font-size: 90px;
  }

  .darren-bio p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 80px 30px;
    min-height: 80vh;
  }

  .header h1 {
    font-size: 48px;
  }

  .header img {
    width: 200px;
  }

  .darren-bio .bio-info {
    padding: 30px;
  }

  .darren-bio h2 {
    font-size: 60px;
  }

  .darren-bio p {
    font-size: 16px;
  }

  .speak-cta {
    padding: 80px 30px;
  }

  .speak-cta h2 {
    font-size: 48px;
  }

  .speak-cta p {
    width: 100%;
    font-size: 18px;
  }

  .speak-cta .button {
    padding: 16px 40px;
    font-size: 18px;
  }

  footer {
    padding: 40px 30px 30px;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 60px 20px;
  }

  .header h1 {
    font-size: 36px;
  }

  .header img {
    width: 160px;
  }

  .darren-bio .bio-info {
    padding: 20px;
  }

  .darren-bio h2 {
    font-size: 48px;
  }

  .darren-bio p {
    font-size: 15px;
  }

  .speak-cta {
    padding: 60px 20px;
  }

  .speak-cta h2 {
    font-size: 36px;
  }

  .speak-cta p {
    font-size: 16px;
  }

  .speak-cta .button {
    padding: 14px 32px;
    font-size: 16px;
  }

  .cards-grid-section {
    padding: 60px 20px;
  }

  .text-box {
    padding: 30px 20px;
  }

  .text-box h3 {
    font-size: 26px;
  }

  .text-box p {
    font-size: 14px;
  }

  .card-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  footer {
    padding: 30px 20px 20px;
  }

  .footer-logo img {
    width: 120px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(50px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 30px 40px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  color: #EAC85D;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 32px;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #59606E;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #EAC85D;
}

.modal-body {
  padding: 30px 40px 40px;
}

.modal-lead {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #59606E;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.extra-spacing {
  margin-top: 30px;
}

.form-group label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #59606E;
  margin-bottom: 8px;
}

.req {
  color: #e74c3c;
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #EAC85D;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkrow {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.checkrow label {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  gap: 6px;
}

.checkrow input[type="checkbox"],
.checkrow input[type="radio"] {
  width: auto;
  margin: 0;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.btn-primary {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: white;
  background-color: #59606E;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #4a5058;
}

.btn-primary:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.btn-ghost {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #59606E;
  background-color: transparent;
  padding: 12px 30px;
  border: 2px solid #59606E;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background-color: #59606E;
  color: white;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-align: center;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.error-message {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 5px;
  display: none;
}

.form-group.field-error input,
.form-group.field-error textarea {
  border-color: #e74c3c;
}

.form-group.field-error .error-message {
  display: block;
}

.loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .modal-header,
  .modal-body {
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .checkrow {
    flex-direction: column;
    gap: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
