/*
Theme Name: The Blummer v2
Theme URI: https://blummer.com
Author: The Blummer
Author URI: https://blummer.com
Description: Easy-to-edit WordPress theme for The Blummer - Smart, dry, Boston stand-up comedy. Features t-shirt campaign, video, photo gallery, and simple admin controls.
Version: 2.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: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: #FFD700;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #FFD700;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: #1a1a1a;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: #1a1a1a;
    color: #ffffff;
}

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

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

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

.section {
    padding: 6rem 0;
}

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

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

.site-header {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 3px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.hero-section {
    position: relative;
    height: 650px;
    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.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
}

.hero-headline {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subhead {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ============================================
   T-SHIRT CAMPAIGN SECTION
   ============================================ */

.tshirt-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
    padding: 5rem 0;
    text-align: center;
}

.tshirt-content {
    max-width: 900px;
    margin: 0 auto;
}

.tshirt-headline {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tshirt-subhead {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 500;
}

.tshirt-cta {
    margin-top: 2rem;
}

.tshirt-stats {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.bio-section {
    background: #ffffff;
}

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

.bio-title {
    margin-bottom: 2.5rem;
    font-size: 3rem;
    color: #1a1a1a;
}

.bio-text {
    font-size: 1.3rem;
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    color: #333;
}

.bio-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.video-section {
    background: #f9f9f9;
}

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

.video-title {
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #1a1a1a;
}

.video-player {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

/* ============================================
   PHOTO GALLERY SECTION
   ============================================ */

.gallery-section {
    background: #ffffff;
}

.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #1a1a1a;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.social-title {
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #1a1a1a;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-link:hover {
    background: #FFD700;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

.shows-section {
    background: #ffffff;
}

.shows-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #1a1a1a;
}

.shows-content {
    text-align: center;
    font-size: 1.4rem;
    color: #333;
}

.show-list {
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
}

.show-item {
    padding: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-item:last-child {
    border-bottom: none;
}

.show-date {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.show-venue {
    font-size: 1.1rem;
    color: #555;
}

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

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

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

.footer-contact {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-contact a {
    color: #FFD700;
    font-weight: 600;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-social {
    margin: 2rem 0;
}

.footer-social a {
    color: #ffffff;
    margin: 0 1.2rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-top: 2rem;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-subhead {
        font-size: 1.3rem;
    }
    
    .hero-section {
        height: 450px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .tshirt-headline {
        font-size: 2rem;
    }
    
    .tshirt-subhead {
        font-size: 1.2rem;
    }
    
    .bio-text {
        font-size: 1.15rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tshirt-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
    }
    
    .hero-subhead {
        font-size: 1.1rem;
    }
    
    .custom-logo {
        max-width: 140px;
    }
    
    .tshirt-headline {
        font-size: 1.6rem;
    }
    
    .bio-tagline {
        font-size: 1.4rem;
    }
}
