/* ============================================================
   MIXING PAGE - HERO MOBILE OPTIMIZATION
   ============================================================ */

@media (max-width: 1024px) {

    /* הגדרות ה-Hero הספציפי לעמוד המיקסינג */
    body section#mixing-hero-section.hero {
        /* 1. מתיחה לגובה מלא של המסך (כולל שורת הכתובת) */
        height: 100svh !important; 
        min-height: 100vh;
        width: 100%;
        
        /* 2. גורם לתמונה למלא את כל הגובה והרוחב בלי חיתוך מוזר */
        background-size: cover !important; 
        
        /* 3. מיקום התמונה: מרכוז מושלם */
        background-position: center center !important; 
        
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    /* החזרת הלוגו של ה-Mixing (ה-Glitch) לגודל המלא שרצית */
    .hero-logo {
        /* גודל מלא כפי שמוגדר ב-CSS הראשי (650px או 750px לפי מה שבחרת) */
        width: 750px !important; 
        max-width: 90%;          /* מגבלה עדינה כדי שלא יגע בקצוות המסך הפיזי */
        height: auto;
        
        /* האנימציה המקורית שלך */
        animation: glitch-effect 3s steps(100) infinite; 
    }

    /* הבטחת השחרה מלאה על כל השטח המתוח */
    body section#mixing-hero-section.hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8) !important;
        z-index: 1;
    }
}

@media (max-width: 768px) {

    body section#mixing-hero-section.hero {
        /* 1. מחזירים ל-Cover כדי שהתמונה תמלא את כל המסך בלי עיוותים */
        background-size: cover !important; 
        
        /* 2. מזיזים את נקודת המיקוד: 
           במקום center (50%), אנחנו אומרים לו להראות את החלק שנמצא ב-25% מצד שמאל.
           זה יחתוך את צד ימין הריק וישאיר אותך ואת הציוד המרכזי בפריים. */
        background-position: 75% center !important; 
        
        height: 100svh !important;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
	}


@media (max-width: 1024px) {

    /* --- כותרת ב-2 שורות: גדולה וקריאה --- */
    .transformation-section .section-title,
    .testimonials-section .section-title {
        font-size: 1.6rem !important; /* גודל מרשים שוב */
        line-height: 1.1 !important;
        white-space: normal !important; /* מאפשר שבירת שורה */
        letter-spacing: 2px !important;
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
		margin-top: -30px;
    }

    /* --- טקסט מתחת לכותרת: קטן וממוקד ל-2 שורות --- */
    .transformation-section .section-text {
        font-size: 0.85rem !important; /* הקטנה של הפונט */
        line-height: 1.3 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        
        /* הרחבת המכיל כדי שהטקסט הקטן ייכנס ב-2 שורות */
        max-width: 320px !important; 
        margin: 0 auto 30px !important;
        padding: 0 15px;
        display: block;
    }

    /* תיקון קל לנגנים שיהיו צמודים יותר לטקסט */
    .transformation-section .tracks-container {
        margin-top: 10px !important;
    }
}

/* התאמה למכשירים צרים מאוד */
@media (max-width: 360px) {
    .transformation-section .section-text {
        max-width: 280px !important;
        font-size: 0.8rem !important;
    }
}