/* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    color: white;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.nav-links {
    display: flex;
    align-items: center;
}

.logo-left {
    height: 65px;
    margin-right: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* RIGHT SIDE */
.right-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.right-logos img {
    height: 65px;
}

/* ===== HERO ===== */
.hero {
    height: 500px;
    background: url("banner.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
}

/* ===== CONTENT ===== */
.content {
    padding: 40px 20px;
    max-width: 960px;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.content h2 {
    color: #4CAF50;
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(to right, #4CAF50, #8BC34A);    
    padding: 40px 20px;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: #333;
    padding: 10px;
    display: block;
    text-decoration: none;
    font-size: 13px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.footer-left {
    max-width: 400px;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-right img {
    height: 80px;
}

.itb-wrapper {
    position: relative;
}

.year-flyout {
    display: none;
    position: absolute;
    left: 180px;
    top: 0;
    background: white;
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 4px;
}

.itb-wrapper:hover .year-flyout {
    display: block;
}

.year-flyout a {
    color: #333;
    padding: 10px;
    display: block;
    text-decoration: none;
    font-size: 13px;
}

.year-flyout a:hover {
    background-color: #f1f1f1;
}

.bid-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.bid-title {
    color: #1b1d1b;
    font-weight: bold;
}

.back-link {
    margin-bottom: 20px;
}

.back-link a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.back-link a:hover {
    text-decoration: underline;
}
