@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: "Roboto", sans-serif;
}

body {
    padding-bottom: 80px;
    background-color: #10091D;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 1000'%3E%3Cg %3E%3Ccircle fill='%2310091D' cx='50' cy='0' r='50'/%3E%3Cg fill='%23140e24' %3E%3Ccircle cx='0' cy='50' r='50'/%3E%3Ccircle cx='100' cy='50' r='50'/%3E%3C/g%3E%3Ccircle fill='%2316122b' cx='50' cy='100' r='50'/%3E%3Cg fill='%23191432' %3E%3Ccircle cx='0' cy='150' r='50'/%3E%3Ccircle cx='100' cy='150' r='50'/%3E%3C/g%3E%3Ccircle fill='%231d1739' cx='50' cy='200' r='50'/%3E%3Cg fill='%23201940' %3E%3Ccircle cx='0' cy='250' r='50'/%3E%3Ccircle cx='100' cy='250' r='50'/%3E%3C/g%3E%3Ccircle fill='%23241b48' cx='50' cy='300' r='50'/%3E%3Cg fill='%23281e4f' %3E%3Ccircle cx='0' cy='350' r='50'/%3E%3Ccircle cx='100' cy='350' r='50'/%3E%3C/g%3E%3Ccircle fill='%232c2057' cx='50' cy='400' r='50'/%3E%3Cg fill='%2330235f' %3E%3Ccircle cx='0' cy='450' r='50'/%3E%3Ccircle cx='100' cy='450' r='50'/%3E%3C/g%3E%3Ccircle fill='%23342566' cx='50' cy='500' r='50'/%3E%3Cg fill='%2339276e' %3E%3Ccircle cx='0' cy='550' r='50'/%3E%3Ccircle cx='100' cy='550' r='50'/%3E%3C/g%3E%3Ccircle fill='%233d2a76' cx='50' cy='600' r='50'/%3E%3Cg fill='%23422c7e' %3E%3Ccircle cx='0' cy='650' r='50'/%3E%3Ccircle cx='100' cy='650' r='50'/%3E%3C/g%3E%3Ccircle fill='%23472e86' cx='50' cy='700' r='50'/%3E%3Cg fill='%234c308e' %3E%3Ccircle cx='0' cy='750' r='50'/%3E%3Ccircle cx='100' cy='750' r='50'/%3E%3C/g%3E%3Ccircle fill='%23513296' cx='50' cy='800' r='50'/%3E%3Cg fill='%2357349e' %3E%3Ccircle cx='0' cy='850' r='50'/%3E%3Ccircle cx='100' cy='850' r='50'/%3E%3C/g%3E%3Ccircle fill='%235c36a7' cx='50' cy='900' r='50'/%3E%3Cg fill='%236238af' %3E%3Ccircle cx='0' cy='950' r='50'/%3E%3Ccircle cx='100' cy='950' r='50'/%3E%3C/g%3E%3Ccircle fill='%23683AB7' cx='50' cy='1000' r='50'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: contain;
}

@media screen and (min-width: 600px) {
    body {
        padding-bottom: 0;
    }
}

.section-heading {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.section-heading h2 {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 28px;
    font-weight: 700;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

.section-heading h2::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: #c7c9f2;
    opacity: 0.8;
    border-radius: 3px;
    transform: skewX(20deg) rotate(1deg);
}

p {
    font-size: 15px;
    line-height: 1.5;
    color: #2d2d2d;
}

.primary-btn {
    padding: 16px 40px;
    margin: 40px auto 0;
    display: block;
    min-width: 120px;
    max-width: max-content;
    border-radius: 5px;
    background-color: #683ab7;
    color: white;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

.primary-btn.full-width {
    width: 100%;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.profile-header {
    padding: 8px 16px;
    background-color: #fff;
    box-shadow: 0 1px 9px rgba(0, 0, 0, 0.12);
    display: flex;
    width: fit-content;
    position: absolute;
    top: 0px;
}

.profile-header .lang-switcher {
    position: relative;
    z-index: 20;
}

.profile-header .lang-switcher:hover .options {
    display: block;
}

.profile-header .lang-switcher .current {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #f8f8f8;
    cursor: pointer;
}

.profile-header .lang-switcher .current img {
    width: 20px;
}

.profile-header .lang-switcher .current span {
    font-size: 16px;
    font-weight: 400;
}

.profile-header .lang-switcher .options {
    position: absolute;
    z-index: 9;
    top: calc(100% + 0px);
    left: 0;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.12);
    display: none;
}

.profile-header .lang-switcher .options ul {
    padding: 8px 0;
    list-style-type: none;
}

.profile-header .lang-switcher .options li {
    padding: 8px 24px;
    cursor: pointer;
}

.profile-header .lang-switcher .options li:hover {
    background-color: #c7c9f2;
}

#hero {
    position: relative;
    padding: 0 18px;
    padding-top: 200px;
    text-align: center;
}

#hero .cover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-image: url("../assets/img/cover.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 280px;
}

#hero .cover .shape-top,
#hero .cover .shape-bottom {
    overflow: hidden;
    position: absolute;
    left: 0;
    line-height: 0;
    fill: #0b0320;
}

#hero .cover .shape-top {
    width: 100.6%;
    bottom: -1px;
    margin-right: -1px;
    margin-left: -1px;
}

#hero .cover .shape-bottom {
    width: 100%;
    top: 100%;
    direction: ltr;
}

#hero .logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
    z-index: 2;
}

#hero .logo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}

#hero h1 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 700;
}

#hero h4 {
    font-size: 24px;
    font-weight: 400;
}

#hero .links {
    /* margin-top: 28px; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
    column-gap: 8px;
}

#hero .links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

#hero .links .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    /* background-color: rgba(104, 58, 183, 0.04); */
}

#hero .links .icon img {
    width: 24px;
}

#hero .links span {
    color: black;
    font-size: 16px;
    font-weight: 400;
}

@media screen and (min-width: 600px) {
    #hero {
        padding-top: 230px;
    }

    #hero .cover {
        height: 320px;
    }

    #hero .logo {
        width: 200px;
        height: 200px;
    }

    #hero .links {
        display: flex;
        align-items: center;
        justify-content: center;
        row-gap: 32px;
        column-gap: 32px;
        flex-wrap: wrap;
    }

    #hero .links .icon {
        width: 58px;
        height: 58px;
    }
}

#about {
    /* margin-top: 32px; */
    padding: 0px 20px;
    max-width: 650px;
    margin: 0px auto 0;
}

#about p {
    font-size: 19px;
}

#about h3 {
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    margin-top: 0px;
}

#about .services {
    margin-top: 30px;
}

#about .services .panel {
    border: 1px solid #ccc;
    border: 1px solid rgba(104, 58, 183, 0.4);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

#about .services .panel-header {
    background-color: #f0f0f0;
    background-color: rgba(104, 58, 183, 0.16);
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#about .services .panel-header h4 {
    flex: 1;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
}

#about .services .panel-header img {
    transition: all 0.3s ease-in-out;
}

#about .services .panel-body {
    max-height: 0;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

#about .services .panel .content {
    padding: 12px 20px;
}

#about .services .panel:hover .panel-header img {
    transform: rotate(180deg);
}

#about .services .panel:hover .panel-body {
    max-height: 600px;
    opacity: 1;
}

#gallery {
    padding: 40px 20px;
}

#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

#gallery .gallery-item {
    height: 160px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 8px;
}

#gallery .gallery-item img {
    width: 100%;
}

@media screen and (min-width: 600px) {
    #gallery {
        max-width: 900px;
        margin: 0 auto;
    }

    #gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #gallery .gallery-item {
        height: 240px;
    }
}

#testimonials {
    padding: 40px 20px;
}

#testimonials .card {
    background-color: #fff;
    box-shadow: 0 1px 13px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 24px 20px;
}

#testimonials .card .customer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 24px;
}

#testimonials .card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

#testimonials .card h3 {
    font-size: 18px;
    font-weight: 400;
}

@media screen and (min-width: 600px) {
    #testimonials {
        max-width: 650px;
        margin: 0 auto;
    }
}

#contact {
    padding: 60px 20px 40px;
    max-width: 100vw;
}

#contact>p {
    text-align: center;
}

#contact form {
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(5px);
    padding: 24px 16px;
    border-radius: 12px;
}

#contact .form-field {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 16px;
}

#contact .form-field label {
    font-size: 15px;
    font-weight: 400;
}

#contact .form-field input {
    height: 44px;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 16px;
    border: 1px solid #ddd;
}

#contact .form-field input:focus {
    outline: 2px solid #683ab7;
}

#contact .form-field textarea {
    border-radius: 4px;
    padding: 8px 12px;
    resize: vertical;
    min-height: 120px;
    font-size: 16px;
    border: 1px solid #ddd;
}

#contact .form-field textarea:focus {
    outline: 2px solid #683ab7;
}

#contact .primary-btn {
    margin-top: 24px;
}

@media screen and (min-width: 600px) {
    #contact {
        max-width: 650px;
        margin: 0 auto;
    }

    #contact form {
        box-shadow: none;
        background-color: transparent;
    }
}

.bottom-nav-bar {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    background-color: #683ab7;
    background-color: #fff;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
}

.bottom-nav-bar .nav-item {
    padding: 8px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    position: relative;
    cursor: pointer;
}

.bottom-nav-bar .nav-item a {
    text-decoration: none;
    text-align: center;
}

.bottom-nav-bar .nav-item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #f2f2f2;
    width: 1px;
    height: 40%;
    transform: translateY(-50%);
}

.bottom-nav-bar .nav-item.menu .icon {
    background-color: #3C40C6;
    margin: auto;
}

.bottom-nav-bar .nav-item.booking .icon {
    background-color: #683ab7;
}

.bottom-nav-bar .nav-item.whatsapp .icon {
    background-color: #56ce62;
}

.bottom-nav-bar .nav-item.waze .icon {
    background-color: #33ccff;
}

.bottom-nav-bar .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav-bar .icon img {
    width: 28px;
}

.bottom-nav-bar span {
    font-size: 14px;
}

@media screen and (min-width: 1000px) {
    .bottom-nav-bar {
        flex-direction: column;
        left: auto;
        bottom: 40px;
        right: 24px;
        width: auto;
        background-color: transparent;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 12px 0;
        gap: 12px;
        backdrop-filter: blur(5px);
    }

    .bottom-nav-bar .nav-item::after {
        display: none;
    }

    .bottom-nav-bar .nav-item span {
        color: white;
    }
}

.footer-container {
    width: fit-content;
    margin: auto;
    text-align: center;
    display: grid;
}

.footer-container img {
    max-width: 150px;
    margin: auto;
}

/*# sourceMappingURL=index.css.map */
