/* ==========================================================================
   PUBLIC SOCIAL MEDIA PAGE - SEEDS STARS MONTESSORI (Orange Theme)
   ========================================================================== */
:root {
    --ms-orange: #ff7a00;
    --ms-orange-hover: #e66a00;
    --ms-orange-light: #fff4eb;
    --ms-slate: #1e293b;
}

/* Header Section */
.social-header-bg {
    background: linear-gradient(135deg, #fffdfb 0%, #fff5ed 100%);
    border-bottom: 1px solid #ffebe0;
}
.section-subtitle-orange {
    color: var(--ms-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Grid & Card Layout */
.social-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.08);
    border-color: #ffe0cc;
}

/* Avatar/Logo Platform Wrapper */
.social-avatar-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 5px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Badge Ikon Mini Platform di sudut Avatar */
.platform-badge-icon {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
}

/* Warna Badge Icon Berdasarkan Platform Terpopuler */
.bg-instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}
.bg-youtube {
    background-color: #ff0000;
}
.bg-facebook {
    background-color: #1877f2;
}
.bg-tiktok {
    background-color: #000000;
}
.bg-twitter {
    background-color: #1da1f2;
}
.bg-default {
    background-color: var(--ms-orange);
}

/* Typography */
.social-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ms-slate);
    margin-bottom: 4px;
}
.social-username {
    font-size: 0.95rem;
    color: var(--ms-orange-hover);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Button Kunjungan */
.btn-social-visit {
    background-color: var(--ms-orange);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    margin-top: auto; /* Memaksa tombol sejajar di paling bawah */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-social-visit:hover {
    background-color: var(--ms-orange-hover);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(255, 122, 0, 0.2);
}

/* ==========================================================================
   MOBILE UTILITIES (2 Kolom Rapi di Layar HP)
   ========================================================================== */
@media (max-width: 575.98px) {
    .social-card {
        padding: 20px 15px;
        border-radius: 20px;
    }
    .social-avatar-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    .platform-badge-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    .social-name {
        font-size: 1.05rem;
    }
    .social-username {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    .btn-social-visit {
        font-size: 0.8rem;
        padding: 8px 16px;
        border-radius: 10px;
    }
}

/* ==========================================================================
   PREMIUM NO-BANNER HERO (PENGGANTI BANNER GAMBAR)
   ========================================================================== */
.hero-no-banner {
    position: relative;
    /* Gradasi hangat khas Montessori */
    background: linear-gradient(135deg, #fff4eb 0%, #ffe0cc 100%);
    padding: 100px 0 80px 0;
    overflow: hidden;
    border-bottom: 1px solid #ffd1b3;
}

/* --- Ikon Dekorasi Latar Belakang (Mengambang) --- */
.bg-icon-float {
    position: absolute;
    color: rgba(255, 122, 0, 0.08); /* Warna orange transparan */
    z-index: 1;
    animation: floatAnimation 6s ease-in-out infinite;
}

/* Posisi Ikon-Ikon Tersebar */
.icon-1 {
    top: 10%;
    left: 8%;
    font-size: 7rem;
    animation-delay: 0s;
    transform: rotate(-15deg);
}
.icon-2 {
    bottom: -10%;
    right: 5%;
    font-size: 14rem;
    animation-delay: 2s;
}
.icon-3 {
    top: 20%;
    right: 25%;
    font-size: 4rem;
    animation-delay: 1s;
    transform: rotate(20deg);
}
.icon-4 {
    bottom: 15%;
    left: 18%;
    font-size: 3rem;
    animation-delay: 3s;
    transform: rotate(-10deg);
}

/* Animasi Melayang Halus */
@keyframes floatAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(8deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* --- Teks Konten --- */
.hero-no-banner-content {
    position: relative;
    z-index: 2; /* Memastikan teks di atas ikon latar belakang */
}

.hero-no-banner-badge {
    background-color: #ffffff;
    color: var(--ms-orange, #ff7a00);
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.12);
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid #ffd1b3;
}

.hero-no-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.hero-no-banner-desc {
    font-size: 1.15rem;
    color: #475569;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Penyesuaian Mobile (Responsive) --- */
@media (max-width: 767.98px) {
    .hero-no-banner {
        padding: 70px 0 60px 0;
    }
    .hero-no-banner-title {
        font-size: 2.2rem;
    }
    .hero-no-banner-desc {
        font-size: 1rem;
        padding: 0 15px;
    }
    /* Ciutkan ikon agar tidak memenuhi layar HP */
    .icon-1 {
        font-size: 4rem;
        left: -5%;
    }
    .icon-2 {
        font-size: 8rem;
        right: -10%;
    }
}
