

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;   

 
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.75) 0%,
        rgba(20,0,0,0.95) 30%,
        rgba(15,0,0,0.9) 60%,
        rgba(0,0,0,1) 100%
    );
}





.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100svh;
    overflow: hidden;

 
    background: transparent;
}



.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 1;
    pointer-events: none;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at center,
        rgba(255,0,0,0.08),
        rgba(0,0,0,0.25)
    );

    z-index: 2;
    pointer-events: none;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}





.section {
    position: relative;
    width: 100%;
    padding: 140px 20px;
    overflow: hidden;

 
    background: transparent;
}


.section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at center,
        rgba(255,0,0,0.05),
        rgba(0,0,0,0.35)
    );

    pointer-events: none;
}


.section-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}





.section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.8;
}





.music-player {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}





.gallery-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    filter: brightness(1);
}





.booking-mail {
    display: inline-block;
    margin-top: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
    transition: border-color 0.3s ease;
}

.booking-mail:hover {
    border-color: #ff0000;
}



.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) contrast(1.08);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;

    box-shadow:
        inset 0 -60px 80px rgba(20,0,0,0.6),
        inset 0 0 0 1px rgba(255,0,0,0.15);

    pointer-events: none;
}


.about-text p {
    text-align: left;
}




.spotify-player {
    margin-top: 60px;
    position: relative;

    background: linear-gradient(
        to bottom,
        rgba(20,0,0,0.6),
        rgba(0,0,0,0.85)
    );

    border: 1px solid rgba(255,0,0,0.2);
    border-radius: 16px;

    padding: 14px;

    box-shadow:
        0 0 40px rgba(255,0,0,0.12),
        inset 0 0 30px rgba(0,0,0,0.6);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.spotify-player::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;

    background: radial-gradient(
        circle at top center,
        rgba(255,0,0,0.25),
        transparent 70%
    );

    opacity: 0.6;
    pointer-events: none;
}


.spotify-player iframe {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    border: none;
}



.instagram-feed {
    margin-top: 50px;
    padding: 16px;

    background: linear-gradient(
        to bottom,
        rgba(20,0,0,0.6),
        rgba(0,0,0,0.85)
    );

    border-radius: 16px;
    border: 1px solid rgba(255,0,0,0.2);

    box-shadow:
        0 0 35px rgba(255,0,0,0.12),
        inset 0 0 25px rgba(0,0,0,0.6);

    backdrop-filter: blur(10px);
}

.instagram-feed iframe {
    border-radius: 12px;
    border: none;
}




.booking-intro {
    max-width: 640px;
    margin: 0 auto 60px;
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
}


.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}


.booking-card {
    position: relative;
    padding: 28px 26px;

    background: linear-gradient(
        to bottom,
        rgba(20,0,0,0.6),
        rgba(0,0,0,0.85)
    );

    border-radius: 16px;
    border: 1px solid rgba(255,0,0,0.2);

    text-decoration: none;

    backdrop-filter: blur(10px);
    box-shadow:
        0 0 35px rgba(255,0,0,0.12),
        inset 0 0 25px rgba(0,0,0,0.6);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.booking-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 45px rgba(255,0,0,0.25),
        inset 0 0 30px rgba(0,0,0,0.7);
}


.booking-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.booking-value {
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: 0.5px;
}


@media (min-width: 900px) {


    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
    }

    .about-image img {
        height: 460px;
    }


    .section {
        padding: 160px 20px;
    }

  
    .gallery-grid img {
        height: 340px;
    }

 
    .spotify-player iframe {
        height: 420px;
    }

   
    .booking-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-image img {
        height: 300px;
    }

    .about-text p {
        text-align: center;
    }
}


