/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37; /* Gold */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #D4AF37;
}

/* Burger Menu (Mobile) */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    /* Ganti URL ini dengan foto Tiwa Savage yang asli */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)), url('https://source.unsplash.com/random/1920x1080/?concert,singer') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: #D4AF37;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.btn {
    padding: 12px 30px;
    border: 1px solid #D4AF37;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 10px;
    display: inline-block;
}

.btn.primary {
    background-color: #D4AF37;
    color: #000;
}

.btn.primary:hover {
    background-color: transparent;
    color: #D4AF37;
}

.btn.secondary {
    background-color: transparent;
    color: #D4AF37;
}

.btn.secondary:hover {
    background-color: #D4AF37;
    color: #000;
}

/* General Section Styles */
.section-padding {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #D4AF37;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.album-card {
    text-align: center;
}

.album-card h3 {
    margin-top: 20px;
    font-size: 1.5rem;
}

.album-card p {
    color: #888;
    margin-bottom: 15px;
}

.link-gold {
    color: #D4AF37;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Tour Table */
.tour-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tour-table th, .tour-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.tour-table th {
    color: #D4AF37;
    text-transform: uppercase;
}

.btn-small {
    padding: 8px 15px;
    border: 1px solid white;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.btn-small:hover {
    background: white;
    color: black;
}

/* Newsletter */
.newsletter {
    background-color: #111;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 15px;
    width: 300px;
    background: transparent;
    border: 1px solid #555;
    color: white;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #D4AF37;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
footer {
    padding: 50px;
    text-align: center;
    background-color: #000;
    border-top: 1px solid #222;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: #888;
}

.social-icons a:hover {
    color: #D4AF37;
}

.credits {
    font-size: 0.8rem;
    color: #444;
    margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tour-table th, .tour-table td {
        font-size: 0.8rem;
        padding: 15px 5px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
}

@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0px); }
}