body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    background: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background: #343a40;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Button Styles */
.button {
    background: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    padding: 12px 24px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
}

.button:hover {
    background: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Main Content */
main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Lyrics and Video Container */
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Lyrics Section */
.lyrics {
    flex: 1 1 100%; /* Takes full width on small screens */
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    white-space: pre-wrap;
    font-size: 1rem;
    max-height: 500px; /* Fixed height */
    overflow-y: auto;
}

/* Video Section */
.video {
    flex: 1 1 100%; /* Takes full width on small screens */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.video iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    border-top: 1px solid #495057;
}

/* Form Inputs */
input[type="text"], input[type="number"] {
    line-height: 1.8;
    width: 100%;
    max-width: 320px;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    margin: 10px 0;
}

input[type="text"]:hover, input[type="number"]:hover {
    border-color: #007bff;
    background-color: #e9ecef;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .content {
        flex-direction: row; /* Side by side layout for medium screens */
    }

    .lyrics {
        flex: 2; /* Lyrics take more space */
    }

    .video {
        flex: 1; /* Video takes less space */
    }
}

@media (min-width: 1024px) {
    .lyrics {
        max-height: 600px; /* Increase max-height for larger screens */
    }

    .video iframe {
        height: 400px; /* Larger video height for large screens */
    }
}

/* Song Titles Container */
.song-titles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual Song Title */
.song-title {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.song-title:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Contact Button */
.contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    z-index: 1000; /* Ensures the button is on top of other elements */
}

/* Contact Info Container */
.contact-info {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensures the info box is on top of other elements */
}
