* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #383737;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #e6e7e9 0%, #e6e7e9 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}
.header.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.logo {
    height: 100px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: rgb(17, 16, 16);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #FFD700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px 40px 8px 15px;
    border: none;
    border-radius: 25px;
    outline: none;
    width: 250px;
}

.search-box i {
    position: absolute;
    right: 15px;
    color: #faf4f4;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(44,62,80,0.8) 0%, rgba(52,152,219,0.6) 100%),
                url(':https//images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920') center/cover;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    background: #FF6B35;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.6);
    background: #E55A2B;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 32px; }
    .hero-text p { font-size: 16px; }
    .hero { background-attachment: scroll; }
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    padding: 0 20px;
}

.hero {
    background-image: url('WhatsApp\ Image\ 2026-04-22\ at\ 08.42.52.jpeg'); /* ganti dengan nama file gambar kamu */
    background-size: cover; /* biar penuh */
    background-position: center; /* posisi tengah */
    background-repeat: no-repeat; /* tidak diulang */
    height: 100vh; /* tinggi full layar */
    display: flex;
    align-items: center;
    color: white; /* biar teks terlihat */
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.hero-video {
    position: relative;
}

.hero-video img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #242525;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}


.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* kiri besar, kanan kecil */
    gap: 20px;
}

.news-card.featured {
    grid-row: span 2; /* biar tinggi ke bawah */
}
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* kiri besar, kanan kecil */
    gap: 20px;
}
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.featured img {
    height: 350px;
}

.news-content {
    padding: 1.5rem;
}

.category {
    display: inline-block;
    background: #FF6B35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #5409e0;
}

/* News Latest */
.news-latest {
    padding: 3rem 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgb(248, 245, 245);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.news-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.news-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.news-item span {
    color: #fffafa;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-row: span 1;
    }
}

/.live-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,107,53,0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.live {
    background: #FF6B35;
    box-shadow: 0 0 10px rgba(255,107,53,0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.live-player {
    position: relative;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.live-player iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
}

.live-info {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.live-info h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
}

.live-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.btn-play, .btn-replay {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-play {
    background: linear-gradient(45deg, #FF6B35, #E55A2B);
    color: white;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

.btn-replay {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-replay:hover {
    background: rgba(255,255,255,0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .live-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .live-player iframe {
        height: 250px;
    }
    
    .live-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-player {
    max-width: 900px;
    margin: 40px auto;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.video-player iframe {
    width: 100%;
    height: 500px;
    display: block;
}

.video-info {
    text-align: center;
    margin-top: 40px;
}

.video-info h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.video-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FF0000;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

.btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,0,0,0.4);
    background: #CC0000;
}

@media (max-width: 768px) {
    .video-player iframe {
        height: 300px;
    }
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #FF6B35;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #F7931E;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;

}
.footer {
    margin-top: 50px; /* kasih jarak dari atas */
    padding: 40px 0; /* biar isi footer lebih lega */
    background: #34495E; /* opsional biar kelihatan jelas */
    color: white;
}
/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #FF6B35;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    section {
    padding: 60px 0;
}
}