/* WAM Safety - Shared Styles */

/* Header and Navigation */
.header-container {
    margin-bottom: 20px;
}

.site-title {
    font-size: 40px;
    font-family: Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', serif;
    text-align: center;
    margin-bottom: 10px;
}

.site-subtitle {
    font-size: 55px;
    font-family: Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', serif;
    text-align: center;
    margin-bottom: 20px;
}

.navigation {
    text-align: center;
    padding: 15px 0;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
}

.navigation a {
    color: #BC202F;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #8a1a24;
    text-decoration: underline;
}

/* Common Elements */
.shadow-container {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.card-deck {
    margin-bottom: 30px;
}

.card {
    margin-bottom: 20px;
}

.card-title {
    color: #BC202F;
    font-weight: bold;
}

.btn-danger {
    background-color: #BC202F;
    border-color: #BC202F;
}

.btn-danger:hover {
    background-color: #8a1a24;
    border-color: #8a1a24;
}

/* Footer */
.footer {
    background-color: #BC202F;
    color: white;
    padding: 15px 20px;
    text-align: left;
    margin-top: 30px;
}

/* Podcast Section */
.podcast-section {
    text-align: center;
    margin: 30px 0;
}

.podcast-title {
    font-size: 36px;
    color: #BC202F;
    text-align: center;
    margin-bottom: 20px;
}

.podcast-description {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.podcast-platforms {
    color: #BC202F;
    text-align: center;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 20px 0;
}

.podcast-platforms li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.podcast-platforms img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.podcast-platforms a {
    color: #BC202F;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.podcast-platforms a:hover {
    color: #8a1a24;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 30px;
    }
    
    .site-subtitle {
        font-size: 40px;
    }
    
    .navigation a {
        font-size: 16px;
        margin: 0 5px;
    }
    
    .podcast-platforms {
        flex-direction: column;
        gap: 15px;
    }
    
    .podcast-platforms img {
        width: 35px;
        height: 35px;
    }
}

/* About Page Specific Styles */
.about-content {
    padding-left: 20px;
}

.about-content .about {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-content {
        padding-left: 0;
        padding-top: 20px;
    }
    
    .about-content .about {
        font-size: 15px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
} 