/* ==================== */
/* CONTACT PAGE STYLES */
/* ==================== */

/* Contact Container */
*{
    font-family: 'Nunito', sans-serif;
}
body {
    
    background: #f5fdf7;
    color: #355e3b;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #d6f5d6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .welcome-title {
    flex-grow: 1;
    text-align: center;
}
.navbar {
    width: 100%; /* Ensure navbar takes full width */
}

.menu {
    display: flex;
    justify-content: space-evenly; 
    width: 100%; 
    list-style: none; 
    padding: 0; 
    margin: 0;
}

.menu a {
    color: #355e3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    padding: 10px 15px; /* Add equal padding around each link */
    white-space: nowrap; /* Prevent text wrapping */
}

.menu a:hover {
    color: #6ab04c;
}

/* For mobile menu (hamburger) */
.menu-toggle {
    display: none; /* Hide checkbox */
}

.menu-icon {
    display: none; /* Initially hidden for desktop */
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}
.image-container-contact {
    background: linear-gradient(to bottom right, #d6f5d6, #f5fdf7);
    padding: 80px 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.image-container-contact h1 {
    margin-top: 30px;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

#rby {
    color: #6ab04c;
    font-weight: 900;
}

/* Contact Cards Container */
.contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Contact Cards */
.contact-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
    text-align: center;
    border-top: 5px solid #4e2a84;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.contact-item h2 {
    color: #4e2a84;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.contact-item p {
    color: #355e3b;
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Email Form Card */
.email-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    margin: 40px auto;
    max-width: 600px;
    border-top: 5px solid #6ab04c;
}

.email-form h2 {
    color: #4e2a84;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4e2a84;
    font-weight: 600;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d6f5d6;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6ab04c;
    box-shadow: 0 0 0 3px rgba(106, 176, 76, 0.2);
}

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

.submit-button {
    background: #6ab04c;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: #4e2a84;
    transform: translateY(-2px);
}

.or-divider {
    position: relative;
    margin: 30px 0;
    text-align: center;
    color: #355e3b;
    font-weight: 600;
}

.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #d6f5d6;
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

/* Direct Email Links */
.direct-email {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.email-link {
    display: inline-block;
    padding: 12px 20px;
    background: #f5fdf7;
    color: #4e2a84;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #d6f5d6;
}

.email-link:hover {
    background: #4e2a84;
    color: white;
    transform: translateY(-2px);
}

footer {
    margin-top: 50px;
    background: #d6f5d6;
    padding: 20px;
    font-size: 0.9rem;
    color: #355e3b;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 20px;
}
.footer a{
    text-decoration: none;
    color: #4caf50;
    font-weight: bolder;
}

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