/**
 * STIFF BEAST™ Front Page Styles
 * 首页专用样式 - 复刻原始设计
 */

/* ============ HERO SECTION ============ */
.hero-section {
    position: relative !important;
}

.hero-section .wp-block-cover__background {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%) !important;
}

.hero-section .wp-block-cover__image-background {
    object-position: center !important;
}

/* Hero Product Image Animation */
.hero-section .wp-block-image img {
    filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.4)) !important;
    animation: float-bottle 4s ease-in-out infinite !important;
}

@keyframes float-bottle {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Hero Button Hover Effect */
.hero-section .wp-block-button__link {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.hero-section .wp-block-button__link:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6) !important;
}

/* ============ BENEFITS SECTION ============ */
.benefits-section {
    position: relative !important;
    overflow: hidden !important;
}

/* Benefits Card Hover Effects */
.benefits-section .wp-block-cover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer !important;
}

.benefits-section .wp-block-cover:hover {
    border-color: #FFD700 !important;
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3) !important;
}

.benefits-section .wp-block-cover:hover .wp-block-cover__image-background {
    transform: scale(1.05) !important;
    transition: transform 0.4s ease !important;
}

.benefits-section .wp-block-cover .wp-block-cover__image-background {
    transition: transform 0.4s ease !important;
}

/* Benefits Card Content */
.benefits-section .wp-block-cover__inner-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    height: 100% !important;
    padding-bottom: 20px !important;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 100px 20px !important;
    background: linear-gradient(90deg, #D40000, #FF4500) !important;
    text-align: center !important;
}

.cta-section .cta-headline {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    margin-bottom: 25px !important;
    color: #FFFFFF !important;
}

.cta-section .cta-subline {
    font-size: 1.3rem !important;
    color: #FFFFFF !important;
    margin-bottom: 50px !important;
    opacity: 0.95 !important;
}

.cta-section .wp-block-button__link {
    display: inline-block !important;
    padding: 18px 60px !important;
    background: #FFD700 !important;
    color: #000000 !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    border: none !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.cta-section .wp-block-button__link:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5) !important;
    color: #000000 !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1199px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh !important;
        padding: 40px 15px !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
    
    .benefit-card {
        min-height: 280px !important;
    }
    
    .cta-section .cta-headline {
        font-size: 1.6rem !important;
    }
}
