/* General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', serif;
    background-color: #757575; /* Dark background */
    color: #FFFFFF; /* White text for readability */
}

h1, h2 {
    font-family: 'Trajan Pro', serif;
    font-weight: bold;
    color: #ffffff; /* White color for titles */
    margin: 0;
    padding-bottom: 2vh;
    margin-top: 4vh;
}

a {
    color: white;
}

/* Header Styling */
header {
    background-color: #231F20; /* Dark header background */
    padding: 10px 20px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Shadow effect */
    position: sticky;
    top: 0;
    z-index: 10;
}

.menu-toggle {
    display: none; /* Hidden on larger screens */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 4px;
    width: 25px;
    background-color: #fff; /* White for visibility */
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
}

header .logo {
    max-width: 100px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header h1 {
    color: #d3d3d3; /* Light grey for logo text */
    font-size: 24px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #a2a2a2; /* Light grey for links */
    text-decoration: none;
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    padding: 5px 10px;
    transition: color 0.3s, background-color 0.3s;
}

nav ul li a:hover {
    background-color: #333333; /* Dark grey hover effect */
    border-radius: 4px;
    color: #FFFFFF; /* White text on hover */
}

.student-btn {
    background-color: #7b7b7b; /* Grey button */
    padding: 10px 20px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.student-btn3 {
    background-color: #231F20; /* Gold button */
    padding: 10px 20px;
    color: #7b7b7b; /* Black text */
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    border: #7b7b7b solid 5px;
    margin-right: -3rem;
}

/* Hero Section Styling */
.hero {
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Full viewport height */
}

.hero-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-content p {
    font-family: 'Times New Roman', serif;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Contact Form Styling */
.contact-form {
    background-color: #5e5e5ea5; /* Semi-transparent white */
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.contact-form label {
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    color: #ffffff; /* White for form labels */
    display: block;
    margin-bottom: 10px;
}

.contact-form input, 
.contact-form textarea, 
.contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #444444; /* Dark grey borders */
    border-radius: 5px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.069); /* Light transparent background */
    color: #000000;
}

.contact-form input:focus, 
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #000000; /* Black border on focus */
    outline: none;
}

.contact-form button.submit-btn {
    background-color: #000000; /* Black submit button */
    color: #c5c5c5; /* Light grey text */
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.contact-form button.submit-btn:hover {
    background-color: #363636; /* Dark grey hover */
}

/* Footer Styling */
footer {
    background-color: #231F20; /* Dark footer background */
    color: #737373; /* Light grey text */
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5); /* Shadow effect */
    display: flex;
}

.words {
    margin-left: 40%;
}

footer a {
    color: #cccccc;
    text-decoration: none;
}

footer a:hover {
    color: #ffffff;
}

footer p {
    margin: 0;
    font-size: 14px;
}

.social {
    display: flex;
    align-items: center;
    margin-left: 20%;
    margin-top: -10px;
}

.SocialLogo {
    height: 40px;
    width: 40px;
}

/* Supporting Documents Section Styling */
.supporting-documents {
    background-color: rgba(94, 94, 94, 0.65); /* Slightly transparent dark background to match form styling */
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Consistent shadow effect */
    color: #FFFFFF;
    margin-bottom: 5rem;
    margin-top: 5rem;
}

.supporting-documents h2 {
    font-family: 'Trajan Pro', serif;
    color: #ffffff; /* White color for heading */
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.supporting-documents p {
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
    color: #d3d3d3; /* Light grey color for text */
}

.supporting-documents ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #ffffff; /* White for the list items */
}

.supporting-documents ul li {
    margin: 5px 0;
}

.supporting-documents dl {
    margin: 20px 0;
}

.supporting-documents dt {
    font-weight: bold;
    font-family: 'Times New Roman', serif;
    color: #ffffff; /* White color for section headers */
    font-size: 18px;
    margin-top: 10px;
}

.supporting-documents dd {
    margin-left: 20px;
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #a2a2a2; /* Light grey color for descriptions */
}

.supporting-documents a {
    color: #7b7b7b; /* Gold-like color to match button styling */
    text-decoration: none;
}

.supporting-documents a:hover {
    color: #ffffff; /* White on hover */
    text-decoration: underline;
}

h3{
    margin-bottom: 3rem;
}


/* Mobile Optimization */
@media screen and (max-width: 768px) {

    header {
        flex-direction: column;
        padding: 15px;
        height: auto;
    }

    .student-btn3 {
        margin-right: 0;
    }

    .words {
        margin-left: 0;
    }

    .menu-toggle {
        display: flex; /* Show hamburger menu on mobile */
    }

    .nav-links {
        display: none; /* Hide links initially on mobile */
        flex-direction: column;
        width: 100%;
        background-color: #333; /* Background for dropdown */
        position: absolute;
        top: 80px; /* Adjust depending on header height */
        left: 0;
        padding: 20px 0;
        z-index: 5;
    }

    .nav-links.show {
        display: flex; /* Show menu when toggled */
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 10px;
        color: #fff;
        text-decoration: none;
    }

    .nav-links li a:hover {
        background-color: #444;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .student-btn {
        margin-top: 20px;
        padding: 10px 20px;
    }

    header h1 {
        font-size: 18px;
    }

    .student-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    nav ul li {
        margin-left: 10px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form button.submit-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}
