﻿/* RESPONSIVE FIXES - REC Indicator, Layout Order, Scroll Button, Hero Title */

/* 1. Fix REC indicator - white text with red dot */
.rec-indicator {
    background: transparent !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: white !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 16px !important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
}

.rec-indicator::before {
    content: '' !important;
    width: 12px !important;
    height: 12px !important;
    background: #ff0000 !important;
    border-radius: 50% !important;
    animation: blink 1.5s infinite !important;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8) !important;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.9);
    }
}

/* 2. Fix responsive layout order - hero-left before camera-viewfinder */
@media (max-width: 1024px) {
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Hero left (info) comes first */
    .hero-left {
        order: 1 !important;
    }

    /* Camera viewfinder comes second */
    .hero-right,
    .camera-viewfinder {
        order: 2 !important;
    }

    /* Ensure proper spacing */
    .hero-container {
        padding-bottom: 120px !important; /* Space for scroll button */
    }
}

/* 3. Fix scroll button z-index and positioning */
.scroll-indicator {
    z-index: 10 !important; /* Above content but below fixed elements */
    bottom: 20px !important;
}

@media (max-width: 1024px) {
    .scroll-indicator {
        bottom: 30px !important;
        z-index: 100 !important; /* Ensure it's above buttons */
    }

    .scroll-indicator svg {
        width: 30px !important;
        height: 30px !important;
    }

    .scroll-indicator span {
        font-size: 12px !important;
    }

    /* Move CTA buttons up if they're overlapping */
    .hero-cta {
        margin-bottom: 80px !important;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px !important;
    }

    .scroll-indicator svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* 4. Make hero-title bigger and bolder on mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(48px, 12vw, 72px) !important; /* Bigger minimum size */
        font-weight: 900 !important; /* Extra bold */
        line-height: 1 !important;
        margin-bottom: 20px !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    }

    .title-line {
        margin-bottom: 10px !important;
    }

    .title-word {
        font-weight: 900 !important;
        letter-spacing: -1px !important; /* Tighter spacing for impact */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(42px, 14vw, 60px) !important; /* Still big on very small screens */
        font-weight: 900 !important;
    }
}

/* Additional fixes for better mobile experience */
@media (max-width: 768px) {
    /* Ensure hero content has proper spacing */
    .hero-container {
        min-height: 100vh !important;
        padding: 80px 20px 100px !important;
    }

    /* Make subtitle also more prominent */
    .hero-subtitle {
        font-size: 18px !important;
        font-weight: 500 !important;
        margin-bottom: 30px !important;
    }

    /* Ensure buttons don't overlap with scroll indicator */
    .hero-cta {
        margin-bottom: 100px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
    }

    .btn {
        width: 100% !important;
        padding: 15px 30px !important;
        font-size: 16px !important;
    }
}

/* Fix for camera viewfinder on mobile */
@media (max-width: 768px) {
    .camera-viewfinder {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
}

@media (max-width: 768px) {
    .hero-video-placeholder {
        display: flex !important;
    }
}
