/*
Theme Name: Anti-Fascist Child Theme
Description: Child theme of Twenty Twenty-Five for anti-fascist activism website
Template: twentytwentyfive
Version: 1.0.0
Author: Anti-Fascist Collective
Text Domain: antifascist-child
*/

/* Parent theme styles are loaded via functions.php */

/* Custom styles for anti-fascist theme */
:root {
    --wp--preset--color--primary: #d32f2f;
    --wp--preset--color--secondary: #1976d2;
    --wp--preset--color--accent: #388e3c;
    --wp--preset--color--dark: #212121;
    --wp--preset--color--light: #f5f5f5;
}

/* Featured video content section */
.featured-video-content {
    background: linear-gradient(135deg, #1976d2 0%, #d32f2f 100%);
    padding: 3rem 2rem 4rem 2rem;
    text-align: center;
    color: white;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-intro h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white !important;
    line-height: 1.2;
}

.video-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.video-container {
    max-width: 900px;
    margin: 2rem auto;
    position: relative;
    padding-bottom: 50.625%; /* Slightly adjusted aspect ratio */
    height: 0;
    overflow: visible;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Call to action buttons */
.cta-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: rgba(255,255,255,0.2);
    color: white !important;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
}

.cta-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    color: white !important;
    text-decoration: none;
}

/* Navigation hover effects */
.main-navigation a:hover {
    background-color: rgba(255,255,255,0.2) !important;
    border-radius: 4px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Footer link hover effects */
.site-footer a:hover {
    color: #d32f2f !important;
    transition: color 0.3s ease;
}

/* Contact form styling */
.contact-form-container {
    margin-top: 2rem;
}

.antifascist-contact-form input,
.antifascist-contact-form select,
.antifascist-contact-form textarea {
    box-sizing: border-box;
}

.antifascist-contact-form input:focus,
.antifascist-contact-form select:focus,
.antifascist-contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

.contact-info h4,
.privacy-notice h4 {
    margin-top: 0;
}

/* Mobile responsive contact form */
@media (max-width: 768px) {
    .contact-form-container .wp-block-columns {
        flex-direction: column;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
}

/* Content sections */
.content-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    color: var(--wp--preset--color--primary);
    border-bottom: 3px solid var(--wp--preset--color--primary);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-video-section h1 {
        font-size: 2rem;
    }
    
    .hero-video-section .subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 80%;
        text-align: center;
    }
}
