/*
Theme Name: VideoLA
Description: Clean video sharing theme for VideoLA.us - Patriots Unite Videos
Version: 1.0
Author: VideoLA Team
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f1419;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    padding: 10px 0;
    border-bottom: 1px solid #4a5568;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.site-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.site-logo .flag {
    margin-right: 8px;
}

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

.main-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.2s;
}

.main-nav a:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #ffffff;
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e0;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: rgba(26, 32, 44, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #4a5568;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #667eea;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.post-title a {
    color: #ffffff;
    text-decoration: none;
}

.post-title a:hover {
    color: #667eea;
}

.post-meta {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-content {
    color: #cbd5e0;
    margin-bottom: 20px;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 85, 104, 0.3);
}

.post-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.2s;
}

.read-more:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #ffffff;
}

/* Video Embeds */
.video-embed {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.video-embed iframe {
    width: 100%;
    height: 315px;
    border: none;
}

/* Single Post */
.single-post {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 32, 44, 0.8);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #4a5568;
}

.single-post h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.single-post .post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #3498db;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-subtitle {
    color: #bdc3c7;
    font-size: 16px;
    margin-bottom: 30px;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .main-nav ul {
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .single-post {
        padding: 25px;
    }
    
    .single-post h1 {
        font-size: 2rem;
    }
}

/* WordPress Core Styles */
.alignleft { 
    float: left; 
    margin-right: 20px; 
}

.alignright { 
    float: right; 
    margin-left: 20px; 
}

.aligncenter { 
    display: block; 
    margin: 0 auto; 
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption-text {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: 5px;
}
