* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #e7e7e7; /* Background Desktop */
    display: flex;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 480px; /* Mobile Lock */
    min-height: 100vh;
    background-color: #f6f6f6;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
}

/* --- SECTION 1: HERO --- */
.hero-section {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, #f6f6f6 100%), 
                url('upload/bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333;
}

.brand-logo {
    height: 24px; /* Sesuaikan tinggi logo agar sejajar dengan teks kanan */
    width: auto;
    opacity: 0.5;
    object-fit: contain;
    /* Memberikan sedikit filter jika logo kurang kontras dengan background */
    /*filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1)); */
}


.hero-header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 300;
    align-items: center; /* Memastikan logo dan teks "Official Website" rata tengah */
    padding: 0px 0px;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    letter-spacing: 8px;
    font-weight: 400;
    margin-bottom: 0;
}

.sub-title {
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0.9;
}

.description {
    font-size: 0.65rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 25px;
}

.scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 10px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator i {
    display: block;
    margin-bottom: 5px;
}

/* --- SECTION 2: CONTENT --- */
.content-section {
    padding: 20px;
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05); /* Soft shadow dari atas */
}

.profile-banner {
    height: 170px;
    position: relative;
}

.banner-img {
    width: 100%;
    height: 100%; /* Pastikan tinggi penuh sesuai container */
    object-fit: cover;
    object-position: top;
    z-index: 0;
    
    /* Efek Gradasi Transparan */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 00%, rgba(0,0,0,0) 100%);
}

.profile-avatar {
    position: absolute;
    bottom: 0px;
    left: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    padding: 10px 20px 10px 20px;
    z-index: 3;
}

.info-text h3 {
    font-size: 16px;
    font-weight: 700;
     z-index: 3;
}

.info-text p {
    font-size: 12px;
    color: #888;
    padding: 0 0 15px 0;
}

.personal-message {
    font-size: 11px;
    line-height: 1.6;
    color: #666;
    margin-top: 12px; /* Jarak dari teks jabatan */
    margin-bottom: 5px; /* Jarak sebelum menyentuh divider */
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.action-bar {
    padding: 0px 20px 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
}

.cta-button {
    background: black;
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

/* Slideshow Card */
.slideshow-card {
    background: white;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.slider-container {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* Tambahkan Shadow di sini */
    /* Cahaya satu arah dari atas (offset Y lebih besar) */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35); 
    
    /* Trick: Gunakan transform agar shadow tidak terpotong */
    /* atau pastikan parent (slideshow-card) punya padding yang cukup */
    margin-bottom: 5px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
}

.slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.card-details {
    padding: 20px 10px 10px 10px;
}

.card-details h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.event-desc {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.divider {
    border: 0;
    border-top: 1px solid #eee;
    margin-bottom: 15px;
}

.meta-data {
    display: flex;
    justify-content: space-between;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 10px;
    color: #bbb;
    text-transform: uppercase;
}

.value, .stars {
    font-size: 13px;
    font-weight: 700;
}

.footer-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f6f6f6;
}

.footer-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #999;
   /* text-transform: uppercase;*/
    margin-bottom: 4px;
}

.footer-credit {
    font-size: 10px;
    color: #bbb;
    letter-spacing: 0.5px;
}

.footer-credit a {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #333;
}

