    /* --- SOFIA PRO SOFT FONT FAMILY --- */

    /* REGULAR - For paragraphs and general text */
    @font-face {
        font-family: 'SofiaPro';
        src: url('Fontspring-DEMO-SofiaProSoftReg.otf');
        font-weight: 400;
        font-style: normal;
    }

    /* MEDIUM - For navigation and sub-headers */
    @font-face {
        font-family: 'SofiaPro';
        src: url('Fontspring-DEMO-SofiaProSoftMed.otf');
        font-weight: 500;
        font-style: normal;
    }

    /* BOLD - For buttons and main titles */
    @font-face {
        font-family: 'SofiaPro';
        src: url('Fontspring-DEMO-SofiaProSoftBold.otf');
        font-weight: 700;
        font-style: normal;
    }

    /* ITALIC - (Optional) if you want slanted text */
    @font-face {
        font-family: 'SofiaPro';
        src: url('Fontspring-DEMO-SofiaProSoftRegit.otf');
        font-weight: 400;
        font-style: italic;
    }

    /* --- GLOBAL APPLICATION --- */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'SofiaPro', sans-serif; /* This applies it to the WHOLE site */
        -webkit-font-smoothing: antialiased;
    }




    header {
        display: flex;            /* Enables Flexbox */
        justify-content: center;   /* Centers items horizontally */
        align-items: center;       /* Centers items vertically */
        padding: 20px 0;           /* Adds some breathing room top and bottom */
        width: 100%;
    }

    .navbar {
        display: flex;
        flex-direction: column; 
        align-items: center;    
        width: 100%;
    }

    .nav-links{
        display: flex;          /* The magic command for horizontal rows */
        flex-direction: row;    /* Ensures they stay in a row */
        justify-content: center; /* Centers the whole group of buttons */
        gap: 20px;              /* Adds space between the buttons */
        list-style: none;       /* Removes the bullet points */
        padding: 0;
        margin: 20px 0;         /* Adds space between logo and buttons */
    }
    .logo {
        height: 80px;    
        width: auto;    
        display: block;
        align: center;
    }

    .nav-logo {
        height: 80px;              /* Keeps the size we set earlier */
        width: auto;
    }

    /* Modified from Uiverse.io by barisdogansutcu */ 
    .musicland-btn {
    padding: 12px 30px; /* Slightly smaller for a navbar */
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    background-color: white;
    color: #1a237e; /* MusicLand Blue */
    box-shadow: rgb(0 0 0 / 10%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none; /* Removes link underline */
    display: inline-block;
    transition: all 0.5s ease;
    }

    .musicland-btn:hover {
    letter-spacing: 3px;
    background-color: #1a237e; /* MusicLand Blue */
    color: #ffff00;           /* MusicLand Yellow */
    box-shadow: rgb(26 35 126 / 50%) 0px 7px 29px 0px;
    }

    .musicland-btn:active {
    letter-spacing: 3px;
    background-color: #1a237e;
    color: #ffff00;
    box-shadow: 0px 0px 0px 0px;
    transform: translateY(5px); /* Gentle press effect */
    transition: 100ms;
    }

   .home2 {
    width: 80%;
    height: 450px;
    
    /* 1. Gunakan object-fit cover seperti sebelumnya */
    object-fit: cover;
    
    /* 2. Geser fokus gambar sedikit ke atas/kiri agar pojok kanan bawah terpotong */
    object-position: center 20%; 
    
    /* 3. ZOOM sedikit gambarnya (misal 1.1x atau 110%) agar watermark keluar dari frame */
    transform: scale(1.1);
    
    /* 4. Pastikan container induknya memiliki overflow: hidden */
    display: block;
    margin: 0 auto;
    }

    /* 1. The Container */
    .home1 {
        position: relative; /* This is the "Anchor" for everything inside */
        width: 100%;
        height: 500px;      /* Adjust height to fit your banner */
        overflow: hidden;

    }

    /* 3. The Front Layer (The Text & Button) */
    .hero-overlay {
        position: absolute; /* Lifts this layer up */
        top: 50%;           /* Moves it to the middle vertically */
        left: 50%;          /* Moves it to the middle horizontally */
        transform: translate(-50%, -50%); /* Perfectly centers the box */
        text-align: center;
        width: 100%;
        z-index: 10;        /* Ensures it stays on top of the image */
    }

    .hero-overlay h1 {
        color: #ffff00;     /* MusicLand Yellow */
        font-size: 2.5rem;
        /* This adds a 1px solid blue border around every letter */
        -webkit-text-stroke: 1.5px #1a237e; 
        
        /* Keep your shadow to make it "glow" */
        text-shadow: 5px 5px 20px rgba(0,0,0,0.5); 
    }

    .hero-overlay p {
        color:white;
        font-size: 2rem;
        -webkit-text-stroke: 0.7px #000000; 
        margin-bottom: 20px;
    }

    /* From Uiverse.io by mrhyddenn */ 

    .button1 {   
    display: inline-flex;    
    align-items: center;     /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    gap: 20px;               
    padding: 25px 50px;      
    border-radius: 50px;     
    background: #ffff00;     
    color: #1a237e;          
    text-decoration: none; 
    font-size: 18px;         /* Size of your Free Trial text */
    font-weight: 800;
    text-transform: uppercase;
    
    /* THIS IS THE SECRET */
    line-height: 0;          /* Removes the font's invisible extra space */
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    }

    .WA {
    width: 24px;   
    height: 24px;
    display: inline-block;
    
    /* THE ALIGNMENT NUDGE */
    /* If the logo is too low, use a negative number like -2px or -3px */
    /* If the logo is too high, use a positive number like 2px */
    transform: translateY(-2px); 
    transform: translateX(9px); 
    object-fit: contain;
    }


    .button1:hover {
    background: #1a237e;     /* Swaps to Blue on hover */
    color: #ffffff;          /* Text turns White */
    box-shadow: 0 0 20px rgba(68, 73, 131, 0.4);
    box-shadow: 0 0 30px 5px rgba(69, 115, 145, 0.815);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    }

    .button1:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
    }

    .button1::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    }

    @keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        left: 100%;
    }
    }

    .button1:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
    }

    .card {
    position: absolute;   /* This lets it float anywhere in the banner */
    top: 20px;            /* 20px down from the top edge */
    right: 20px;          /* 20px in from the right edge */
    
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;            /* Slightly tighter gap looks better in a corner */
    background-color: transparent;
    padding: 10px;
    z-index: 100;         /* Ensures it stays on top of the banner image */
    }

    .socialContainer {
    width: 45px; /* Sized to look good on top */
    height: 45px;
    background-color: #1a237e; /* Musicland Blue instead of the original purple */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: 0.3s;
    border-radius: 50%; /* Circle shape */
    }

    /* Hover Colors */
    .containerOne:hover { background-color: #d62976; transform: scale(1.2); } /* IG Pink */
    .containerTwo:hover { background-color: #ff0000; transform: scale(1.2); } /* YouTube Red */
    .containerFour:hover { background-color: #128c7e; transform: scale(1.2); } /* WA Green */

    .socialSvg {
    width: 18px; /* Perfectly sized for the circles */
    }

    .socialSvg path {
    fill: rgb(255, 255, 255);
    }

    /* The cool slide-in animation you liked */
    .socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
    }

    @keyframes slide-in-top {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
    }


    .about-section {
        padding: 80px 0; /* Memberi jarak (Enter) atas dan bawah section */
        background-color: #ffffff;
    }

    .container-ef {
        max-width: 800px;  /* Batasi lebar teks (seperti di web EF) */
        margin-left: 8%;
        margin-right: auto;
        padding: 0 20px;   /* Agar di HP teks tidak nempel ke pinggir layar */
        text-align: left;  /* Tulisan tetap rata kiri sesuai contoh EF */
    }

    .container-ef h2 {
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .container-ef p {
        font-size: 20px;
        line-height: 1.6; /* Memberi jarak antar baris kalimat agar enak dibaca */
        color: #333;
    }

   /* --- SECTION CONTAINER --- */
.programs-section {
    padding: 50px 9%; /* Tambah padding atas agar tidak terlalu mepet */
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Jarak antar kartu sedikit diperlebar */
}

/* --- CARD STYLE --- */
.program-card {
    border-radius: 25px; /* Lebih rounded agar modern */
    padding: 40px;
    position: relative;
    
    /* UBAH INI: Agar gambar besar tidak terpotong */
    overflow: visible; 
    
    color: white;
    min-height: 280px; /* Sedikit lebih tinggi agar proporsional */
    transition: all 0.3s ease;
    z-index: 1;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- TEXT STYLE --- */
.program-card h2 {
    font-size: 36px;
    margin: 0;
    position: relative;
    z-index: 10; /* Biar tulisan di depan gambar */
}

.program-card .age {
    font-size: 20px;
    margin-top: 5px;
    opacity: 0.9;
    position: relative;
    z-index: 10;
}

/* --- BUTTON STYLE --- */
.learn-more {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    z-index: 10; /* KRUSIAL: Agar tombol bisa diklik dan tidak tertutup gambar */
    transition: all 0.3s ease;
}

.learn-more:hover {
    background: white;
    color: #333;
}

/* --- IMAGE STYLE (YANG KAMU TANYAKAN) --- */
.program-img {
    position: absolute;
    
    /* LEDAKKAN UKURANNYA DI SINI */
    width: 350px; 
    
    /* POSISI: buat sedikit keluar batas bawah/kanan agar terlihat dinamis */
    bottom: -10px; 
    right: -10px;
    
    pointer-events: none; /* Agar klik pada gambar tembus ke tombol di bawahnya */
    transition: transform 0.4s ease;
}

.program-card:hover .program-img {
    transform: scale(1.1) rotate(-3deg); /* Efek saat di-hover */
}

/* Warna tetap sama */
.pink { background-color: #ff3385; }
.orange { background-color: #ff8533; }
.green { background-color: #85cc33; }
.blue { background-color: #33a2ff; }
.purple { background-color: #b700ff; }
.turqois { background-color: #0cbcb0; }
    
    /* Menghilangkan transisi jika ingin kaku, 
       atau biarkan jika ingin ada efek halus saat hover */
    transition: transform 0.3s ease;
    
    /* Kadang gambar punya margin bawaan, pastikan 0 */
    margin: 0;
    }
    .program-card:hover .program-img {
    transform: scale(1.05);
    }

    /* Responsif untuk HP */
    @media (max-width: 768px) {
        .program-grid {
            grid-template-columns: 1fr; /* Jadi 1 kolom di HP */
        }
    }

    .new1{
        display: flex;          /* Mengaktifkan mode Flexbox */
        flex-wrap: wrap;        /* Membolehkan kotak turun ke bawah jika penuh */
        justify-content: center; /* RAHASIA: Membuat kotak yang di bawah otomatis ke tengah */
        gap: 10px;              /* Jarak antar kotak */
        padding: 30px;
        font-family: sans-serif;
    }

    .new2 {
        width: 45%;             /* Lebar sekitar setengah layar (dikurangi gap) */
        min-width: 300px;        /* Agar di HP tidak terlalu gepeng */
        height: 250px;
        border-radius: 20px;
        padding: 50px;
        color: white;
    }

    .purple{
        background-color: #9b38ff;
    }

    
/* ================= LOCATIONS ================= */

.locations-section {
    padding: 80px 10%;
    background: #f8f9ff;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a237e;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    background: #1a237e;
    color: white;
}

.location-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.location-card span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #ffcc00;
}

/* ================= REVIEWS ================= */

.reviews-section {
    padding: 80px 10%;
    background: white;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: #f1f3ff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
}

.review-card p {
    font-size: 18px;
    margin-bottom: 15px;
}

.review-card h4 {
    color: #ffcc00;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .locations-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


    