/*
 Theme Name: Bumbo Boom
 Author: Your Name
 Version: 1.0
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #101010;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Header */
header {
    background: #ffee58;
    min-height: auto;
    position: relative;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.header-logo {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    max-width: 150px;
    height: auto;
}

.header-text {
    display: inline-block;
}

.header-text h1 {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    color: #000;
    margin-bottom: 1rem;
}

.header-text p {
    font-family: 'VT323', monospace;
    font-size: 2rem;
    color: #000;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Promo Section */
.promo {
    background-color: #181818;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promo .card {
    background: #262626;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    position: relative;
    min-height: 350px;
}

.promo .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.2);
}

.promo .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.promo .card-video {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    top: 0;
    left: 0;
}

.promo .card:hover .card-image {
    display: none;
}

.promo .card:hover .card-video {
    display: block;
}

.promo .card:hover h3,
.promo .card:hover p {
    display: none;
}

.promo h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: #ffee58;
    margin: 1rem 0 0.5rem;
}

.promo p {
    font-size: 1rem;
    color: #ccc;
    padding: 0 1rem 1rem;
}

/* Videos Section */
.videos {
    background: #0e0e0e;
    padding: 4rem 2rem;
    text-align: center;
}

.videos h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: #ffee58;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.videos iframe {
    max-width: 100%;
    width: 800px;
    height: 450px;
    border: 4px solid #ffee58;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
    margin: 0 auto;
    display: block;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: #bbb;
    text-align: center;
    padding: 3rem 1rem;
    font-size: 1rem;
    border-top: 2px solid #ffee58;
}

footer p {
    margin: 0;
    font-family: 'VT323', monospace;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        min-height: 200px;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .header-text h1 {
        font-size: 3rem;
    }

    .header-text p {
        font-size: 1.5rem;
    }

    .promo {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
    }

    .promo .card {
        min-height: 300px;
    }

    .videos iframe {
        width: 100%;
        height: 300px;
    }

    .header-logo {
        position: static;
        transform: none;
        margin-bottom: 1rem;
    }

    .header-text {
        text-align: center;
    }
}

.videos.archive .week-block {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #262626;
    border-radius: 10px;
}

.videos.archive .week-block h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #ffee58;
    margin-bottom: 1rem;
}

.videos.archive .week-block ul {
    list-style: none;
    padding: 0;
}

.videos.archive .week-block li {
    font-size: 1rem;
    color: #ccc;
    padding: 0.5rem 0;
}

.videos .archive-link {
    text-align: center;
    margin-top: 2rem;
}

.videos .archive-link a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffee58;
    color: #000;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.videos .archive-link a:hover {
    background: #ffd700;
}

.videos.archive .pagination {
    text-align: center;
    margin-top: 2rem;
}

.videos.archive .pagination button {
    padding: 0.5rem 1rem;
    background: #ffee58;
    color: #000;
    border: none;
    border-radius: 5px;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: background 0.3s ease;
}

.videos.archive .pagination button:hover {
    background: #ffd700;
}

header .home-link {
    text-align: center;
    margin-top: 1rem;
}

header .home-link a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffee58;
    color: #000;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

header .home-link a:hover {
    background: #ffd700;
}