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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000; /* Most of the site has dark background sections */
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Bar */
.top-bar {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    font-size: 13px;
    border-bottom: 2px solid #333;
}

.top-bar-left a {
    margin-right: 15px;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: #dfb043;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    color: #dfb043;
    margin-left: 10px;
    font-size: 14px;
}

.social-icons a:hover {
    color: #fff;
}

/* Main Header */
.main-header {
    background-color: #0b2b68;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border-bottom: 3px solid #dfb043;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 100px;
}

.logo img {
    max-height: 90px;
    margin-top: 5px;
}

.main-nav > ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.main-nav a {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #dfb043;
}

/* Hero Section */
.hero-section {
    background: url('header.png') center/contain no-repeat #000;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.3);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content img {
    max-width: 600px;
    width: 90%;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.8));
}

/* Sections */
.section {
    padding: 60px 5%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-gold {
    color: #dfb043;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* Forms */
.form-container {
    background: #111;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #dfb043;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}

.btn {
    background-color: #c11b1b;
    color: #fff;
    padding: 12px 30px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #a91212;
}

/* Footer */
.main-footer {
    background-color: #111;
    border-top: 4px solid #dfb043;
    padding: 60px 5% 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: #dfb043;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    color: #dfb043;
}

.social-icons-footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: #dfb043;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 15px;
    transition: background 0.3s, color 0.3s;
}

.social-icons-footer a:hover {
    background: #dfb043;
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaa;
}

/* Inner Page Header */
.inner-page-header {
    background: url('hero.png') center/contain no-repeat #000;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.inner-page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}

.inner-page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    color: #dfb043;
    text-transform: uppercase;
}

.header-sponsor-text {
    font-weight: bold;
    color: #dfb043;
}
.header-sponsor-text a {
    text-decoration: underline;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 200px;
    list-style: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    padding: 10px 0;
    z-index: 1001;
    border: 1px solid #333;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    margin: 0;
    padding: 0;
}
.dropdown-menu a {
    color: #fff;
    padding: 10px 20px;
    display: block;
    text-transform: none;
    font-weight: normal;
}
.dropdown-menu a:hover {
    background: #dfb043;
    color: #000;
}
.bottom-square-links a:hover {
    background-color: #111;
    color: #fff !important;
}

/* Mobile Responsiveness */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .header-container {
        position: relative;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: #0b2b68;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        padding-bottom: 20px;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav > ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav > ul > li {
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    .main-nav > ul > li > a {
        display: block;
        padding: 15px 5%;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #111;
        display: none;
        padding: 0;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        padding: 12px 10%;
    }
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px;
    }
    .top-bar-left, .top-bar-right {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-section, .inner-page-header {
        height: 30vh;
    }
    .bottom-square-links a {
        flex: 1 1 100% !important;
        border-right: none !important;
        border-bottom: 1px solid #333;
    }
    .page-title-container h1 {
        font-size: 32px;
    }
}

/* Page Title Below Hero */
.page-title-container {
    background-color: #000;
    text-align: center;
    padding: 40px 20px 20px 20px;
}

.page-title-container h1 {
    font-size: 48px;
    color: #dfb043;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
}

/* Page Ender */
.page-ender-container {
    width: 100%;
    text-align: center;
    background-color: #000;
    padding: 60px 0 40px 0;
}

.page-ender-img {
    max-width: 90%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Community Impact Section */
.community-impact-section {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: left;
}

.community-impact-title {
    font-size: 28px;
    color: #dfb043;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: center;
}

.community-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.community-impact-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.community-impact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.community-impact-icon {
    color: #ff3333; /* Red checkmark */
    font-size: 18px;
    margin-top: 5px;
    flex-shrink: 0;
}

.community-impact-content h3 {
    color: #dfb043;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.community-impact-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #eee;
}

@media (max-width: 768px) {
    .community-impact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
