/* ---------------------------------- */
/* Chroma Studio & Virtual Production CSS Layout - Light Theme */
/* ---------------------------------- */

.chroma-section {
    background-color: #FAF8F5; /* Warm off-white background matching overall site theme */
    color: #0c0d0e;
    padding: 60px 0;
    position: relative;
    z-index: 15;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Subtle chroma green & gold spotlights in background */
.chroma-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(234, 161, 15, 0.03) 0%, transparent 60%),
        linear-gradient(rgba(234, 161, 15, 0.05) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(234, 161, 15, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

.chroma-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 5;
}

/* Left Column: Viewfinder Visual Showcase */
.chroma-visual-col {
    flex: 0 0 45%;
    position: relative;
}

.chroma-camera-viewfinder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 30px rgba(34, 197, 94, 0.03);
}

.chroma-studio-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    transition: var(--transition-smooth);
}

.chroma-camera-viewfinder:hover .chroma-studio-img {
    filter: brightness(1);
    transform: scale(1.02);
}

/* Floating Play Button Overlay */
.chroma-play-trigger {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chroma-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(234, 161, 15, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(234, 161, 15, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chroma-play-btn svg {
    width: 22px;
    height: 22px;
    margin-left: 4px;
}

.chroma-play-trigger:hover .chroma-play-btn {
    transform: scale(1.1);
    background-color: var(--color-gold-start);
    box-shadow: 0 12px 30px rgba(234, 161, 15, 0.6);
}

/* Viewfinder HUD Overlays */
.hud-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85); /* Keep HUD text visible on camera screen */
    letter-spacing: 0.1em;
    z-index: 2;
}

/* Dark tint overlay on screen to ensure HUD remains highly legible */
.chroma-camera-viewfinder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

.hud-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hud-rec-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ef4444;
    font-weight: 800;
}

.hud-rec-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: dot-blink 1s infinite alternate;
}

.hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.hud-crosshair::before,
.hud-crosshair::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.45);
}

.hud-crosshair::before {
    top: 50%;
    left: -10px;
    right: -10px;
    height: 1px;
}

.hud-crosshair::after {
    left: 50%;
    top: -10px;
    bottom: -10px;
    width: 1px;
}

.hud-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Right Column: Content details */
.chroma-content-col {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.chroma-chip {
    background-color: rgba(234, 161, 15, 0.08) !important;
    border: 1px solid rgba(234, 161, 15, 0.25) !important;
    color: var(--color-gold-start) !important;
    align-self: flex-start !important;
}

.chroma-chip .badge-dot {
    background-color: var(--color-gold-start) !important;
    box-shadow: 0 0 8px rgba(234, 161, 15, 0.4);
}

.chroma-title {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 800;
    color: #0b0c0d;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-top: 15px;
    line-height: 1.15;
}

.highlight-green-glow {
    color: #16a34a; /* Premium darker green for light theme contrast */
    text-shadow: none; /* Removed glow effect for light theme cleanliness */
}

.chroma-desc {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #55585d;
    line-height: 1.6;
    margin: 20px 0 35px 0;
    font-weight: 500;
}

/* Chroma Feature list - 2x2 Clean Grid */
.chroma-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.chroma-feature-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chroma-feature-card:hover {
    background-color: rgba(234, 161, 15, 0.02);
    border-color: rgba(234, 161, 15, 0.2);
    box-shadow: 0 15px 35px rgba(234, 161, 15, 0.05);
    transform: translateY(-3px);
}

/* Icon Container - Gold theme circular */
.chroma-card-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(234, 161, 15, 0.06);
    border: 1px solid rgba(234, 161, 15, 0.15);
    color: var(--color-gold-start);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.chroma-card-svg {
    width: 18px;
    height: 18px;
}

.chroma-feature-card:hover .chroma-card-icon-container {
    background-color: var(--color-gold-start);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(234, 161, 15, 0.3);
}

.chroma-card-text {
    display: flex;
    flex-direction: column;
}

.chroma-feature-title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 800;
    color: #0b0c0d;
    margin: 0 0 8px 0;
    letter-spacing: 0.02em;
}

.chroma-feature-desc {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    color: #55585d;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Outlined Gold Button */
.btn-chroma-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1.5px solid var(--color-gold-start);
    background-color: transparent;
    color: #0b0c0d;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-chroma-book:hover {
    background-color: var(--color-gold-start);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(234, 161, 15, 0.25);
    transform: translateY(-2px);
}

.btn-cal-icon {
    width: 15px;
    height: 15px;
}

.btn-arrow-right {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.btn-chroma-book:hover .btn-arrow-right {
    transform: translateX(4px);
}

.chroma-action-row {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
}

/* Responsive grid modifications */
@media (max-width: 991px) {
    .chroma-section {
        padding: 40px 0;
    }

    .chroma-container {
        flex-direction: column;
        gap: 40px;
    }

    .chroma-visual-col {
        width: 100%;
        flex: none;
    }

    .chroma-content-col {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .chroma-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .chroma-studio-img {
        height: 300px;
    }
}

@keyframes dot-blink {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
