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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('assets/sister-image.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 800px;
    color: #fff;
}

.title {
    font-family: 'Brush Script MT', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    background: #c2185b;
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 2rem;
    background: #fff;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item-1 {
    background-image: url('assets/gallery/1.jpg');
}

.gallery-item-2 {
    background-image: url('assets/gallery/2.jpg');
}

.gallery-item-3 {
    background-image: url('assets/gallery/3.jpg');
}

.gallery-item-4 {
    background-image: url('assets/gallery/4.jpg');
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Poem Section */
.poem-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poem-container {
    max-width: 600px;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ... (Previous Poem Section Styles from Earlier Answer) ... */

/* Music Player */
.music-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e91e63;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.music-playing {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .poem-container, .gallery-container {
        padding: 2rem;
        margin: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .poem-text {
        line-height: 1.6;
    }
    
    .music-btn {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}