/* your styles go here */
/* Example site test */

.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
}

.box-image-text .image img {
    max-height: 190px;
    margin: auto;
}

.box-simple {
    min-height: 230px;
}

/* Top Header Bar */

.navbar {
    padding-top: 4rem;
    padding-bottom: 2rem;
    min-height: 124px; 
}

.navbar-brand img {
    margin-top: -40px;
    max-height: 100px;
}

.navbar-nav {
    align-items: center; 
}

.navbar-nav>li>a {
    padding: 12px 20px;
}

/* Carousel */

.owl-carousel img {
    border-radius: 12px; 
}

/* About Page */

.about-page {
    max-width: none;
    /* Let it flow to page margin */
    margin-right: auto;
    padding-bottom: 4rem;
    font-size: 1.5rem;
    line-height: 1.85;
    color: #333;
    text-align: left;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
}

/* Optional: Adjust heading size to match banner styling */
.about-page h2,
.about-page h3 {
    color: #00b3c6;
    font-size: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-weight: 600;
    border-bottom: none;
    padding-bottom: 2rem; 
}

.about-page ul li strong {
    color: #f26522;
    /* Tamarindo orange */
    font-weight: 700; 
}

/* Contact Us */

..contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-size: 1rem;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* Add orange asterisk to labels */
.contact-form label[for]:not([for="optional-field"])::after {
    content: " *";
    color: #f26522;
    /* Tamarindo orange */
    margin-left: 4px;
    font-weight: bold; 
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
}

.contact-form .form-row input {
    flex: 1;
    max-width: 350px;
}

/* Limit width of email field */
.contact-form input[type="email"] {
    max-width: 710px;
}

.contact-form button {
    background-color: #00b3c6;
    color: white;
    border: none;
    padding: 1rem 4rem;
    /* Larger button */
    border-radius: 6px;
    cursor: pointer;
    font-weight: 1000;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 4rem; /* Adds space below the button */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #0092a6;
    transform: scale(1.03);
    /* Slight hover grow effect */ 
}

.honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden; 
}

#form-wrapper {
    min-height: 500px;
    /* or adjust based on form height */
    position: relative;
    transition: opacity 0.4s ease;
}

#thank-you {
    display: none;
    text-align: center;
    padding-top: 2rem;
    font-size: 2rem;
    line-height: 1.6; 
    font-weight: 600;
    text-align: left;
    max-width: 800px;
    /* match your form width */
    margin-right: auto;
}

.job-meta {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.job-meta strong {
    font-weight: 600; 
}

.job-categories {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}


.job-application-box {
    border: 1px solid #ddd;
    background: #f9f9f9;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 6px;
    max-width: 600px;
}

.job-application-box .form-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #00b3c6;
}

.job-application-box label {
    font-weight: 600;
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.job-application-box input[type="text"],
.job-application-box input[type="email"],
.job-application-box input[type="tel"],
.job-application-box input[type="file"],
.job-application-box textarea {
    width: 100%;
    padding: 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-sizing: border-box;
}

.job-application-box small {
    font-size: 0.85rem;
    color: #555;
}

.checkbox-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    margin-top: 1.2rem;
    line-height: 1.4;
}

.checkbox-consent input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-wrap label {
    margin-top: 4px;
}

.job-application-box button {
    margin-top: 1.5rem;
    background-color: #00b3c6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.job-application-box button:hover {
    background-color: #0092a6; 
}

/* Add orange asterisk to required field labels */
#apply-form label[for]:not([for="consent"])::after {
    content: " *";
    color: #f26522;
    /* Tamarindo orange */
    font-weight: bold;
    margin-left: 4px;
}

#apply-form label[for="consent"]::after {
    content: " *";
    color: #f26522;
    font-weight: bold;
    margin-left: 4px;
}