/* BOLT Page Specific Styles */

/* BOLT emphasis styling matching front page playful style */
.bolt-emphasis {
    font-weight: 700;
    font-style: italic;
    position: relative;
    transform: rotate(-1deg);
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #FFD700;
}

/* BOLT link styling for Karpick */
.bolt-karpick-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid transparent;
}

.bolt-karpick-link:hover {
    color: var(--dark);
    border-bottom-color: var(--dark);
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(43, 64, 128, 0.3);
}

.bolt-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
}

.bolt-title-container {
    position: relative;
    width: 100%;
}

.bolt-title {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: -10px;
    margin-left: 5vw;
    position: relative;
    z-index: 2;
}

.bolt-subtitle {
    position: absolute;
    top: 50%;
    right: 10vw;
    font-size: 1rem;
    max-width: 300px;
    line-height: 1.8;
    font-weight: 300;
}

.bolt-image-float {
    position: absolute;
    width: 40vw;
    height: 60vh;
    background-image: url('../images/Bolt_Pedestal_website.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 20%;
    right: 25%;
    transform: rotate(-5deg);
}

/* BOLT Full-Width Showcase Videos */
.bolt-showcase-full {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--dark);
}

.showcase-video-full {
    width: 100%;
    height: 100%;
    position: relative;
}

.showcase-video-full iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Content Blocks - Asymmetric */
.content-block {
    padding: 8vh 10vw;
    position: relative;
}

.content-block.alt {
    /* Removed separate background to maintain gradient unity */
}

.block-number {
    font-size: 10rem;
    font-weight: 900;
    opacity: 0.05;
    position: absolute;
    top: 10vh;
    left: 5vw;
}

.block-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.block-text {
    max-width: 60%;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-left: 20%;
    opacity: 0.9;
}

/* Mobile Layout Fix */
@media (max-width: 768px) {
    /* BOLT Mobile Layout Fix */
    .bolt-hero {
        height: auto;
        flex-direction: column;
        padding: 40px 20px;
        background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    }
    
    .bolt-title-container {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .bolt-title {
        font-size: clamp(4rem, 12vw, 8rem);
        margin-left: 0;
        text-align: center;
        z-index: 3;
        letter-spacing: 0.05em;
    }
    
    .bolt-image-float {
        position: static;
        order: 2;
        width: 80vw;
        max-width: 400px;
        height: 50vh;
        margin: 20px auto;
        transform: rotate(0deg);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .bolt-subtitle {
        position: static;
        order: 3;
        width: 100%;
        max-width: none;
        text-align: center;
        margin-top: 20px;
        font-size: 1.1rem;
        line-height: 1.8;
        padding: 0 20px;
    }

    .block-text {
        max-width: 100%;
        margin-left: 0;
    }
}