@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');

/* --- Desktop Layout --- */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Hides mobile elements on big screens */
.mobile-header, #navMenu {
    display: none;
}

.page-center-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    width: 100%;
    padding-top: 5px; 
    box-sizing: border-box;
}

.contact-content {
    width: 100%;
    max-width: 450px;
    text-align: center;
    /* This makes the "|" lines black */
    color: #000000; 
}

/* LINKS: Keeping these blue */
.desktop-links a {
    text-decoration: none;
    color: #007bff;
    margin: 0 5px;
    font-size: 15px;
}

/* HEADINGS: Set to black and allowed to wrap naturally */
h1 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 10px;
    white-space: normal; /* This allows text to wrap when you resize the window */
    word-wrap: break-word;
}

h2 { 
    font-size: 22px; 
    margin-top: 0; 
    margin-bottom: 8px; 
    color: #000000; 
    font-weight: 700;
}

/* PARAGRAPH: Set to black */
p {
    color: #000000;
}

/* --- Mobile View --- */
@media screen and (max-width: 525px) {
    .mobile-header {
        display: flex; 
        align-items: center;
        background-color: #3b7ddd;
        width: 100%;
        padding: 0 15px;
        position: fixed;
        top: 0; left: 0; z-index: 1000;
        height: 50px;
        box-sizing: border-box;
    }

    .mobile-logo { 
        color: white; 
        font-weight: 500; 
        text-align: center;
        width: 100%;
        font-size: 15px; 
    }

    .menu-icon {
        position: absolute; 
        left: 15px;
        z-index: 1001;
    }

    nav#navMenu {
        display: flex; 
        height: 100%;
        width: 85%;
        position: fixed;
        z-index: 2000;
        top: 0; 
        left: -100%; 
        background-color: #ffffff;
        transition: 0.3s;
        flex-direction: column;
        padding-top: 40px;
    }

    .closebtn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 40px; 
        text-decoration: none;
        color: #333;
        line-height: 1;
    }

    nav#navMenu a {
        text-decoration: none;
        padding: 15px 20px;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
    }

    nav#navMenu.active { left: 0; }

    .page-center-wrapper { 
        padding-top: 60px; 
    }
    
    .desktop-links {
        display: none;
    }
}

/* Form & Input Styling (Contact Page) */
.contact-form-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 20px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
}

/* SUBMIT BUTTON: Kept at 16px font size */
#submitBtn {
    background-color: #3b7ddd;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: 700;
    font-size: 16px; 
    transition: transform 0.2s, background-color 0.2s; 
}

#submitBtn:hover {
    background-color: #2a5fb8; 
    transform: scale(1.02); 
    cursor: pointer;
}

/* Hover color for navigation links */
.desktop-links a:hover, nav#navMenu a:hover {
    color: #4c7bd6 !important;
}