* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #000;
}

/* Background Slideshow */
.slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 1000;
}

.nav-links a,
.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    text-align: center;
}

.hero-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

/* Latest Release */
.latest-release {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin-top: 2rem;
}

.latest-release h2 {
    margin-bottom: 2rem;
}

.release-image {
    width: 300px;
    height: 300px;
    margin-bottom: 1rem;
}

.release-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.release-artist {
    color: #888;
    margin-bottom: 1rem;
}

/* Stream Buttons */
.stream-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn i {
    font-size: 1.2rem;
}

.btn-spotify {
    background-color: #1DB954;
    color: white;
}

.btn-apple {
    background-color: #A2AAAD;
    color: white;
}

.btn-youtube {
    background-color: #FF0000;
    color: white;
}

/* Tour Section */
.tour {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
}

.tour h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.tour-grid {
    max-width: 800px;
    margin: 0 auto;
}

.tour-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.date-block {
    text-align: center;
    background-color: #1DB954;
    padding: 1rem;
    border-radius: 5px;
    min-width: 80px;
}

.day {
    font-size: 1.5rem;
    font-weight: bold;
}

.month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.venue-info {
    flex-grow: 1;
    padding: 0 2rem;
}

.venue-name {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.ticket-btn {
    background-color: #1DB954;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

/* Music Section */
.music {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
}

.music h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.music-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.music-slideshow {
    position: relative;
}

.slide {
    display: none;
    text-align: center;
}

.slide.active {
    display: block;
}

.slide img {
    width: 300px;
    height: 300px;
    margin-bottom: 1rem;
}

.track-info {
    margin-top: 1rem;
}

.track-info h3 {
    margin-bottom: 0.5rem;
}

.track-info p {
    color: #888;
    margin-bottom: 1rem;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.dot.active {
    background-color: #1DB954;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-block {
    text-align: center;
}

.contact-block h3 {
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: transform 0.2s, opacity 0.2s;
    min-width: 180px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.contact-btn i {
    font-size: 1.2rem;
}

.contact-btn.email {
    background-color: #EA4335;
}

.contact-btn.whatsapp {
    background-color: #25D366;
}

.contact-btn.facebook {
    background-color: #1877F2;
}

@media (max-width: 600px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Music Player */
.music-player {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.music-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1DB954;
    border: none;
    color: white;
    cursor: pointer;
}

.music-toggle.playing {
    background-color: #1ed760;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links,
    .social-links {
        margin: 0.5rem 0;
    }

    .tour-date {
        flex-direction: column;
        text-align: center;
    }

    .venue-info {
        padding: 1rem 0;
    }

    .prev-btn,
    .next-btn {
        display: none;
    }

    .stream-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
