/* TEMA WARNA CUSTOM (CSS Variables) */
:root {
    --gold-primary: #d4af37;
    --gold-hover: #b5952f;
    --gold-light: rgba(212, 175, 55, 0.15);
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-darker: #0a0a0a;
    --text-light: #e0e0e0;
    --text-muted-dark: #a0a0a0;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
}

/* Teks Emas Kustom */
.text-gold {
    color: var(--gold-primary) !important;
}

/* Navbar Styling */
.navbar {
    background-color: var(--bg-darker) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    font-weight: 700;
    color: var(--gold-primary) !important;
    letter-spacing: 0.5px;
}

.nav-link {
    color: var(--text-light) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold-primary) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(18, 18, 18, 0.95)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200&q=80') center/cover;
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 2px solid var(--gold-primary);
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.hero-section p {
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Year Separator */
.year-separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--gold-primary);
    margin: 60px 0 30px;
    font-weight: 700;
    font-size: 1.5rem;
}

.year-separator::before,
.year-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.year-separator:not(:empty)::before {
    margin-right: 1em;
}

.year-separator:not(:empty)::after {
    margin-left: 1em;
}

/* Card Styling */
.album-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.carousel-item img {
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid var(--gold-primary);
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-weight: 600;
    color: #ffffff;
}

.card-text {
    color: var(--text-muted-dark) !important;
}

.badge-kategori {
    background-color: var(--gold-light);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    display: inline-block;
}

/* Tombol Emas */
.btn-gold {
    background-color: var(--gold-primary);
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #000;
    transform: scale(1.02);
}

/* Tentang Kami Section */
.about-section {
    background-color: var(--bg-card);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-img-container {
    position: relative;
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gold-primary);
    color: #000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gold-light);
    color: var(--gold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-title {
    color: #ffffff;
}

.about-text {
    color: var(--text-muted-dark);
}

/* Partners Section */
.partners-section {
    background-color: var(--bg-dark);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #555;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
    cursor: default;
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--gold-primary);
    transform: scale(1.05);
}

.partner-item i {
    font-size: 2.5rem;
    margin-right: 10px;
}

.partner-item span {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Footer Styling */
footer {
    background-color: var(--bg-darker);
    color: var(--text-muted-dark);
    padding: 60px 0 20px;
    border-top: 2px solid var(--gold-primary);
}

footer h5 {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-icons a:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.875rem;
}