/* GLOBAL */
body {
    margin: 0;
    font-family: 'Lora', serif;
    background: #F8F5F0;
    color: #3B3B3B;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HERO */
.hero {
    background: #D7E3F4;
    padding: 70px 20px;
    text-align: center;
}
.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.1rem;
}

/* ABOUT */
.about {
    padding: 70px 0;
}
.about-content {
    display: flex;
    flex-direction: row;       /* Forces image left, text right */
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: nowrap;
}

/* Ensure the image stays on the left with a fixed width */
.about-img {
    width: 350px;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;             /* Prevent image from shrinking */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Text takes the remaining space */
.about-text {
    flex: 1;
}
.about-img {
    width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.about-text h2 {
    font-size: 2rem;
    font-family: 'Merriweather';
}

/* SECTION SUBTEXT */
.section-subtext {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

/* VIDEO SECTION */
.videos {
    padding: 70px 0;
    background: #fff;
}
.slider {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.slides {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    min-width: 100%;
}
.slide iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}
.slider-buttons {
    text-align: center;
    margin-top: 15px;
}
.slider-buttons button {
    background: #B7C4AA;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 6px;
}

/* CONTACT FORM */
.contact {
    padding: 70px 0;
}
.demo-form {
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.demo-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}
.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.btn {
    margin-top: 20px;
    width: 26%;
    padding: 12px;
    background: #6F8969;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
}
.btn:hover {
    background: #5b7056;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #D7E3F4;
    margin-top: 50px;
}

/* --- FORM LAYOUT --- */
.form-row {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.form-group {
    flex: 1;
}

/* Make input boxes smaller and cleaner */
.demo-form input,
.demo-form select,
.demo-form textarea {
    padding: 8px !important;
    font-size: 0.95rem;
    border-radius: 6px;
}

/* Label spacing */
.demo-form label {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: left; /* or center if you prefer */
    }
    .about-img {
    width: 100%;
}
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 30px 35px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  animation: pop 0.3s ease;
}

.modal-box h2 {
  margin: 15px 0 10px;
  font-size: 22px;
}

.modal-box p {
  font-size: 15px;
  color: #555;
}

.modal-box button {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: #4CAF50;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.checkmark {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

@keyframes pop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.g-recaptcha {
    margin: 20px 0;
}
