/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-top {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 0.75rem 0;
    font-size: 0.85rem;
}

.header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-banner {
    color: #666;
    font-weight: 500;
}

.header-top-links {
    display: flex;
    gap: 1.5rem;
}

.header-top-links a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-top-links a:hover {
    color: #004499;
    text-decoration: underline;
}

.header-main {
    background-color: #1a1a1a;
    border-bottom: 3px solid #FFD700;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: #FFD700;
}

.logo-star {
    font-size: 1.3rem;
    color: #FFD700;
}

.logo-text {
    text-transform: uppercase;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-menu {
    display: flex;
    position: static;
    background-color: transparent;
    border: none;
    width: auto;
    z-index: auto;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #FFD700;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
    display: inline;
}

.dropdown-toggle:hover {
    color: #FFD700;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.6rem;
    margin-left: 0.4rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    list-style: none;
    min-width: 280px;
    border: 1px solid #333;
    border-top: 3px solid #FFD700;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 0.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
    display: block;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: 0;
    border-bottom: 1px solid #333;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #2a2a2a;
    color: #FFD700;
    padding-left: 2rem;
}

.search-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn:hover {
    color: #FFD700;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.4rem;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

    .header-top-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-main {
        flex-direction: column;
    }

    .header-main-content {
        width: 100%;
        flex: none;
        padding: 0.75rem 20px;
        justify-content: space-between;
    }

    .logo {
        flex: 0 0 auto;
    }

    .menu-toggle {
        display: flex;
        flex: 0 0 auto;
    }

    .search-btn {
        display: none;
    }

    .header-right {
        gap: 0.5rem;
        display: flex;
        align-items: center;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        border-bottom: 1px solid #333;
        border-top: 1px solid #333;
        width: 100%;
        z-index: 999;
        margin: 0;
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        border-bottom: 1px solid #333;
        border-top: 1px solid #333;
        width: 100%;
        z-index: 999;
        margin: 0;
        padding: 0;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        align-items: flex-start;
    }

    .nav-menu li {
        border-bottom: 1px solid #FFD700;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 20px;
        text-align: left;
    }

    .dropdown-toggle {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.75rem 20px;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #1a1a1a;
        list-style: none;
        min-width: 280px;
        border: 1px solid #333;
        border-top: 3px solid #FFD700;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1001;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        margin-top: 0.5rem;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu a {
        display: block;
        padding: 0.75rem 1.5rem;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        text-transform: none;
        font-size: 0.9rem;
        letter-spacing: 0;
        border-bottom: 1px solid #333;
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        background-color: #2a2a2a;
        color: #FFD700;
        padding-left: 2rem;
    }

    .header-right {
        gap: 0.5rem;
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .logo a {
        font-size: 0.95rem;
    }
}

/* Lead Story Section */
.lead-story-section {
    background-color: #1a1a1a;
    padding: 3rem 0;
    color: #fff;
}

.lead-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.lead-story-main {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.lead-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-content {
    background: rgba(0,0,0,0.5);
    padding: 1.5rem;
    border-radius: 8px;
}

.lead-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.lead-description {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

/* Featured Video */
.featured-video {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,215,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-video:hover .play-button {
    background: #FFD700;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-label {
    background: #FFD700;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-video h3 {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.featured-video p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

/* Featured Photo */
.featured-photo {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #FFD700;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

/* Spotlight Container */
.spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.spotlight-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.spotlight-item:hover {
    transform: translateY(-5px);
}

.spotlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #FFD700;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.spotlight-item h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    padding: 2rem 1rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* Newsroom Banner */
.newsroom-banner {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 1rem 20px;
    background: rgba(255,215,0,0.1);
    border-left: 4px solid #FFD700;
    border-radius: 4px;
}

.newsroom-label {
    color: #FFD700;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.newsroom-text {
    color: #ccc;
    margin-left: 1rem;
}

/* Section Headers */
.section-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.title-underline {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 60px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

.view-all {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.view-all:hover {
    color: #FFD700;
}

/* Announcements Section */
.announcements-section {
    background-color: #f0f0f0;
    padding: 4rem 0;
    margin-top: 2rem;
}

.announcements-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.announcement-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.announcement-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-body {
    padding: 1.5rem;
}

.announcement-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.announcement-body p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.announcement-date {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Features Section */
.features-section {
    background-color: #fff;
    padding: 4rem 0;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-body {
    padding: 1.5rem;
}

.feature-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* News Section */
.news-section {
    background-color: #f0f0f0;
    padding: 4rem 0;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 1.5rem;
}

.news-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.news-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.5;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ccc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lead-story-container {
        grid-template-columns: 1fr;
    }
    
    .spotlight-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .announcements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .lead-story-container {
        grid-template-columns: 1fr;
    }
    
    .spotlight-container {
        grid-template-columns: 1fr;
    }
    
    .announcements-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .lead-image {
        height: 200px;
    }
}
