@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/*AUTHOR: REJEP MAMMEDOV*/
/*URL: https://rejep.com*/
/*GITHUB: https://github.com/reppon97*/
/*EMAIL: reppon97@gmail.com*/

:root {
    --color-blue: #4262ae;
    --color-yellow: #f9d251;
    --color-gold: rgb(155, 130, 72);
    --font-text: "Raleway";
    --font-title: "Montserrat";
}

body {
    font-family: var(--font-text), sans-serif;
    font-feature-settings: 'lnum' 1;
    color: var(--color-blue);
}

body.loading {
    height: 100vh;
    overflow: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title), sans-serif;
    font-weight: 700;
}

section {
    position: relative;
}

.section-padding {
    padding: 120px 0;
}

/*PAGE LOADER*/

.page-loader {
    width: 100vw;
    z-index: 999;
    background-color: var(--color-blue);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
}

.loader-images {
    position: relative;
    height: 100%;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.loader-images img {
    position: absolute;
    width: 300px;
    display: inline-block; /* keeps layout stable */
    transform-origin: 50% 50%; /* rotate around center */
    animation: spin 8s linear infinite;
}

.loader-images img:nth-child(1) {
    top: 10%;
    left: 10%;
}

.loader-images img:nth-child(2) {
    top: 13%;
    right: 15%;
    animation: spin-reverse 8s linear infinite;
}

.loader-images img:nth-child(3) {
    bottom: 13%;
    right: 10%;
}

.loader-images img:nth-child(4) {
    bottom: 8%;
    left: 12%;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loader-logo img {
    margin: 0 auto;
    width: 200px;
}


/*PAGE BANNER*/

.page-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
}

.has-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    background-color: #000;
    opacity: .45;
}

.page-banner h1 {
    letter-spacing: 12px;
    font-size: 45px;
    color: #fff;
    position: relative;
    text-align: center;
}

/*BUTTON*/

.nata-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    user-select: none;
    padding: 0.675rem 2rem;
    --btn-raise: 1rem;
    clip-path: polygon(var(--btn-raise) 0%, calc(100% - var(--btn-raise)) 0%, 100% 50%, calc(100% - var(--btn-raise)) 100%, var(--btn-raise) 100%, 0 50%);
    background-color: var(--color-yellow);
    color: #000;
    transition: .4s ease-in-out;
}

.nata-btn:hover {
    background-color: var(--color-blue);
    color: #fff;
}


/*HEADER*/

header {
    padding: .85rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 998;
}

header .logo {
    text-align: center;
}

header .logo img {
    width: 100px;
    margin: 0 auto;
}

.sidebar-toggle span.line {
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.sidebar-toggle {
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar-social ul {
    display: flex;
    gap: 1.75rem;
    justify-content: flex-end;
    color: #fff;
    font-size: 18px;
}

header .sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    background-color: var(--color-blue);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    width: 100%;
    max-width: 525px;
    max-height: 100vh;
    padding: 3.33rem;
    transition: .6s ease-in-out;
}

.sidebar.show {
    left: 0;
}


.sidebar .close-btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-bottom: 30px;
    cursor: pointer;
}

.sidebar .logo {
    margin-bottom: 40px;
}

.sidebar .logo img {
    width: 150px;
}

.sidebar .navbar-menu {
    margin-bottom: 80px;
}

.sidebar .navbar-menu ul li {
    margin-bottom: .85rem;
    text-align: center;
}

.sidebar .navbar-menu ul li a {
    font-weight: 800;
    letter-spacing: 7px;
    font-size: 20px;
}

.sidebar .social ul {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    font-size: 16px;
}

.sidebar .social ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #7795d8;
    width: 30px;
    height: 30px;
}

.backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    background-color: #000;
    z-index: 998;
    /*pointer-events: none;*/
    opacity: .65;
    transition: .4s ease-in-out;
}

.backdrop.show {
    left: 0;
}

/*FOOTER*/

footer {
    padding: 100px 0 0;
    color: #fff;
    background-color: var(--color-blue);
}

footer .logo img {
    width: 100px;
    margin: 0 auto;
}

footer .social ul {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    font-size: 16px;
}

footer .social ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #7795d8;
    width: 30px;
    height: 30px;
}

footer::after {
    background-color: inherit;
    background-image: url("/static/img/pattern.svg");
    background-position: 0 -2px;
    background-size: 25px;
    border-top: 1px solid rgb(203, 184, 126);
    content: "";
    display: block;
    height: 3.33333rem;
    margin-top: 1.11111rem;
    width: 100%;
}

/*HERO*/

section.hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    height: 100%;
}

.hero-video::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-color: #000;
    opacity: .45;
}

.hero .hero-meta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
    text-align: center;
    padding-inline: 1.25rem;
}

.hero-meta h1 {
    font-size: 45px;
    letter-spacing: 3px;
    font-weight: 500;
}


/*BG SHAPE*/

.bg-shape {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.bg-shape img {
    width: 350px;
}

/*HOMEPAGE*/


.home-about {
    text-align: center;
}

.home-about h6 {
    font-size: 12px;
    margin-bottom: 2rem;
}

.home-about h1 {
    font-size: 35px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.home-about p {
    font-size: 18px;
    margin-bottom: 2rem;
}

.nata-bg {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
}

.nata-bg h1 {
    font-size: 45px;
    color: #fff;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.nata-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: .45;
}

/*CONTACT*/

.contact form {
    border: 1px solid #dfdfed;
    padding: 3rem;
    border-radius: 5px;
}

.contact form input, .contact textarea {
    border: 1px solid #dfdfed;
    width: 100%;
    padding: .55rem 1rem;
    border-radius: 5px;
}

.contact form p {
    font-size: 14px;
}

.form-group {
    padding-inline: .35rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 11px;
    position: relative;
}

.form-group span {
    position: absolute;
    right: -10px;
    top: 0;
    width: 3px;
    height: 3px;
    background-color: red;
    border-radius: 50%;
}

.submit-btn {
    border: 1px solid;
    border-color: #c8b57b;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    padding: .8rem 2rem;
    font-size: 14px;
}

.g-map {
    padding-top: 80px;
}

.g-map iframe {
    width: 100%;
    height: 400px;
}

.contact-box {
    border: 1px solid #dfdfed;
    padding: 2.45rem;
    position: relative;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 13px;
}

.contact-box i {
    position: absolute;
    font-size: 80px;
    right: 30px;
    top: 30px;
    line-height: 1;
    opacity: .1;
}

.message-box {
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #dfdfed;
}

/*GIFT SET*/

.gift-swiper .swiper-pagination-bullet {
    background-color: transparent;
    border: 2px solid #fff;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.gift-swiper .swiper-pagination-bullet-active {
    background-color: #fff;
}

.gift-img-wrapper {
    height: 550px;
    overflow: hidden;
}

.gift-img-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.gift-swiper .swiper-horizontal > .swiper-pagination-bullets, .gift-swiper .swiper-pagination-horizontal.swiper-pagination-bullets {
    text-align: right;
    padding-right: 2rem;
}

.gift-swiper h6 {
    color: #fff;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 2;
    font-size: 22px;
    letter-spacing: 1px;
}

.gift h1 {
    font-size: 25px;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.gift p {
    margin-bottom: .75rem;
    font-size: 14px;
}

.package-img {
    padding: 2rem;
    border: 1px solid #e4e4e4;
    margin-bottom: 1rem;
}

/*ABOUT US*/
.beige-bg {
    background-color: rgb(248, 245, 236);
}

.hex-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    clip-path: polygon(
            25% 6.7%, 75% 6.7%,
            100% 50%, 75% 93.3%,
            25% 93.3%, 0% 50%
    );
    margin: 0 auto;
}

.about-video iframe {
    width: 100%;
    height: 540px;
}

/*GALLERY*/

.gallery-swiper .swiper-slide {
    height: 430px;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px; /* optional, keeps layout tidy */
    margin: 0 auto;
}

.gallery-swiper {
    overflow: visible; /* needed so half slide and arrows show */
    position: relative;
}

.gallery-swiper {
    position: relative;
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgb(155, 130, 72);
    color: rgb(155, 130, 72);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    cursor: pointer;
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
    background: rgb(155, 130, 72);
    color: #fff;
}

.gallery-swiper .swiper-button-prev {
    left: calc(50% - 375px); /* Adjust this based on your slide width */
}

.gallery-swiper .swiper-button-next {
    right: calc(50% - 375px);
}

/* Remove Swiper default arrow icons */
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
    display: none;
}

.gallery-swiper svg {
    display: none;
}

