@font-face {
    font-family: poppins;
    src: url(./Fonts/Poppins-Light.ttf);
}

* {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    box-sizing: border-box;
    font-family: "poppins";
}


/* ---------navbar----------- */
.check-box{
    display: none;
}

label{
    display: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 1000;
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin: 0 15px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover{
    color: #fe914f;
    transition: all .5s;
}

.nav-links .active{
    color: #fe914f;
}


/* --------------hero section--- */


.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3),black),url(./Images/Container/head-container.jpg) no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-attachment: fixed;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h2 {
    color: #fff;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 0;
    min-width: 200px;
}
.hero-content p{
    text-align: center;
    font-size: 1rem;
    line-height: 20px;
}
.hero-content span {
    color: #fe914f;
}
.buttons {
    margin-top: 10px;
}
 
.hero-content .btn {
    background: transparent;
    border: 1px solid #fe914f;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
}

.hero-content .btn:hover{
    background: transparent;
    color: #fe914f;
    transition: all .5s;
    transform: scale(1.07);
}

/* ---------price container--------------- */

.price-container {
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7),black),url(./Images/Container/footer.jpg) no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    padding: 20px;
}

.price-heading{
    text-align: center;
    padding: 20px;
}

.price-heading img{
    width: 300px;
}
.price-heading h2{
    color: #fe914f;
}
.price-heading p{
    line-height: 30px;
}
.price-container-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
}

.card {
    /* background: lightgrey; */
    padding: 20px;
    border: 1px solid #fe914f;
    text-align: center;
    width: 300px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.card h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    /* color: #000; */
    color: #fff;
}
.card .price {
    color: #c89c5d;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.card ul {
    list-style: none;
    margin-bottom: 20px;
}
.card ul li {
    margin: 10px 0;
    /* color: #000; */
    color: #fff;
}
.card button {
    /* background: black; */
    background: #c89c5d;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.card button:hover {
    background: #fe914f;
}



/* ------------video container---------- */
.video-div{
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            /* background-color: #f4f4f4; */
            background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url(./Images/Container/section.jpg) no-repeat center center/cover;
}
.video-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9; /* Maintains video aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* -------------review container----------- */

.review-div{
    /* background: #f8f8f8; */
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8),black),url(./Images/Container/section.jpg) no-repeat center center/cover;
    padding: 20px;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}
.review-card {
    background: transparent;
    border: 1px solid #f4a261;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    flex: 1;
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.reviewer-name {
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
}
.stars {
    color: gold;
    margin-top: 5px;
}
.review-text {
    font-size: 0.95em;
    color: #fff;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
}
/* ------------section-bar----------- */

.service-section-container {
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url(./Images/Container/section.jpg) no-repeat center center/cover;
}
.services {
    padding: 50px 20px;
    color: #fff;
}

.services img{
    margin-top: 30px;
    width: 300px;
}
.services h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.services p{
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 20px;
}
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.service-card {
    border: 1px solid #fe914f;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
}
.service-card:hover {
    transform: scale(1.1);
}
.service-card i {
    font-size: 3em;
    color: #f4a261;
    margin-bottom: 10px;
}
.service-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #fe914f;
}
.service-card p {
    font-size: 1em;
    color: #ddd;
}

/* -----------gallery section------------ */
.gallery-section {
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8),black)   ,url(./Images/Container/section.jpg) no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.gallery-heading h1{
    color: #fe914f;
    line-height: 70px;
    text-align: center;

}

.gallery-heading img{
    width: 300px;
}

.gallery-heading button{
    align-items: center;
    background: transparent;
    border: 1px solid #fe914f;
    color: #fff;
    width: 110px;
    height: 40px;
    padding: 0px 10px;
    font-size: .9rem;
    border-radius: 5px;
}

.gallery-heading button:hover{
    color: #fe914f;
    transition: all .5s;
    transform: scale(1.06);
}

.gallery-container {
    width: 90%;
    margin-top: 10px;
    overflow: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding: 15px 5px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar{
    width: 0;
    height: 0;
}

.gallery {
    display: flex;
    gap: 10px;
}

.gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.03);
    transform: all .5s;
}


/* --------------about-------------- */

.about-div {
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8),black),url(./Images/Container/section.jpg) no-repeat center center/cover;
   text-align: center;
   background-attachment: fixed;
}
.about-section {
    padding: 80px 10%;
    /* background: #222; */
    color: #fff;
    text-align: center;
}
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.about-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
}
.about-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: left;
}
.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}
.highlight {
    color: #e67e22;
    font-weight: bold;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    color: #fff;
    background: #e67e22;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.btn:hover {
    background: #d35400;
}
.about-image {
    flex: 1;
    max-width: 45%;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}
.about-image img:hover {
    transform: scale(1.05);
    transform: all .5s;
}

/* --------------artist container------------------------- */

.artist-div{
    text-align: center;
    background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7),black),url(./Images/Container/artist.jpg) no-repeat center center/cover;
    padding: 20px;
}

.artist-container {
    max-width: 1200px;
    margin: 0px auto;
    /* padding: 20px; */
}
.artist-container img{
    width: 300px;
}
h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #fe914f;
    text-align: center;
}
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.artist-hover{
    position: absolute;
    bottom: 100px;
    align-content: center;
    text-align: center;
    width: 100%;
    height: 60px;
    right: 100%;
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7));
}
.artist-card:hover .artist-hover{
   right:0;
   transition: .5s;
}
.artist-card {
    position: relative;
    border: 1px solid #c89c5d;
    padding: 20px;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.artist-hover i{
    font-size: 3rem;
}
.artist-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.artist-card img:hover{
    transform: scale(1.06);
    transition: all .5s;
}
.artist-card h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #fe914f;
    text-align: center;
}
.artist-card p {
    text-align: center;
    font-size: 1rem;
    color: #666;
}


.bxl-instagram-alt:hover{
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.bxl-twitter:hover{
   color: skyblue;
   transition: all .5s;
}

.bxl-linkedin-square:hover{
    color: navy;
    transition: all .5s;
}

/* -------------------footer--------------------------- */

.footer {
    background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9),black),url('./Images/Container/contact.jpg') no-repeat center center/cover;
    padding: 30px 20px;
    text-align: center;
}

.footer-img img{
    width: 300px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}
.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-section h3 {
    display: block;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fe914f;
}
.menu{
    display:block
}
.menu li a:hover {
    color: #f4a261;
    transition: all .5s;
}

.footer-container .hours p{
    margin-top: 5px;
}
.footer-container .hours strong{
    color: #f4a261;
}

.footer-section a {
    color: white;
    text-decoration: none;
}
.social-icons i {
    width: 30px;
    font-size: 2rem;
    margin: 5px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.instagram-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.instagram-grid img:hover{
    transform: scale(1.04);
}
.bxl-facebook-square:hover{
    color: blue;
    transition: all .5s;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin: 5px 0;
}

.bottom-footer{
    margin-top: 16px;
}


/* --------contact-------- */
.contact-container{
    background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9),black),url('./Images/Container/contact.jpg') no-repeat center center/cover;
    /* background-color: #0c0c0c; */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;

}
.contact-container-1 {
    margin-top: 60px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    /* background: #111; */
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #f4a261;
    /* box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.4); */
}

.contact-container-1 h2 {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 3px;
    background: #f4a261;
    margin: 8px auto 20px auto;
}

p {
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #f4a261;
    background: transparent;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
}

textarea {
    height: 100px;
    resize: none;
}

.contact-container-1 .btn {
    display: inline-block;
    background: #f4a261;
    color: #111;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: #fe914f;
    transition: all .5s;
}

@media (max-width: 600px) {
    .contact-container{
        min-height: 650px;
    }
    .contact-container-1 {
        padding: 25px;
    }
    .contact-container-1 h2 {
        font-size: 24px;
    }
    input, textarea {
        font-size: 14px;
        padding: 10px;
    }
}




/* --------media quary----------- */

@media (max-width: 768px) {
     
    .hero {
        height: 600px;
    }
    label{
        display: block;
        font-size: 2rem;
        padding: 0px 20px;
    }

    .nav-links {
        position:fixed ;
        width: 100%;
        height: 400px;
        top: 60px;
        left: 100%;
        text-align: center;
        flex-direction: column;
        background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9));
    }

    .nav-links a{
        line-height: 60px;
    }

    #menu:checked~.nav-links{
          left: 0;
          transition: all 1s;
    }
    .hero-content h2 {
        font-size: 32px;
    }
    .container {
        flex-direction: column;
        align-items: center;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hide{
        display: none;
    }

    .card {
        width: 100%;
    }

    .grid {
        grid-template-columns: 1fr;
    }
    .artist-container {
        padding: 10px;
    }
    .service-container {
        flex-direction: column;
        align-items: center;
    }

    .container {
        flex-direction: column;
        text-align: center;
    }
    .about-content, .about-image {
        max-width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .about-section h2{
        font-size: 32px;
    }

      .gallery-container {
        width: 90%;
    }

    .gallery img {
        width: 250px;
        height: 150px;
    }

    .video-div{
        height: 250px;
       }

    


}