/* Base Styles */
:root {
    --navy: #112e51;
    --gold: #c1a783;
    --white: #ffffff;
    --light-gray: #f1f1f1;
    --dark-gray: #212121;
    --medium-gray: #5b616b;
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

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

section {
    padding: 3rem 0;
}

/* Header Styles */
header {
    background-color: var(--navy);
    color: var(--white);
    border-bottom: 3px solid var(--gold);
}

.header-top {
    padding: 1rem 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 1rem;
}

.logo-text h1 {
    font-size: 24px;
    margin-bottom: 0;
    color: var(--white);
}

.logo-text h2 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
}

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

.social-links a {
    color: var(--white);
    font-size: 18px;
}

.social-links a:hover {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    margin-left: 1rem;
}

/* Navigation Styles */
.main-nav {
    background-color: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--navy);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--navy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--navy);
}

.btn-text {
    display: inline-block;
    color: var(--navy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.btn-text::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.btn-text:hover::after {
    margin-left: 0.75rem;
}

/* Card Styles */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Document Grid */
.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.document-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.document-image {
    height: 200px;
    overflow: hidden;
}

.document-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.document-content {
    padding: 1.5rem;
}

.document-content h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.view-all {
    margin-top: 2rem;
    text-align: center;
}

/* Podcast Section */
.podcast-preview {
    margin-top: 2rem;
}

.podcast-player {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background-color: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    padding: 1.5rem;
}

.player-image {
    position: relative;
}

.player-image img {
    width: 100%;
    border-radius: 4px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--navy);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: var(--gold);
}

.player-controls {
    margin-top: 1rem;
}

.player-controls audio {
    width: 100%;
}

.more-episodes {
    margin-top: 1.5rem;
    text-align: center;
}

/* Education Section */
.education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.education-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.education-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Footer Styles */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

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

.footer-nav a {
    color: var(--white);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-social h4 {
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-meta {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.footer-meta a {
    color: var(--white);
    font-size: 14px;
}

.footer-meta a:hover {
    color: var(--gold);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .podcast-player {
        grid-template-columns: 1fr;
    }
    
    .player-image {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .header-top .container {
        flex-direction: column;
        text-align: center;
    }
    
    .header-right {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .logo {
        flex-direction: column;
    }
    
    .logo img {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .hero h2 {
        font-size: 28px;
    }
}
