/* =============================================
Priyank Patel
Project 1 - ITWP 1150
============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f2f5;
    color: #1a1a2e;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Overlay Header */
.hero-overlay {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 67, 156, 0.65);
}

.hero-overlay h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 46px;
    color: #ffffff;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* Tile Grid Layout */
.tile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 18px;
    margin-top: 28px;
    background-color: #e2e6ea;
    border-top: 1px solid #cccccc;
}

#footer-nav a {
    color: #0056b3;
    text-decoration: none;
    margin: 0 8px;
    font-size: 14px;
}

#footer-nav a:hover {
    text-decoration: underline;
    color: #003d80;
}