/*
Theme Name: The Blummer
Theme URI: https://blummer.com
Author: The Blummer
Author URI: https://blummer.com
Description: Custom WordPress theme for The Blummer - Smart, dry, Boston stand-up comedy
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blummer
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFD700;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

.section {
    padding: 5rem 0;
}

.section-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 2px solid #1a1a1a;
}

.logo-container {
    text-align: center;
}

.site-logo {
    max-width: 200px;
    height: auto;
    display: inline-block;
}

.custom-logo-link {
    display: inline-block;
}

.custom-logo {
    max-width: 200px;
    height: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.banner-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subhead {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* ============================================
   BIO SECTION
   ============================================ */

.bio-section {
    background: #ffffff;
}

.bio-content {
    text-align: center;
}

.bio-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.bio-text {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.bio-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0;
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-section {
    background: #f5f5f5;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.video-player {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    margin-bottom: 2rem;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.5rem;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */

.social-section {
    background: #ffffff;
    text-align: center;
}

.social-title {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFD700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ============================================
   SHOWS SECTION
   ============================================ */

.shows-section {
    background: #f5f5f5;
}

.shows-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.shows-content {
    text-align: center;
    font-size: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 1rem;
}

.footer-social a {
    color: #ffffff;
    margin: 0 1rem;
    font-size: 1rem;
}

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

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   PAGE TEMPLATE STYLES
   ============================================ */

.site-main {
    min-height: 60vh;
}

.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.entry-content p {
    margin-bottom: 1.5rem;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subhead {
        font-size: 1.2rem;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .bio-text {
        font-size: 1.1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subhead {
        font-size: 1rem;
    }
    
    .custom-logo {
        max-width: 150px;
    }
}
