/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a1a;
    color: #f2eaff;
    line-height: 1.5;
    position: relative;
    min-height: 100vh;
}

/* Gradient Background + Pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.5) 0%, transparent 35%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.4) 0%, transparent 40%),
                linear-gradient(145deg, #0a0a1a 0%, #1e1035 60%, #231042 100%);
    z-index: -2;
}

/* ===== BACKGROUND GRADIENT UNTUK SEMUA UKURAN ===== */
body::before {
    background: radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.7) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.6) 0%, transparent 45%),
                linear-gradient(145deg, #0a0a1a 0%, #1e1035 70%, #231042 100%);
}

/* ===== PATTERN GRID YANG SESUAI LEBAR LAYAR ===== */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(200, 130, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 130, 255, 0.05) 1px, transparent 1px),
        radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.5), transparent 3px),
        radial-gradient(3px 3px at 30% 70%, #ffb0e6, transparent 4px),
        radial-gradient(2px 2px at 50% 30%, #c47af0, transparent 3px),
        radial-gradient(4px 4px at 80% 60%, #ff69c2, transparent 5px),
        radial-gradient(2px 2px at 90% 15%, #b57aed, transparent 3px);
    background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: 40px 40px, 40px 40px, auto, auto, auto, auto, auto; /* Ukuran default mobile */
    pointer-events: none;
    z-index: -1;
}

/* Tablet (lebih besar dari 600px) */
@media (min-width: 601px) {
    body::after {
        background-size: 60px 60px, 60px 60px, auto, auto, auto, auto, auto;
    }
}

/* Desktop kecil (lebih besar dari 900px) */
@media (min-width: 901px) {
    body::after {
        background-size: 80px 80px, 80px 80px, auto, auto, auto, auto, auto;
    }
}

/* Desktop besar (lebih besar dari 1200px) */
@media (min-width: 1201px) {
    body::after {
        background-size: 100px 100px, 100px 100px, auto, auto, auto, auto, auto;
    }
}

/* Media queries yang sudah ada tetap di bawah sini */
@media (max-width: 1024px) {

}

:root {
    --purple-deep: #7b2da8;
    --purple-soft: #b57aed;
    --pink-vibrant: #ff69c2;
    --pink-light: #ffb8f0;
    --black-rich: #0a0a12;
    --white-soft: #f7f0ff;
    --glass-edge: rgba(255, 110, 210, 0.3);
    --gradient-pink-purple: linear-gradient(135deg, #ff69c2, #b57aed);
    --gradient-glow: linear-gradient(90deg, #ff69c2, #b57aed, #ff69c2);
    --shadow-pink-soft: 0 15px 30px -5px rgba(255, 105, 194, 0.5);
    --shadow-purple-soft: 0 15px 30px -5px rgba(156, 86, 255, 0.5);
    --shadow-avatar: 0 10px 25px -3px rgba(255, 105, 194, 0.6);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1c1326; }
::-webkit-scrollbar-thumb { background: #c47af0; border-radius: 10px; }

/* ===== NAVBAR - TANPA INDICATOR AKTIF ===== */
.navbar-modern {
    position: fixed;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 10, 35, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 105, 194, 0.25);
    border-radius: 60px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.6);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-pink-purple);
    overflow: hidden;
    box-shadow: var(--shadow-avatar);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #ffb8f0, #c47af0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 0.3rem;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 40px;
    transition: all 0.2s ease;
}

.nav-link i {
    font-size: 1.1rem;
    color: #ff9ad0;
}

.nav-link:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-pink-soft);
    background: rgba(255, 105, 194, 0.15);
    color: white;
}

/* ACTIVE STATE - HANYA WARNA TEKS, TANPA BACKGROUND/INDICATOR */
.nav-item.active .nav-link {
    color: white;
    background: transparent;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(255, 105, 194, 0.2);
    border: 1px solid rgba(255, 105, 194, 0.3);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-pink-soft);
}

/* ===== HOME SECTION ===== */
.home-section {
    scroll-margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.5);
    z-index: 1;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,5,20,0.3) 0%, rgba(90,30,150,0.45) 40%, rgba(120,40,180,0.6) 70%, rgba(20,5,40,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 4rem 1rem 3rem;
}

.hero-profile-photo {
    width: 220px;
    height: 220px;
    border-radius: 24px;
    background: var(--gradient-pink-purple);
    margin: 50px auto 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-avatar);
    transition: all 0.3s;
}

.hero-profile-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 35px -5px #ff69c2;
}

.hero-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 0 0 20px #ff6ac2;
    margin-bottom: 0.8rem;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #ff9ad0;
}

/* ===== MAIN CONTAINER ===== */
.main {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* SCROLL REVEAL ANIMATION - BISA DIULANG */
section {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

section:not(.revealed) {
    opacity: 0;
    transform: translateY(30px);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(145deg, #ffffff, #e9c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gradient-glow);
    border-radius: 4px;
}

/* ===== EL FAMILIA ===== */
.el-familia-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.el-familia-badge {
    background: linear-gradient(125deg, #2f1b4b, #190f28);
    padding: 0.5rem 2rem;
    border-radius: 60px;
    border: 2px solid #ff98dc;
    box-shadow: 0 0 20px #ff69c280;
    display: inline-block;
    transition: all 0.2s;
}

.el-familia-badge:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px #ff69c2;
}

.el-familia-text {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 5px;
    background: linear-gradient(145deg, #ffc8f0, #e09eff, #ffb3d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.el-familia-symbol {
    color: #ffa7e6;
    font-size: 2rem;
    margin: 0 0.3rem;
}

/* ===== TOGETHER BANNER ===== */
.together-banner {
    display: flex;
    justify-content: center;
    margin: 3rem 0 2rem;
}

.together-badge {
    background: linear-gradient(145deg, #281b44, #140e22);
    padding: 0.8rem 2.8rem;
    border-radius: 80px;
    border: 1.5px solid #ffa2e4;
    box-shadow: 0 0 25px #c47af0;
    text-align: center;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}

.together-badge:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px #ff69c2;
}

.together-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff69c2, #b57aed, #ff69c2);
    border-radius: 80px;
    z-index: -1;
    opacity: 0.3;
}

.together-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffdbff, #d9b0ff, #ffb8f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1.3;
}

.together-sub {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffb0e6;
    display: block;
    letter-spacing: 3px;
    margin-top: 6px;
    text-shadow: 0 0 10px #ff69c2;
}

/* ===== FLUID GRIDS ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.about-card {
    background: rgba(22, 12, 35, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 130, 210, 0.3);
    border-radius: 24px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.2s ease;
    width: 100%;
}

.about-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-purple-soft);
}

.about-card i {
    font-size: 2.2rem;
    background: linear-gradient(145deg, #ffa4e9, #c07aff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.8rem;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.activity-card {
    background: rgba(28, 16, 45, 0.8);
    backdrop-filter: blur(8px);
    border: 1.5px solid #ff98dc;
    border-radius: 24px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.2s ease;
    width: 100%;
}

.activity-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-pink-soft);
}

.activity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff69c2, #b57aed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-avatar);
}

.member-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.member-card {
    width: calc(33.333% - 0.7rem);
    max-width: 160px;
    min-width: 130px;
    background: rgba(28, 16, 45, 0.8);
    backdrop-filter: blur(4px);
    border: 1.5px solid #b161ee;
    border-radius: 24px;
    padding: 1rem 0.5rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.member-card:hover {
    transform: scale(1.06);
    box-shadow: 0 18px 25px -8px #d59dff;
    border-color: #ffaddc;
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.8rem;
    background: var(--gradient-pink-purple);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-avatar);
    transition: all 0.2s;
}

.member-card:hover .member-avatar {
    box-shadow: 0 15px 30px -5px #ff69c2;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.member-info .username {
    color: #ffb0e6;
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-wrapper {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 2rem;
}

.search-bar {
    background: rgba(20, 10, 32, 0.8);
    backdrop-filter: blur(8px);
    border: 1.5px solid #c97aff;
    border-radius: 60px;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 450px;
    transition: all 0.2s;
}

.search-bar:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-pink-soft);
}

.search-bar input {
    background: transparent;
    border: none;
    width: 100%;
    font-size: 1rem;
    color: white;
    outline: none;
}

/* ===== CAROUSEL STYLES (untuk admin) ===== */
.carousel-container {
    position: relative;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0.5rem;
    flex: 1;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.carousel-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2f1b4b, #190f28);
    border: 2px solid #ff98dc;
    color: #ffb0e6;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.carousel-nav:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-pink-soft);
}

/* Admin Cards */
.admin-card {
    background: rgba(32, 16, 50, 0.9);
    border: 1.5px solid #c97aff;
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    width: 220px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-card:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 25px -8px #c47af0;
}

.admin-avatar {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    background: var(--gradient-pink-purple);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-avatar);
}

.admin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-info h4 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
}

.admin-username {
    color: #ffb0e6;
    font-size: 0.85rem;
}

.admin-role {
    background: #2d1b42;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #ffb8f0;
    display: inline-block;
    border: 1px solid #ff8ad0;
    margin: 0 auto;
}

.admin-tiktok-link {
    color: #ffb0e6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    background: #2a153d;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    border: 1px solid #ff8ad0;
    margin-top: 0.3rem;
    transition: all 0.2s;
}

.admin-tiktok-link:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-pink-soft);
}

/* ===== CONTACT SECTION ===== */
/* Desktop Grid (muncul di layar >768px) */
.contact-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Mobile Carousel (muncul di layar ≤768px) */
.contact-carousel-mobile {
    display: none;
}

/* Contact Cards (style yang sama untuk desktop & mobile) */
.contact-card {
    width: 100%;
    text-align: center;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    border-radius: 0;
}

.contact-card:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px #ff69c2;
}

.contact-card i {
    font-size: 2.5rem;
    background: linear-gradient(145deg, #ff9ae0, #c07aff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.contact-card span {
    font-size: 0.9rem;
    color: #ffb0e6;
    background: transparent;
    border: none;
    padding: 0;
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active { 
    display: flex; 
}

.modal-content {
    background: #1e1230;
    border: 2px solid #ff98dc;
    border-radius: 40px;
    padding: 2rem 1.8rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 40px -10px #b57aed;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: #ffb0e6;
    cursor: pointer;
    transition: all 0.2s;
}

.close-modal:hover {
    transform: scale(1.2);
    color: #ff69c2;
}

.modal-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-pink-purple);
    border-radius: 20px;
    margin: 0 auto 1.2rem;
    overflow: hidden;
    box-shadow: var(--shadow-avatar);
    transition: all 0.2s;
}

.modal-avatar:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 35px -5px #ff69c2;
}

.modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.modal-username {
    color: #ffb0e6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.modal-quote {
    margin: 1.5rem 0 1.8rem 0;
    font-style: italic;
    color: #ffdbff;
    font-size: 1.2rem;
    line-height: 1.7;
    word-break: break-word;
    padding: 0 0.5rem;
    background: transparent;
    border: none;
    text-shadow: 0 0 10px rgba(255, 105, 194, 0.3);
}

.modal-quote i {
    color: #ff8ad0;
    font-size: 1rem;
    margin: 0 0.5rem;
    opacity: 0.8;
}

.modal-quote span {
    display: inline-block;
    max-width: 90%;
}

.modal-tiktok {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2a153d;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    color: #ffb0e6;
    text-decoration: none;
    border: 1px solid #ff8ad0;
    transition: all 0.2s;
}

.modal-tiktok:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-pink-soft);
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, #2a1d3a 25%, #3f2b55 50%, #2a1d3a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 16px;
    border: none !important;
    pointer-events: none;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.member-grid.skeleton .member-card {
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: #a588c0;
    border-top: 1px solid rgba(255, 150, 210, 0.2);
    margin-top: 3rem;
}

/* ===== MEDIA QUERIES - RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .activity-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .member-card {
        width: calc(25% - 0.7rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(20, 10, 35, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 105, 194, 0.3);
        border-radius: 30px;
        margin-top: 10px;
        padding: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-toggle {
        display: flex;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .member-card {
        width: calc(33.333% - 0.7rem);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Hilangkan tombol navigasi carousel di HP */
    .carousel-nav {
        display: none;
    }
    
    .carousel-wrapper {
        padding: 0.5rem 0;
    }
    
    /* Contact: Desktop Grid hilang, Mobile Carousel muncul */
    .contact-grid-desktop {
        display: none;
    }
    
    .contact-carousel-mobile {
        display: flex;
    }
    
    /* Contact cards di HP */
    .contact-card {
        width: 160px;
    }
    
    .contact-card i {
        font-size: 2.2rem;
    }
    
    .contact-card h3 {
        font-size: 1rem;
    }
    
    .contact-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .hero-profile-photo {
        width: 180px;
        height: 180px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .main {
        width: 95%;
        padding: 1rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .member-card {
        width: calc(50% - 0.5rem);
    }
    
    .el-familia-text {
        font-size: 1.5rem;
    }
    
    .el-familia-symbol {
        font-size: 1.5rem;
    }
    
    .together-badge {
        padding: 0.5rem 1.5rem;
    }
    
    .together-text {
        font-size: 1.2rem;
    }
    
    .together-sub {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title::after {
        width: 120px;
    }
    
    .admin-card {
        width: 180px;
        padding: 1rem 0.8rem;
    }
    
    .admin-avatar {
        width: 100px;
        height: 100px;
    }
    
    .modal-content {
        padding: 1.5rem 1.2rem;
    }
    
    .modal-avatar {
        width: 100px;
        height: 100px;
    }
    
    .modal-quote {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .member-card {
        width: 100%;
        max-width: 160px;
    }
    
    .hero-profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .contact-card {
        width: 140px;
    }
}