/* components/hero.css */

/* ===== Base Container Styles ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-bazzer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ===== Hero Section ===== */
.hero-bazzer {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--hero-bg);
}

/* ===== Hero Columns ===== */
.hero-column {
    position: relative;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-33 {
    width: 33.333%;
}

/* ===== Hero Content ===== */
.hero-text-content {
    max-width: 100%;
}

.animated-text-wrapper {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--heading-color);
}

.dynamic-wrapper {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 500px;
}

/* ===== Buttons ===== */
.hero-buttons-bazzer {
    display: flex;
    gap: 15px;
}

.btn-bazzer {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.btn-bazzer-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-bazzer-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

/* ===== Image Container ===== */
.image-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.influencer-img {
    height: auto;
    max-width: 100%;
    object-fit: contain;
    z-index: 1;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.2);
    transition: transform 0.5s ease;
}

.influencer-img:hover {
    transform: scale(1.02);
}

/* ===== Fun Fact Box ===== */
.fun-fact-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.15);
    z-index: 2;
    min-width: 200px;
    border: 1px solid var(--border-color);
}

.number-wrapper {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.number-wrapper .super {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.fun-fact-box .title {
    font-size: 1rem;
    margin-top: 5px;
    color: var(--text-color);
    opacity: 0.8;
}

/* ===== Right Column ===== */
.right-column-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.video-promo-box {
    background: var(--hero-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.1);
    margin-bottom: 30px;
    max-width: 100%;
    z-index: 2;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.video-promo-box:hover {
    transform: translateY(-5px);
}

.video-button-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2.5rem;
    color: #fa3c01;
    transition: all 0.3s ease;
    padding: 0;
    margin-right: 15px;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-promo-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
}

.video-promo-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    opacity: 0.8;
}

/* ===== Decorative Elements ===== */
.decorative-elements {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 40px;
    padding-bottom: 40px;
}

.circle-img {
    width: 200px;
    height: 200px;
    z-index: 1;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.slider-arrow-container {
    position: absolute;
    left: 120px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-arrow {
    height: 50px;
    width: 30px;
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.arrow-hint {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 15px;
    letter-spacing: 1px;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* ===== Video Modal ===== */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 5% auto;
}

.close-button {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: var(--primary-color);
}

#youtubeFrame {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 8px;
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1200px) {
    .animated-text-wrapper {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .circle-img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 992px) {
    .hero-bazzer {
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-column {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .col-33 {
        width: 100%;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons-bazzer {
        justify-content: center;
    }
    
    .right-column-wrapper {
        align-items: center;
    }
    
    .video-promo-box {
        text-align: center;
    }
    
    .video-button-wrapper {
        justify-content: center;
    }
    
    .influencer-img {
        max-width: 80%;
        margin-top: 40px;
    }
    
    .fun-fact-box {
        right: 0;
        bottom: -30px;
    }
    
    .decorative-elements {
        justify-content: center;
        padding-left: 0;
    }
    
    .slider-arrow-container {
        left: calc(50% + 100px);
        bottom: 40px;
    }
}

@media (max-width: 768px) {
    .animated-text-wrapper {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    #youtubeFrame {
        height: 300px;
    }
    
    .close-button {
        top: -30px;
        right: 0;
    }
    
    .circle-img {
        width: 160px;
        height: 160px;
    }
    
    .slider-arrow-container {
        left: calc(50% + 80px);
    }
}

@media (max-width: 576px) {
    .hero-bazzer {
        padding: 80px 0 40px;
    }
    
    .animated-text-wrapper {
        font-size: 2rem;
    }
    
    .hero-buttons-bazzer {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-bazzer {
        width: 100%;
    }
    
    .fun-fact-box {
        padding: 20px;
        min-width: 180px;
    }
    
    .number-wrapper {
        font-size: 2rem;
    }
    
    .video-promo-box {
        padding: 20px;
    }
    
    .decorative-elements {
        flex-direction: column;
        align-items: center;
    }
    
    .circle-img {
        width: 140px;
        height: 140px;
    }
    
    .slider-arrow-container {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 20px;
    }
}