/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Navigation */
nav {
    background: #ffffff;
    padding: 0.5rem 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #666;
}

/* Main content */
main {
    min-height: calc(100vh - 80px);
}

/* Welcome page */
.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-container {
    position: relative;
    max-width: 100%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-overlay {
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    max-width: 128px;
    width: auto;
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}


/* Music section and individual song pages */
.music-section,
.song-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.music-section h1,
.song-page h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #444;
}

/* Songs listing */
.songs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.song-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 2rem;
}

.song-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.song-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s ease;
}

.song-link:hover {
    color: #666;
}

.song-link h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #333;
}

.song-preview {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.poem {
    background: #fff;
    padding: 0;
    line-height: 1.85;
    font-size: 1.32rem;
}

.poem p {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #555;
}

.poem p:last-child {
    margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        padding: 0.5rem 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .logo-overlay {
        bottom: 1rem;
        right: 0.5rem;
        max-width: 108px;
    }
    
    .music-section,
    .song-page {
        padding: 2rem 1rem;
    }
    
    .music-section h1,
    .song-page h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .poem {
        padding: 0;
        font-size: 1.2rem;
    }
    
    .song-link h2 {
        font-size: 1.5rem;
    }
    
    .song-preview {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-overlay {
        max-width: 85px;
        bottom: 0.5rem;
        right: 0.25rem;
    }
    
    .music-section h1,
    .song-page h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .poem {
        padding: 0;
    }
    
    .song-link h2 {
        font-size: 1.4rem;
    }
    
    .song-preview {
        font-size: 0.95rem;
    }
    
    .contact-page h1 {
        font-size: 1.8rem;
    }
    
    .social-item h2 {
        font-size: 1.3rem;
    }
    
    .social-link {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .social-info p {
        text-align: center;
    }
    
    .profile-img {
        width: 2.2rem;
        height: 2.2rem;
        border-width: 2px;
    }
    
    .more-link-container {
        margin-top: 1.5rem;
    }
    
    .contact-page {
        padding: 2rem 1rem;
    }
    
    .contact-page h1 {
        font-size: 2rem;
    }
    
    .social-link {
        padding: 1rem 1.5rem;
    }
    
    .social-icon {
        font-size: 1.8rem;
        min-width: 2.5rem;
    }
    
    .profile-img {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .social-info h3 {
        font-size: 1.1rem;
    }
    
    footer {
        padding: 1rem;
        margin-top: 0.5rem;
        font-size: 0.85rem;
    }
}

/* Contact page */
.contact-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-page h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #444;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-item h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #444;
    text-align: center;
}

.social-item p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: #fafafa;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.social-link:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
}

.profile-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-info h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #333;
}

.social-info p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    text-align: left;
}

/* More link */
.more-link-container {
    text-align: center;
    margin-top: 2rem;
}

.more-link {
    color: #8b5fbf;
    text-decoration: underline;
    font-size: 1.3rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: #7a4fb5;
}

/* Footer */
footer {
    background: #ffffff;
    text-align: center;
    padding: 1rem 2rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}