/* Import Font dari Google Fonts (Tambahkan di baris paling atas CSS) */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Montserrat:wght@400;500;600;700;900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header & Navbar */
.navbar {
    background-color: rgba(30, 30, 30, 0.9) !important;
    transition: background-color 0.3s;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff !important;
}

.navbar .nav-link {
    /* DISESUAIKAN: Warna disamakan dengan tema utama */
    color: #4B8BBE !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
}

/* Hero Section & Slideshow */
.hero {
    height: 100vh;
    position: relative;
    color: white;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    /* Menggunakan 'center' biasanya lebih aman untuk berbagai ukuran layar */
    opacity: 0;
    animation: fade 15s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    8% {
        /* 4 detik / 20 detik = 0.2 (20%) dibagi 2 karena ada fade in dan fade out */
        opacity: 1;
        transform: scale(1);
    }

    32% {
        /* 8% + 4 detik berikutnya (20%) + 8% untuk fade out */
        opacity: 1;
        transform: scale(1);
    }

    40% {
        opacity: 0;
        transform: scale(1.1);
    }

    /* Lanjutkan pola ini untuk slide berikutnya */
    60% {
        opacity: 0;
        transform: scale(1.1);
    }

    68% {
        opacity: 1;
        transform: scale(1);
    }

    92% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.slide {
    /* ... properti lainnya ... */
    animation: fade 20s infinite;
    /* Ganti durasi animasi menjadi 20s */
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 4s;
    /* 20 detik / 5 slide = 4 detik */
}

.slide:nth-child(3) {
    animation-delay: 8s;
}

.slide:nth-child(4) {
    animation-delay: 12s;
}

.slide:nth-child(5) {
    animation-delay: 16s;
}

/* Social Media Bar */
.social-media-bar {
    background-color: #fff;
}

.social-icon {
    font-size: 24px;
    color: #4B8BBE;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #306998;
}

/* Content Section (Events & News) */
.content-column {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.content-column h2 {
    color: #1e1e1e;
    font-weight: bold;
    font-size: 1.5rem;
}

.event-item {
    background-color: #f0f0f0;
    color: #1e1e1e;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-item p {
    margin: 0;
    font-weight: 500;
}

.event-item a {
    color: #1e1e1e;
    font-size: 1.2rem;
}

.btn-custom {
    background-color: #4B8BBE;
    color: white;
    border: 2px solid #4B8BBE;
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: #306998;
    border-color: #306998;
    color: white;
}

/* Discography */
.discography {
    background-color: #111827;
    color: #4B8BBE;
}

.discography h2 {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    letter-spacing: 4px;
}

.album-item {
    background-color: #1f2937;
    padding: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
}

.album-item img {
    width: 100%;
    /* height: 200px; */
    object-fit: contain;
    object-position: top;
    /* <--- TAMBAHKAN BARIS INI */
    margin-bottom: 15px;
    border-radius: 4px;
}

.album-item h3 {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.album-links {
    margin-top: 15px;
}

.album-links a {
    color: #4B8BBE;
    margin: 0 8px;
    font-size: 20px;
    transition: color 0.3s;
}

.album-links a:hover {
    color: white;
}

/* Contact Section */
.contact-section {
    background-color: #2D2D2D;
}

.contact-section h1 {
    font-family: 'Bangers', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 4px;
    color: #4B8BBE;
}


/* Footer General */
.footer {
    background-color: #111827;
}

/* Footer Detail */
.site-footer {
    background-color: #1e1e1e;
}

.site-footer h5 {
    font-weight: bold;
    color: #4B8BBE;
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons-footer .social-icon-footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons-footer .social-icon-footer:hover {
    color: #4B8BBE;
}

.copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    /* Versi lama untuk browser lawas */
}