
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


*{
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    text-decoration: none;
    box-sizing: border-box;
}


img{
    width: 80%;
    display: flex;
}

a{
    text-decoration: none;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

/*hero*/
.banner{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.slider{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
}
#slideImg{
    width: 100%;
    height: 100%;
    animation: zoom 3s linear infinite;
}
@keyframes zoom{
    0%{
        transform: scale(1.3);
    }
    15%{
        transform: scale(1.2);
    }
    85%{
        transform: scale(1);
    }
    100%{
        transform: scale(1);
    }
}
.overlay{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
}
.navbar{
    width: 85%;
    display: flex;
    align-items: center;
    margin: 35px auto;
}
.logo{
    flex-basis: 15%;
}
.logo img{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    cursor: pointer;
}
.content{
    width: 100%;
    margin: 200px auto  0;
    text-align: center;
    color: #fff;
}
.content h1{
    font-size: 60px;
    margin-bottom: 20px;
}
.content h3{
    width: 80%;
    margin: 20px auto;
    font-weight: bold;
    line-height: 25px;
}
button{
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin:  0 auto;
    border-radius: 15px;
    font-weight: bold;
    border: 2px solid #fff;
    background: #8B0000;
    color: #fff;
    cursor: pointer;
    transition: background 0.5s;
}
button a{
    color: #fff;
}
button:hover{
    background: transparent;
    border: 2px solid #fff;
}
.btn-2{
    border: 2px solid #8B0000;
    background: transparent;
}
.btn-2:hover{
    border: 2px solid #fff;
    background: #8B0000;
}
/*service*/
.servicecard {
    width: 100%;
    margin: auto;
    padding: 5rem 1rem;
    text-align: center;
    background-color: #191919;
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    color: #fff;
}

.servicecard .service {
    background-color: black;
    padding: 1rem;
    border: 2px solid #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.servicecard .service h4,
.servicecard .service p {
    color: #fff;
    flex-grow: 1;
}

.servicecard .service:hover {
    background-color: #8B0000;
    border-color: #fff;
}

.servicecard .service span {
    display: inline-block;
    background-color: #8B0000;
    padding: 2px 9px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #fff;
    border-radius: 5px;
}
/*GALLERY*/

.gallery-container{
    width: 1400px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    columns: 4;
    column-gap: 40px;
}

.gallery-container .box{
    width: 100%;
    margin-bottom: 10px;
    break-inside: avoid;
}

.gallery-container .box img{
    max-width: 100%;
    height: fit-content;
    border-radius: 15px;
}

@media (max-width: 1200px) {
    .gallery-container{
        width: calc(100% - 40px);
        columns: 3;
    }
}

@media (max-width: 768px) {
    .gallery-container{
        columns: 2;
    }
}


@media (max-width: 480px) {
    .gallery-container{
        columns: 1;
    }
}
/*testimonial*/
.feedback{
    width: 100%;
    padding: 1rem;
    background-color:#191919;
}

.feedback h5, .feedback h3{
    color: #fff;
}

.feedback .customers{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feedback .customers .item {
    flex: 1 1 300px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: #fff 2px solid;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feedback .customers .item:hover{
    border-color: #8B0000;
}

.feedback .customers .item .rating{
    color: #FFFF00;
    font-size: 18px;
}

.feedback .customers .item p{
    color: #fff;
    line-height: 18px;
    font-size: 12px;
}

.feedback .customers .item .user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback .customers .item .user img{
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

.feedback .customers .item .user h5{
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 3px;
}

.feedback .customers .item .user p{
    font-size: 10px;
}
/*offers*/

.offercard{
    width: 100vw;
    padding: 10rem 2rem 0; 
    background-color: #191919;
}

.offercard .offercard-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: -6px;
    padding: 1rem;
}

.offercard .offercard-items .item1{
    background-image: url('/images/party3.jpg'); 
    opacity: 1.0;
    background-size: cover; 
    background-position: center;
    background-color: black;
    border-radius: 10px;
    padding: 32px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(100% / 1.5);
    max-width: 350px; 
}

.offercard .offercard-items .item2{
    background-image: url('/images/party.jpg'); 
    background-size: cover; 
    background-position: center;
    background-color: black;
    width: calc(100% / 1.5); 
    max-width: 350px; 
    border-radius: 10px;
    padding: 32px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offercard .offercard-items .item3{
    background-image: url('/images/bridalservice2.jpg'); 
    background-size: cover; 
    background-position: center;
    width: calc(100% / 1.5); 
    max-width: 350px; 
    border-radius: 10px;
    padding: 32px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offercard .offercard-items .item1:hover{
    border-color: #b2830e;
}

.offercard .offercard-items .item2:hover{
    border-color: #b2830e;
}

.offercard .offercard-items .item3:hover{
    border-color: #b2830e;
}

.offercard .offercard-items .item1 .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8B0000;
    height: 50px;
    width: 50px;
    border-radius: 200px;
    margin-bottom: 1rem;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.offercard .offercard-items .item2 .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8B0000;
    height: 50px;
    width: 50px;
    border-radius: 200px;
    margin-bottom: 1rem;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.offercard .offercard-items .item3 .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8B0000;
    height: 50px;
    width: 50px;
    border-radius: 200px;
    margin-bottom: 1rem;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.offercard .offercard-items .item1 .icon i{
    font-size: 26px;
    color: #fff;
}

.offercard .offercard-items .item2 .icon i{
    font-size: 26px;
    color: #fff;
}

.offercard .offercard-items .item3 .icon i{
    font-size: 26px;
    color: #fff;
}

.offercard .offercard-items .item1 h4{
    font-size: 2rem;
    color: #FFFF00;
}

.offercard .offercard-items .item2 h4{
    font-size: 2rem;
    color: #FFFF00;
}

.offercard .offercard-items .item3 h4{
    font-size: 2rem;
    color:  #FFFF00;
}

.offercard .offercard-items .item1 h2{
    font-size: 1.5rem;
    color:  #000;
}

.offercard .offercard-items .item2 h2{
    font-size: 1.5rem;
    color: #000;
}
.offercard .offercard-items .item3 h2{
    font-size: 1.5rem;
    color: #000;
}

.offercard .offercard-items .item1 .offerbtn{
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    background-color: #DC143C;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.offercard .offercard-items .item1 .offerbtn:hover{
   background-color: #8B0000;
}


.offercard .offercard-items .item2 .offerbtn{
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    background-color: #DC143C;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.offercard .offercard-items .item2 .offerbtn:hover{
   background-color: #8B0000;
}


.offercard .offercard-items .item3 .offerbtn{
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    background-color: #DC143C;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.offercard .offercard-items .item3 .offerbtn:hover{
   background-color: #8B0000;
}

/*about*/
.about {
    width: 100%;
    padding: 5rem 1rem; 
    background-color: #191919;
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.about img {
    height: auto;
    width: 100%; 
    max-width: 600px;
    border-radius: 15px;
}

.about-text {
    width: 100%;
    max-width: 550px; 
    text-align: center; 
}

.about-text h5 {
    color: yellow;
    font-size: 2rem; 
    text-transform: capitalize;
    margin-bottom: 1.5rem; 
    letter-spacing: 1px;
}

.about-text p {
    color: #fcfcfc;
    letter-spacing: 1px;
    line-height: 1.5;
    font-size: 1rem;
    margin-bottom: 2rem; 
}

/*faq*/
section{
    min-height: 40vh;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #191919;
    color: #fff;
    border-bottom: #fff 2px solid;
}
.title{
    font-size: 3rem;
    margin: 2rem 0rem;
}
.faq{
    max-width: 600px;
    margin-top: 2rem;
    padding-bottom: 1rem;
    cursor: pointer;
}
.question{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.question h3{
    font-size: 1.5rem;
}
.answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
    border-bottom: #fff 2px solid;
}
.answer p{
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 1.4rem;
}
.faq.active .answer{
    max-height: 300px;
    animation: fade 1s ease-in-out;
}
.faq.active svg{
    transform: rotate(180deg);
}
svg{
    transition: transform 0.5s ease-in;
}
@keyframes fade{
   from{
    opacity: 0;
    transform: translateY(-10px);
   }
   to{
    opacity: 1;
    transform: translateY(0px);
   }
}
/*contact*/
.contactcard {
    max-width: 100%;
    margin: auto;
    padding: 2rem 1rem;
    text-align: center;
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.contactcard .card {
    background-color: black;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.contactcard .card h4, p {
    color: #fff;
}

.contactcard .card:hover {
    background-color: #8B0000;
    border-color: #fff;
}

.contactcard .card span {
    display: inline-block;
    background-color: #8B0000;
    padding: 2px 9px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #fff;
    border-radius: 5px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    color: #fff; 
}

.form-container form {
    width: 100%; 
    max-width: 400px; 
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, select, textarea {
    color: #fff;
    padding: 1rem;
    background: transparent;
    border: 1px solid;
    width: 100%;
    box-sizing: border-box; 
}

textarea {
    height: 6rem;
    color: #fff;
}

.form-button {
    width: 100%; 
    padding: 1.4rem;
    cursor: pointer;
    background: #8B0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-bottom: 35px;
}

.map {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; 
    margin-bottom: 80px; 
}

/*footer*/

footer{
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 2rem;
    background-color: black;
    padding: 20px;
}

footer .socials h4 {
    color: #fff; 
    font-size: 1.5rem; 
    margin-bottom: 10px; 
}
footer .column h4 {
    font-size: 1.5rem; 
    margin-bottom: 10px; 
    color: #fff;
}
footer .column .footer-logo{
    max-width: 100px;
    margin-bottom: 2rem;
}

footer .column p{
    color: #ccc;
    margin-bottom: 2rem;
}
footer .column a {
    color: #ccc; 
    display: block; 
    margin-bottom: 5px; 
    text-decoration: none; 
    transition: color 0.3s ease; /
}
footer .column a:hover {
    color: #fff; 
}
footer .column .socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

footer .column .socials a{
    color: #ccc;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 1.25rem;
    border-radius: 100%;
    transition: all 0.3s ease;
}

footer .column .socials a:hover{
    color: #fff;
    background-image: linear-gradient(to bottom, #8B0000, #b2830e);
    border-color: #b2830e;
}
.copyright {
    color: #fff; 
    background-color: #000;
    font-size: 0.9rem; 
    text-align: center; 
    padding: 10px 0; 
}
/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .navbar {
        width: 90%;
    }
    .logo img {
        width: 80px; 
        height: 80px;
    }

    .content {
        width: 90%; 
        margin: 100px auto 0; 
    }

    .content h1 {
        font-size: 40px;
    }

    .content h3 {
        width: 90%; 
    }
    .about-text h5 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.875rem; 
    }

    button {
        width: 150px; 
        margin-top: 20px; 
    }
    .offercard .offercard-items .item {
        width: calc(100% / 1.2); 
    }

    .offercard .offercard-items .item .icon {
        margin-bottom: 0.5rem; /
    }

    .offercard .offercard-items .item h4 {
        font-size: 1.5rem; 
    }

    .offercard .offercard-items .item h2 {
        font-size: 1.25rem; 
    }
    .servicecard {
        padding: 2rem 0.5rem;
    }
    .feedback .customers .item {
        flex-basis: 100%;
    }
    footer{
        grid-template-columns: 1fr;
    }
    .copyright {
        font-size: 0.8rem; 
    }
    .column {
        font-size: 0.9rem; 
    }
}
