/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0f0a05;
    --dark: #1c140f;
    --gold: #d4af77;
    --text: #f5e8d3;
    --accent-red: #9c2f2f;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: rgba(15, 10, 5, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #332a22;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.logo-text {
    font-size: 3.2rem;
    letter-spacing: -3px;
    padding-top: 4px;
}

.logo-tag {
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--gold);
    opacity: 0.95;
    padding-top: 16px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

/* HERO SLIDER */
.hero {
    position: relative;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 12s linear;
    transform: scale(1);
}

.hero-image.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 10px;
}

.hero-sub {
    font-size: 1.35rem;
    max-width: 620px;
    margin: 0 auto 30px;
    color: #f5e8d3;
}

.cta-button {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #b33a3a;
    transform: translateY(-3px);
}

/* CONTACT BAR */
.contact-bar {
    background: #1c140f;
    padding: 22px 0;
    border-bottom: 4px solid var(--gold);
    scroll-margin-top: 120px;
}

.contact-bar .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--gold);
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--gold);
}

/* ABOUT SECTION */
.about-section {
    padding: 40px 0 35px 0;
    background: var(--dark);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    margin: 20px 0 10px;
    color: var(--gold);
    font-size: 1.4rem;
}

.performance-list {
    list-style: none;
}

.performance-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 28px;
}

.performance-list li:before {
    content: "♪";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.package-card {
    background: #0f0a05;
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 15px 0;
    line-height: 1;
}

.package-detail {
    margin: 12px 0;
    font-size: 1.1rem;
}

.book-button {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin: 15px 0 10px;
    font-weight: 600;
}

/* MUSIC PLAYER */
.music-section {
    padding: 40px 0 25px 0;
    background: var(--bg);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.25rem;
    opacity: 0.8;
}

.player-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: #1c140f;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.playlist {
    background: #15100c;
    padding: 30px 0;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.song-item:hover,
.song-item.active {
    background: #2a221b;
}

.track-number {
    width: 30px;
    font-weight: 700;
    color: var(--gold);
}

.track-info {
    flex: 1;
}

.track-title {
    display: block;
    font-weight: 600;
}

.track-artist {
    font-size: 0.9rem;
    opacity: 0.7;
}

.player {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.now-playing {
    text-align: center;
    margin-bottom: 30px;
    min-height: 50px;
    font-size: 1.3rem;
    font-weight: 500;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.control-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.2s;
}

.control-btn:hover {
    transform: scale(1.15);
    color: var(--gold);
}

.play-pause {
    background: var(--gold);
    color: #0f0a05;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 119, 0.4);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

#progressBar {
    flex: 1;
    accent-color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .player-wrapper {
        grid-template-columns: 1fr;
    }
    .hero {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    .nav {
        gap: 20px;
        justify-content: center;
    }
    .hero-image {
        object-position: center top;
    }
}

@media (max-width: 600px) {
    .contact-bar .container {
        gap: 25px;
    }
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 10px 0;
}