
:root {
    --asu-maroon: #8C1D40;
    --asu-gold: #FFC627;
    --background-light: #F9F9F9;
    --text-dark: #333333;
    --accent-blue: #007BFF;
    --font-heading: 'Georgia', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-light);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-4c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm58-33c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z" fill="%23eeeeee" fill-opacity="0.4" fill-rule="evenodd"/%3E%3C/svg%3E');
}

header {
    background-color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--asu-maroon);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

header .logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

header .logo img.asu-logo {
    height: 60px;
    width: auto;
}

header .logo h1 {
    font-family: var(--font-heading);
    color: var(--asu-maroon);
    margin: 0;
    font-size: 1.8rem;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 2rem;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--asu-gold);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/1600x900/?university,technology') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--asu-gold);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-blue);
    color: white;
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    transform: translateY(-2px);
}

.project-listings, .form-section {
    padding: 4rem 2rem;
    text-align: center;
}

.project-listings h2, .form-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--asu-maroon);
    margin-bottom: 2rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.form-section form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section input, .form-section textarea, .form-section select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.submit-button {
    background-color: var(--asu-maroon);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(140, 29, 64, 0.3);
}

.submit-button:hover {
    background-color: var(--accent-blue);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

footer {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
        margin-top: 1rem;
    }

    header nav ul li {
        margin: 0.5rem 0;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}
