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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4a90e2;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Latest Release Section */
.latest-release {
    padding: 80px 0;
    background-color: #fff;
}

.latest-release h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.release-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.album-art {
    flex: 0 0 300px;
}

.album-art img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.release-info {
    flex: 1;
    min-width: 300px;
}

.release-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.release-date {
    color: #666;
    margin-bottom: 20px;
}

.audio-player {
    margin: 20px 0;
}

audio {
    width: 100%;
    height: 40px;
}

.preview-text {
    font-size: 0.9rem;
    color: #888;
}

/* Streaming Section */
.streaming {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.streaming h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.streaming-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    background-color: #fff;
    color: #333;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.streaming-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.streaming-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.spotify {
    color: #1DB954;
}

.apple {
    color: #FB233B;
}

.youtube {
    color: #FF0000;
}

.deezer {
    color: #00C7F2;
}

.tidal {
    color: #000000;
}

.amazon {
    color: #FF9900;
}

.bandcamp {
    color: #1DA0C3;
}

/* Social Section */
.social {
    padding: 80px 0;
    background-color: #fff;
}

.social h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.instagram {
    color: #E1306C;
}

.twitter {
    color: #1DA1F2;
}

.facebook {
    color: #4267B2;
}

.tiktok {
    color: #000000;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.newsletter p {
    margin-bottom: 30px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

#newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

#newsletter-form button {
    padding: 12px 25px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

#newsletter-form button:hover {
    background-color: #3a7bc8;
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    
    nav ul li {
        margin-left: 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .release-card {
        padding: 20px;
    }
    
    .release-info h3 {
        font-size: 1.5rem;
    }
    
    #newsletter-form {
        flex-direction: column;
    }
    
    #newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    #newsletter-form button {
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .streaming-btn, .social-btn {
        width: 100%;
        justify-content: center;
    }
}