/* Global Resets/Basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background-color: #fafafa;
}

/* Navbar/Header */
.site-header {
    background-color: #1a237e; /* Darker Indigo */
    padding: 0.5rem 1rem;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.brand a {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

/* NEW: Right-side nav links for the Contact link */
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 1rem;
    padding: 0.25rem 0.5rem;
}

    .nav-links a:hover {
        background-color: #303f9f; /* Slightly darker on hover */
        border-radius: 4px;
    }

/* Hero Section */
.hero {
    background: linear-gradient(to right, #283593, #3949ab);
    color: #fff;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.landing-section {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .landing-section h2 {
        margin-bottom: 1rem;
    }

article {
    margin-bottom: 1.5rem;
}

    article h3 {
        margin-bottom: 0.5rem;
    }

/* Footer */
.site-footer {
    background-color: #f5f5f5;
    padding: 1rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 0.5rem;
}

    .footer-links a {
        color: #1a237e;
        text-decoration: none;
        margin: 0 0.5rem;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

footer p {
    color: #555;
    font-size: 0.9rem;
}

/* Contact Form (example) */
form {
    max-width: 500px;
    margin: 1rem auto;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    form div {
        margin-bottom: 1rem;
    }

label {
    display: inline-block;
    width: 70px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: calc(100% - 80px);
    padding: 0.5rem;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    background-color: #3949ab;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    button[type="submit"]:hover {
        background-color: #303f9f;
    }

/************************************************************
    GENERAL LANDING STYLES
************************************************************/
.landing-section ul {
    /* Make bullets align nicely with the main text */
    margin-left: 1.5rem;
    padding-left: 1.2rem; /* ensures bullet points are inside but not too far left */
}

/************************************************************
    SIMPLE RESPONSIVE GALLERY
************************************************************/
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

    .gallery img {
        width: 100%;
        height: 200px; /* unify image heights */
        object-fit: cover; /* fill the box, cropping if necessary */
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        /* Optionally: border: 1px solid #ccc; */
    }

/* If you want a more uniform look with same height:
.gallery img {
    aspect-ratio: 16/9; 
    width: 100%;
    object-fit: cover;
}
*/

/************************************************************
   CONTACT PAGE STYLES
************************************************************/
.contact-section {
    background: #fff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px; /* limit width on larger screens */
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .contact-section h1 {
        margin-bottom: 1rem;
    }

    .contact-section p {
        margin-bottom: 1.5rem;
    }

/* Form container */
.contact-form div {
    margin-bottom: 1rem;
}

/* Labels */
.contact-form label {
    display: block; /* stack label above input */
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Inputs & textarea */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
}

/* Submit button */
.contact-form button[type="submit"] {
    background-color: #3949ab;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

    .contact-form button[type="submit"]:hover {
        background-color: #303f9f;
    }

.alert {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
}

.alert-success {
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
    border: 1px solid #c3e6cb;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .alert-success h2 {
        margin-top: 0;
        font-size: 1.25rem;
    }

    .alert-success p {
        margin: 0;
    }
