@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

body {
    min-height: 100vh;
    /* position: relative; */
}

body::-webkit-scrollbar {
    width: 0px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    backdrop-filter: blur(5px);
    z-index: 9;
}

header .logo {
    color: white;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

nav ul li {
    list-style: none;
    transition: all .3s ease;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

nav ul li:hover {
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.308);
    transform: translateY(-2px);
}

nav ul button,
.booking {
    padding: 5px 20px;
    background: rgba(255, 255, 255, 0.089);
    border: 1px solid rgba(255, 255, 255, 0.295);
    border-radius: 5px;
    color: white;
    transition: all .3s ease;
}

.booking a {
    text-decoration: none;
    color: white;
}

nav ul button:hover,
.booking:hover {
    box-shadow: 0px 0px 10px rgba(58, 1, 32);
    background: rgba(58, 1, 32, 0.2);
}

.active {
    position: relative;
}

.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: red;
}

.pseudoActive {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pseudoActive::after {
    transition: .3s ease;
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: red;
}

.pseudoActive:hover::after {
    width: 100%;
}

.fa-bars {
    color: white;
    height: 40px;
    width: 40px;
    font-size: 20px;
    display: none;
}


.hamburger{
    position: absolute;
    height: 300px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(20, 20, 20);
    top: 50%;
    left: -50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 10px black;
    z-index: 55;
    border-radius: 10px;
    transition: all .3s ease;
}

.hamburger ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hamburger ul li{
    list-style: none;
}

.hamburger ul li a{
    text-decoration: none;
    color: white;
}

.come{
    left: 50%;
}

/* section 1 */

.section1 {
    background-image: url(assets/back2.png);
    height: 100vh;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 100px;
    padding-top: 150px;
    padding-bottom: 20px;
}

.hero h1 {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 4rem;
}

.hero p {
    color: white;
    font-weight: 500;
    font-size: 25px;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
    padding-inline: 100px;
}

.buttons button {
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.274);
    text-transform: uppercase;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: all .3s ease;
}

.book {
    background: linear-gradient(135deg, #ff2d2b 75%, #cc7513);
}

.book:hover {
    box-shadow: 0px 0px 20px #ff2d2b;
    transform: translateY(-3px);
}

.view {
    background: linear-gradient(112deg, rgb(0, 0, 122) 2%, rgb(15, 84, 231) 76%, rgb(255 255 255 / 41%));
}

.view:hover {
    box-shadow: 0px 0px 20px #0f54e7;
    transform: translateY(-3px);
}

.book a,
.view a {
    text-decoration: none;
    color: white;
}

.ratings {
    width: 100%;
    background: rgb(20 20 20 / 73%);
    backdrop-filter: blur(10px);
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ratings::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            #ffffff,
            transparent);
}

.ratings::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            #ffffff,
            transparent);
}

.ratings ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
}

.ratings ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ratings ul li img {
    height: 25px;
}

/* section 2  */

.section2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: max-content;
    padding-block: 150px;
    background: linear-gradient(333deg, #000000, #000020f2, #000000);
    position: relative;
}

.section2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(255 255 255 / 21%), transparent);
}

.heading {
    width: 100%;
    text-align: center;
    color: white;
}

.heading h1 {
    font-weight: 600;
    text-transform: uppercase;
}

.cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    height: 300px;
    width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 10px;
    transition: all .3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 0px 20px #200020;
}

.img {
    height: 50%;
    background-image: url(assets/card1.avif);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px
}

.card .serviceHeading {
    color: white;
    font-size: 20px;
    text-align: center;
    width: 100%;
}

.card p {
    width: 100%;
    padding-inline: 20px;
    font-size: 12px;
    color: gray;
    text-align: center;
}

.img2 {
    background-image: url(assets/card2.avif);
}

.img3 {
    background-image: url(assets/card3.jpg);
}

.allServicesButton {
    display: flex;
    width: 100%;
    padding-inline: 30px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.allservices {
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: linear-gradient(135deg, rgb(255 255 255 / 4%), rgb(3, 3, 82), rgb(143, 4, 27) 115%);
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    font-size: 18px;
    transition: all .3s ease;
}

.allservices a {
    text-decoration: none;
    color: white;
}

.allServicesButton .left {
    height: 1px;
    width: 300px;
    background: linear-gradient(90deg, transparent, white);
}

.allServicesButton .right {
    height: 1px;
    width: 300px;
    background: linear-gradient(90deg, white, transparent);
}

.allservices:hover {
    transform: translateY(-3px);
    box-shadow: 0px 0px 20px rgba(21, 28, 95, 0.712);
}

/* section 3 */

.section3 {
    width: 100%;
    background: linear-gradient(333deg, #000000, #000020f2, #000000);
    padding-block: 80px;
    padding-inline: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.section3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(255 255 255 / 21%), transparent);
}


.section3 h1 {
    color: white;
    font-weight: 500;
    text-transform: uppercase;
}

.section3 p {
    color: gray;
    text-align: center;
}


footer {
    width: 100%;
    padding-block: 40px;
    padding-inline: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    color: white;
    background: linear-gradient(333deg, #000000, #000020f2, #000000);
    font-size: 20px;
    text-align: center;
}

.quicklinks ul li,
.service ul li,
.portfolio ul li,
.contact ul li {
    list-style: none;
    font-size: 15px;
    transition: .3s ease;
    cursor: pointer;
}

.quicklinks ul li a,
.service ul li a,
.portfolio ul li a,
.contact ul li a {
    text-decoration: none;
    color: white;
}

.quicklinks ul li:hover,
.service ul li:hover,
.portfolio ul li:hover {
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.308);
    transform: translateY(-2px);
}

.contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.copyright {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 12px;
    position: relative;
    height: 50px;
    background: linear-gradient(333deg, #000000, #000020f2, #000000);
}

.copyright::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 1px;
}

@media (max-width: 700px) {
    nav {
        display: none;
    }

    .fa-bars {
        display: block;
    }

    footer {
        width: 100%;
        padding-block: 40px;
        padding-inline: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-gap: 20px;
        justify-content: center;
        color: white;
        background: linear-gradient(333deg, #000000, #000020f2, #000000);
        font-size: 20px;
        text-align: center;
    }
}

@media (max-width:500px) {
    .buttons button {
        padding: 10px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .ratings ul {
        gap: 10px;
        font-size: 12px;
    }

    .heading h1 {
        font-size: 25px;
    }
}

@media (max-width:400px) {
    footer {
        grid-template-columns: 1fr;

    }

    .buttons button {
        padding: 5px;
        font-size: 10px;
    }

    .ratings ul li img {
        height: 15px;
    }
}