/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

p {
    font-weight: 300;
}

/* Header and Navigation */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: #333;
}

.site-title {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.site-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #333;
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

/* Main content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    color: #222;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
}

.hero-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.hero-button:hover {
    background-color: #0056b3;
}

.hero-image-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

/* Section common styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Bio Section */
.bio-section {
    padding: 4rem 0;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bio-image-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.bio-image {
    width: 100%;
    height: auto;
    display: block;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
}

.bio-highlights {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #007bff;
}

.highlight-text {
    font-size: 0.9rem;
    color: #666;
}

/* Albums Section */
.albums-section {
    padding: 4rem 0;
    background-color: #fff;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.album-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.album-image-container {
    height: 250px;
    overflow: hidden;
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-image {
    transform: scale(1.1);
}

.album-info {
    padding: 1.5rem;
}

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

.album-year {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.album-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.album-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.album-button:hover {
    background-color: #218838;
}

/* Songs Section */
.songs-section {
    padding: 4rem 0;
}

.songs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.song-player {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.player-image-container {
    height: 200px;
    overflow: hidden;
}

.player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-controls {
    padding: 1.5rem;
}

.now-playing {
    margin-bottom: 1.5rem;
}

.song-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.song-album {
    color: #666;
    font-size: 0.9rem;
}

.progress-container {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    width: 30%;
    height: 100%;
    background-color: #007bff;
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.control-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.control-button:hover {
    color: #007bff;
}

.songs-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.song-item:hover {
    background-color: #f8f9fa;
}

.song-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-right: 1rem;
    color: #666;
}

.song-details {
    flex: 1;
}

.song-item-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.song-item-album {
    font-size: 0.9rem;
    color: #666;
}

.song-play-button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #007bff;
    transition: transform 0.3s ease;
}

.song-play-button:hover {
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image-container {
    overflow: hidden;
    border-radius: 10px;
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0056b3;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007bff;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox {
    width: 18px;
    height: 18px;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #666;
}

.submit-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-legal {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.copyright {
    margin-bottom: 1rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-link {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section,
    .bio-content,
    .songs-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .bio-highlights {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-content {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}