:root {
    --pink: #213C5A;
    --coral: #F2B24D;
    --purple: #D49A3A;
    --dark-text: #1a1a1a;
    --p-font: "Montserrat", sans-serif;
    --header-font:"Bricolage Grotesque", sans-serif;
    --bg-gradient: #f9f2c82a;
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: "Bricolage Grotesque", sans-serif;
}

body {
    background: var(--bg-gradient);
    min-height: 100vh;
    color: var(--dark-text);
    display: flex;
    overflow-x: hidden;
    background-color: var(--bg-gradient);
    flex-direction: column;
    align-items: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    transition: 0.5s;
    align-items: start;
    z-index: 100;
    position: fixed;
    top:0px;
    background-color: rgba(255, 255, 255, 0.377);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 90px;
    overflow: hidden;
    padding: 20px 8%;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
}
.logo img{
    height: 45px;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
}
.nav-links a:hover{
    color: var(--purple);
}

.btn-book {
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #333;
    background: white;
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-weight: 600;
}
.icon{
    padding: 10px;
    display: none;
    font-size: 25px;
    background-color: transparent;
    border: none;
    border-radius: 5px;
}
.icon:hover{
    background-color: #f1a7d133;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 190px 20px 60px;
}

.hero h1 {
    font-size: 4rem;
    font-family: var(--header-font);
    font-weight: 700;
    animation: appear ease-in-out 0.9s 1;
}
@keyframes appear {
    from{
        opacity: 0;
        transform: translateX(-20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.hero .welcome{
    background-color: #213c5a2d;
    padding: 7px 15px;
    border-radius: 50px;
    outline: none;
    border: none;
    font-weight: 500;
    animation: appear1 ease-in-out 0.9s 1;
    color: #000;
}
@keyframes appear1 {
    from{
        opacity: 0;
        transform: translateX(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.accent-font {
    font-family: 'Pacifico', cursive;
    animation: appear ease-in-out 0.9s 1;
    color: var(--coral);
    font-weight: 400;
    position: relative;

}
.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--pink);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.6;
}

.hero p {
    color: #666;
    margin-bottom: 30px;
    font-family: var(--p-font);
    font-size: 1.1rem;
    animation: appear1 ease-in-out 0.9s 1;
}

.btn-explore {
    text-decoration: none;
    background: var(--pink);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    transition: 0.5s;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(241, 167, 209, 0.4);
    animation: appear ease-in-out 0.9s 1;
}
.btn-explore:hover{
    background-color: var(--purple);
}
/* Phone Nav Section */
.phone-nav{
    height: fit-content;
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    gap: 8px;
    top: 90px;
}
.phone-nav a{
    font-size: 14px;
    text-decoration: none;
    font-family: var(--header-font);
    margin-bottom: 10px;
    color: var(--dark-text);
    transition: 0.3s;
}
.phone-nav a:hover{
    color: var(--pink)
}
.phone-nav button{
   width: 90%;
   background-color: var(--purple);
   height: 40px;
   border-radius: 10px;
   flex: none;
   border: none;
   color: #f0f0f0;
   cursor: pointer;
}
/* Features Cards */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 8%;
    flex-wrap: wrap;
}

.card {
    display: flex;
    align-items: center;
    animation: appear3 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    padding: 20px;
    border-radius: 20px;
    width: 320px;
    color: white;
    gap: 15px;

}
@keyframes appear3 {
    from{
    opacity: 0;
    scale: 0;
    transform: translateY(-30px)
    };
    to{
    opacity: 1;
    scale: 0;
    transform: translateY(0);
    }
}
.pink { background-color: var(--pink);}
.coral { background-color: var(--coral);}
.purple { background-color: var(--purple);}

.icon-placeholder {
    font-size: 2.5rem;
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 15px;
}

.card-text h3 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}

.card-text p {
    font-size: 0.85rem;
    opacity: 0.9;
}
/*Features Section*/
.features2{
    font-size: 25px;
    width: 80%;
    height: fit-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    animation: fade ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
@keyframes fade {
    from{
    opacity: 0;
    transform: translateY(-100px)
    };
    to{
    opacity: 1;
    transform: translateX(0);
    }
}
.features2 p{
    font-size: 16px;
    color: gray;
    margin-top: 15px;
    font-family: var(--p-font);
    width: 100%;
}
.feature-section{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 8%;
    flex-wrap: wrap;
}


.icon-box {
  background-color: #fff; 
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.services-container{
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0px;
    position: relative;
    justify-content: space-between;
    gap: 20px;
    width: 90%;
}
.feature-section .services-container .services-content{
    height: fit-content;
    animation: apear 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    width: 320px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(241, 167, 209, 0.4);
    transition: 0.9s;
    overflow: hidden;
    background-color: var(--pink);
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
}
.feature-section .services-container .services-content:hover{
    transform: translateY(-10px);
}
.feature-section .services-container .services-content button{
    width: fit-content;
    padding: 15px;
    border-radius: 15px;
    outline: none;
    border: none;
    background: white;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--purple);
}
@keyframes apear {
    from{
    opacity: 0;
    transform: translateX(-100px)
    };
    to{
    opacity: 1;
    transform: translateX(0);
    }
}
.feature-section .services-container .services-content h3{
    font-size: 20px;
    margin: 5px ;
    color: white;
}
.feature-section .services-container .services-content p{
    width: 90%;
    margin: 15px 15px;
    color: white;
}
.feature-section .services-container .services-content a i{
    font-size: 17pmarx;
    transition: 0.5s;
    margin-left: 5px;
}
.feature-section .services-container .services-content a:hover i{
    transform: translateX(5px);
}

.first-icon{
    position: absolute;
    height: 200px;
    left: -100px;
    z-index: -1;
    opacity: 0.1;
}
.second-icon{
    position: absolute;
    height: 200px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    opacity: 0.1;
}
/* About section */
#about{
    height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    align-items: center;
}
#about .container{
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: row;
    gap: 50px;
}
#about .container .text{
    display: flex;
    flex-direction: column;
    justify-content:center;
    height: 100dvh;
    width: 45%;
    align-items: left;
}
#about .container .img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
#about .container .img img{
    width: 100%;
    animation: apear 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    border-radius: 10px;
    transition: 0.5s;
}
#about .container .img img:hover {
  transform: translateY(-9px);
}
#about .container button{
    padding: 5px 25px;
    border-radius: 50px;
    background-color: #d4993a3a;
    color: var(--pink);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 14px;
    margin: 30px 0px;
    width:fit-content;
}

#about .container button i{
    margin-right: 5px;
    font-size: 20px;
}
#about .container h1{
    font-size: 40px;
    margin-bottom: 10px;
    font-family: var();
    animation: apear2 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
@keyframes apear2 {
    from{
    opacity: 0;
    transform: translateX(100px)
    };
    to{
    opacity: 1;
    transform: translateX(0);
    }
}
#about .container p{
    font-size: 1.1rem;
    animation: apear 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
#about .container a{
    background-color: var(--pink);
    width: fit-content;
    box-shadow: 0 10px 20px rgba(241, 167, 209, 0.4);
    padding: 15px 40px;
    margin-top: 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #f0eaff;
    transition: 0.5s;
}
#about .container a:hover{
    background-color: var(--purple);
}
/* Services Section */
#services{
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
    align-items: center;
}
#services .header{
    width: 90%;
    margin-top: 120px;
    text-align: center;
    animation: apear 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
#services .header h1{
    font-size: 40px;
}
#services .services-container{
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0px;
    position: relative;
    justify-content: space-between;
    gap: 20px;
    width: 90%;
}
#services .services-container .services-content{
    height: fit-content;
    animation: apear 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    width: 49%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(202, 201, 202, 0.4);
    transition: 0.9s;
    overflow: hidden;
    background-color: var(--pink);
    display: flex;
    flex-direction: column;
}
#services .services-container .services-content:hover{
    transform: translateY(-10px);
}
#services .services-container .services-content button{
    width: fit-content;
    margin: 15px ;
    padding: 15px;
    border-radius: 15px;
    outline: none;
    border: none;
    background: white;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--purple);
}
@keyframes apear {
    from{
    opacity: 0;
    transform: translateX(-100px)
    };
    to{
    opacity: 1;
    transform: translateX(0);
    }
}
#services .services-container .services-content h1{
    font-size: 20px;
    margin: 0px 15px;
    color: white;
}
#services .services-container .services-content p{
    width: 90%;
    margin: 15px 15px;
    color: white;
}
#services .services-container .services-content a{
    width: fit-content;
    background-color: white;
    border-radius: 50px;
    padding: 9px 15px;
    color: black;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    margin-left: 15px;
}
#services .services-container .services-content a i{
    font-size: 17pmarx;
    transition: 0.5s;
    margin-left: 5px;
}
#services .services-container .services-content a:hover i{
    transform: translateX(5px);
}

/*Testimonial Section*/
#testimonial{
    height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
    align-items: center;
}
.testimonial-header-text{
    margin-top: 90px;
    text-align: center;
}
.testimonial-header-text p{
    margin-top: 10px;
}
.testimonial-header-text h1{
    font-size: 40px;
    text-align: center;
     animation: appear 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
.testimonial-content{
    width: 90dvw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;
    height: fit-content;
    gap: 70px;
}
.testimonial-content .testimony{
    height: fit-content;
    padding: 15px 20px;
     animation: appear3 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    border-radius: 30px;
    position: relative;
    width: 300px;
}
.testimonial-content .testimony:nth-child(2):after{
    content: '';
    background:var(--pink);
    position: absolute;
    height: 50%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 5px;
    top: 0;
    left: 0;
    display: flex;
    z-index: 1;
}
.testimonial-content .testimony::after{
    content: '';
    background:var(--purple);
    position: absolute;
    height: 50%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 5px;
    top: 0;
    left: 0;
    display: flex;
    z-index: 1;

}
.testimonial-content .testimony .user{
    height: 50px;
    width: 50px;
    background-color: gainsboro;
    font-size: 20px;
    border-radius: 50px;
    display: flex;
    margin-bottom:10px;
    justify-content: center;
    align-items: center;
}
.testimonial-content .testimony h2{
    margin-bottom: 10px;
}
.testimonial-content .testimony i{
    margin-top: 15px;
    color: gold;
    margin-right: 5px;
}
/*FAQs Section*/
#faqs{
    height: 100dvh;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#faqs .container{
    height: fit-content;
    width: 70%;
    margin-top: 0px;
    animation: apear 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    border-radius: 10px;
    background-color: var(--pink);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    padding: 50px 20px;
}
#faqs .container details{
    position: relative;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
     animation: appear3 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    width: 100%;
}
#faqs .container details summary{
    font-size: 20px;
    font-weight: 600;
}
#faqs .container details summary p{
    font-size: 20px;
    margin-top: 20px;
    width: 80%;
}
/* Footer */
#footer{
    height: 300px;
    display: flex;
    padding: 3% 3%;
    width: 100%;
    align-items: center;
    overflow: hidden;
    z-index: 99;
    gap: 100px;
    backdrop-filter: blur(10px);
    background-color: var(--dark-text);
}
#footer .footer-sec{
    height: 250px;
    flex:1;
    width: 320px;
}
#footer .footer-sec:nth-child(3){
    background-color: white;
    border-radius: 15px;
    height: fit-content;
    padding-bottom: 15px;
}
#footer .footer-sec:nth-child(3) p{
   font-family: var(--p-font);
   font-weight: 500;
   margin: 25px 15px;
}
#footer .footer-sec:nth-child(3) input{
   font-family: var(--p-font);
   font-weight: 500;
   margin: 0px 15px;
   width: 90%;
   height: 45px;
   padding: 0px 15px;
   border-radius: 10px;
   border: 1px solid var(--purple);

}
#footer .footer-sec:nth-child(3) input:focus{
  outline: none;
}
#footer .footer-sec:nth-child(3) button{
  height: 40px;
  width: 90%;
  background-color: var(--purple);
  border-radius: 10px;
  margin: 10px 15px;
  border: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--p-font);
}
#footer .footer-sec:nth-child(2){
    width: 200px;
}
#footer .footer-sec:nth-child(2){
    display: flex;
    flex-direction: column;
    color: white;
}
#footer .footer-sec:nth-child(2) h5{
    font-family: var(--p-font);
    font-size: 25px;
    margin-top: 30px;
    font-weight: 500;
    margin-bottom: 7px;
}
#footer .footer-sec:nth-child(2) a{
    text-decoration: none;
    color: white;
    margin-top: 10px;
}
#footer .footer-sec:nth-child(1){
    width: fit-content;
}
#footer .footer-sec:nth-child(1) h1{
    color: white;
    font-size: 40px;
}
#footer .footer-sec:nth-child(1) i{
    color: white;
    transition: 0.5s;
    margin-right: 15px;
    padding: 10px;
    background-color: var(--purple);
    border-radius: 50%;
    font-size: 25px;
}
#footer .footer-sec:nth-child(1) i:hover{
    background-color: var(--pink);
}
/*floating button*/
#socials{
    position: fixed;
    bottom: 30px;
    height: 60px;
    width: 60px;
    right: 40px;
    display: flex;
    justify-content: center;
    color: white;
    align-items: center;
    text-decoration: none;
    font-size: 40px;
    background-color: var(--pink);
    box-shadow: 0 10px 20px rgba(241, 167, 209, 0.4);
    border-radius: 50%;
    animation: apearr 1s ease-in-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
@keyframes apearr {
    from{
    opacity: 0;
    filter: blur(70px);
    transform: translateX(-120px)
    };
    to{
    opacity: 1;
    transform: translateX(0);
    }
}
/* Responsive Logic */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .icon{display: flex;}
    .btn-book{display: none;}
    #about .container{
        display: flex;
        flex-direction: column-reverse;
        gap: 0px;
    }
    #about .container .text{
        width: 100%;
        height: fit-content;
        margin-bottom: 20px;
    }
    #about .container .img{
        margin-top: 70px;
        width: 100%;
    }
    #services .services-container .services-content{
        width: 100%;
    }
    .feature-section .services-container .services-content{
        width: 100%;
    }
    .feature-section{
        width: 100%;
        display: flex;
        flex-direction: column;
        flex:1;
        flex-wrap: wrap;
    }
    #testimonial{
    height: fit-content;
}
#faqs .container{
    width: 90%;
}
#footer{
    flex-direction: column-reverse;
    gap: 20px;
    height: fit-content;
}
#footer .footer-sec{
    width: 90%;
}
#footer .footer-sec:nth-child(2){
    width: 90%;
}
}