.cinematographic_hero_container {
    position: relative;
    width: 100%;
    height: 85vh;
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Michroma', sans-serif;
   
}

.dark_grid_background_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

.studio_camera_equipment_setup {
    position: absolute;
    bottom: 8%;
    right: 12%;
    width: 450px;
    height: 400px;
    transform: perspective(1200px) rotateY(-12deg) rotateX(3deg);
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
    animation: professional_camera_float 7s ease-in-out infinite;
}

.professional_camera_scene_wrapper img {
    position: relative;
    top: -40%;
    left: 15%;
    width: 900px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    z-index: -1;
}

.text_content_overlay_wrapper {
    position: relative;
    z-index: 15;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 80px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.primary_headline_typography {
    font-family: 'Michroma', sans-serif;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 60px;
    max-width: 1700px;
    text-shadow: 
        0 0 30px rgba(0, 0, 0, 0.8),
        0 5px 20px rgba(0, 0, 0, 0.9);
}

.highlighted_alive_word_accent {
    color: #FFD700;
}

.descriptive_subtitle_paragraph {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin-bottom: 70px;
    max-width: 520px;
    font-weight: 300;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.portfolio_call_to_action_button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #ffffff;
    padding: 22px 45px;
    border-radius: 60px;
    text-decoration: none;
    font-family: 'Inter', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.portfolio_call_to_action_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.portfolio_call_to_action_button:hover::before {
    left: 100%;
}

.portfolio_call_to_action_button:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.button_arrow_icon_circle {
    width: 38px;
    height: 38px;
    background: #FFD700;
    border: 2px solid #000000;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 900;
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

@keyframes dramatic_red_pulse {
    0% { 
        opacity: 0.8;
        transform: scale(1);
    }
    100% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes professional_camera_float {
    0%, 100% { 
        transform: perspective(1200px) rotateY(-12deg) rotateX(3deg) translateY(0px);
    }
    50% { 
        transform: perspective(1200px) rotateY(-12deg) rotateX(3deg) translateY(-8px);
    }
}

/* Large desktop adjustments */
@media (max-width: 1400px) {
    .studio_camera_equipment_setup {
        width: 380px;
        height: 340px;
        right: 8%;
    }
    
    .professional_camera_scene_wrapper img {
        width: 750px;
        height: 500px;
    }
}
@media (max-width: 1200px) {
    .cinematographic_hero_container {
        flex-direction: column;
        justify-content: flex-start;
        height: 110vh;
        min-height: 110vh;
        
    }
}

/* Tablet view - Improved layout and sizing */
@media (max-width: 1024px) {
    .cinematographic_hero_container {
        flex-direction: column;
        justify-content: flex-start;
        height: 85vh;
        min-height: 95vh;
    }
    
    .text_content_overlay_wrapper {
        padding: 60px 40px 30px 40px;
        height: auto;
        min-height: 50vh;
        justify-content: center;
        align-items: center;
        text-align: center;
        order: 1;
        background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.7) 100%);
        flex: 0 0 auto;
    }
    
    .primary_headline_typography {
        font-size: 2.8rem;
        line-height: 1.3;
        margin-bottom: 25px;
        letter-spacing: 3px;
        max-width: 100%;
    }
    
    .descriptive_subtitle_paragraph {
        font-size: 1rem;
        margin-bottom: 35px;
        max-width: 600px;
        line-height: 1.7;
    }
    
    .portfolio_call_to_action_button {
        margin-bottom: 0;
        padding: 20px 40px;
        font-size: 1rem;
    }
    
    /* Camera image section - better positioning */
    .studio_camera_equipment_setup {
        position: relative;
        order: 2;
        width: 100%;
        height: 50vh;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: auto;
        right: auto;
        top: auto;
        left: auto;
        transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
        animation: professional_camera_float 7s ease-in-out infinite;
    }
    
    .studio_camera_equipment_setup img {
        width: 500px;
        height: 380px;
        object-fit: cover;
        border-radius: 15px;
        position: relative;
        top: 0;
        left: 0;
    }
    
    .professional_camera_scene_wrapper img {
        position: relative;
        top: 0;
        left: 0;
        width: 500px;
        height: 380px;
        object-fit: cover;
        border-radius: 15px;
    }
}

/* Mobile view - Optimized for small screens */
@media (max-width: 768px) {
    .cinematographic_hero_container {
        flex-direction: column;
        height: 85vh;
        min-height: 85vh;
        justify-content: flex-start;
    }
    
    .text_content_overlay_wrapper {
        padding: 40px 25px 20px 25px;
        height: auto;
        min-height: 55vh;
        justify-content: center;
        align-items: center;
        text-align: center;
        order: 1;
        background: linear-gradient(180deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.88) 80%, rgba(0,0,0,0.75) 100%);
        flex: 0 0 auto;
    }
    
    .primary_headline_typography {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 20px;
        letter-spacing: 2px;
        max-width: 100%;
    }
    
    .descriptive_subtitle_paragraph {
        font-size: 0.95rem;
        margin-bottom: 30px;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .portfolio_call_to_action_button {
        padding: 18px 35px;
        font-size: 0.95rem;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .studio_camera_equipment_setup {
        position: relative;
        order: 2;
        width: 100%;
        height: 45vh;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: auto;
        right: auto;
        top: auto;
        left: auto;
        transform: perspective(800px) rotateY(-6deg) rotateX(1deg);
        animation: professional_camera_float 7s ease-in-out infinite;
    }
    
    .studio_camera_equipment_setup img {
        width: 400px;
        height: 300px;
        object-fit: cover;
        border-radius: 12px;
        position: relative;
        top: 0;
        left: 0;
    }
    
    .professional_camera_scene_wrapper img {
        position: relative;
        top: 0;
        left: 0;
        width: 400px;
        height: 300px;
        object-fit: cover;
        border-radius: 12px;
    }
    
    .button_arrow_icon_circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .text_content_overlay_wrapper {
        padding: 30px 20px 15px 20px;
        min-height: 50vh;
    }
    
    .primary_headline_typography {
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 1.4;
        margin-bottom: 18px;
    }
    
    .descriptive_subtitle_paragraph {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .portfolio_call_to_action_button {
        padding: 16px 30px;
        font-size: 0.9rem;
        gap: 12px;
    }
    
    .studio_camera_equipment_setup {
        height: 40vh;
        transform: perspective(600px) rotateY(-4deg) rotateX(1deg);
    }
    
    .studio_camera_equipment_setup img,
    .professional_camera_scene_wrapper img {
        width: 320px;
        height: 240px;
        border-radius: 10px;
    }
    
    .button_arrow_icon_circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .text_content_overlay_wrapper {
        padding: 25px 15px 10px 15px;
    }
    
    .primary_headline_typography {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }
    
    .descriptive_subtitle_paragraph {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .portfolio_call_to_action_button {
        padding: 14px 25px;
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .studio_camera_equipment_setup {
        height: 35vh;
    }
    
    .studio_camera_equipment_setup img,
    .professional_camera_scene_wrapper img {
        width: 280px;
        height: 210px;
    }
    
    .button_arrow_icon_circle {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}