/* SPLASH SCREEN */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* Black background for fade effect */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* on top of everything */
}

#splash-screen img {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    object-fit: cover;
    animation: pulse 1s infinite alternate;
}

/* Animation for the image */
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 1; }
}
/* GLOBAL STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #222;
    line-height: 1.6;
}

/* ABOUT SECTION */
#about {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

.about-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.about-text h2 {
    font-family: 'Chewy', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

@media (min-width: 700px) {
    .about-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
        text-align: left;
    }

    .about-img {
        width: 200px;
        height: 200px;
    }
}

/* MUSIC SECTION */
#music {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-family: 'Chewy', sans-serif;
    font-size: 28px;
    margin-bottom: 25px;
}

.music-card {
    max-width: 350px;
    margin: auto;
    background: #fafafa;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.10);
}

.music-cover {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 auto 15px auto;
}

.music-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.music-links a {
    display: block;
    background: linear-gradient(135deg, #111, #444);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.20);
    transition: 0.3s;
}

.music-links a:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #000, #333);
}

/* RESPONSIVE IMAGE FIX */
img {
    max-width: 100%;
    height: auto;
}
/* BOOKING SECTION */
#booking {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

#booking .section-title {
    font-family: 'Chewy', sans-serif;
    font-size: 28px;
    margin-bottom: 25px;
}

.booking-card {
    max-width: 400px;
    margin: auto;
    background: #fafafa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.booking-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.whatsapp-links a,
.booking-card > a {
    display: block;
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp green for WhatsApp, fallback for email button */
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.20);
    transition: 0.3s;
    margin-bottom: 10px;
}

.booking-card > a {
    background: linear-gradient(135deg, #111, #444); /* Email button color */
}

.whatsapp-links a:hover,
.booking-card > a:hover {
    transform: scale(1.05);
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 100%;
    resize: none;
}

.contact-form button {
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #111, #444);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #000, #333);
}
/* NAVIGATION BAR */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 9999;
}

.logo {
    font-family: 'Chewy', cursive;
    font-size: 22px;
    color: #111;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ff6600;
}

/* Add space so sections don't hide under navbar */
section {
    padding-top: 80px;
}html {
    scroll-behavior: smooth;
}