/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
    font-family: iranyekan;
    font-style: normal;
    font-weight: normal;
    src: url('fonts/iranyekanwebregular.eot');
    src: url('fonts/iranyekanwebregular.eot?#iefix') format('embedded-opentype'),
    url('fonts/iranyekanwebregular.woff2') format('woff2'),
    url('fonts/iranyekanwebregular.woff') format('woff'),
    url('fonts/iranyekanwebregular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: titr;
    font-style: normal;
    font-weight: normal;
    src: url('fonts/titr.ttf');
    font-display: swap;
}


/*--------------------------------------------------------------
# Root / Brand Variables
--------------------------------------------------------------*/

:root {
    --color-dark: #1b1b1b;
    --color-dark-2: #262220;
    --color-cream: #f4ede3;
    --color-cream-2: #eee3d3;
    --color-gold: #c9a35c;
    --color-gold-dark: #a9803f;
    --color-text-dark: #1f1f1f;
    --color-text-light: #f5f2ee;
    --color-text-muted: #7a746c;
    --color-border: #e5dccb;

    --font-primary: iranyekan, "Poppins", sans-serif;
    --font-heading: titr, iranyekan, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 50px;

    --transition-base: all 0.35s ease-in-out;
}


/*--------------------------------------------------------------
# General / Reset
--------------------------------------------------------------*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: var(--font-primary);
    color: var(--color-text-dark);
    background-color: #ffffff;

    direction: rtl;
    text-align: right;

    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font-family: var(--font-primary);
    letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

p {
    letter-spacing: 0;
}

a {
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-gold);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.section-bg {
    background-color: var(--color-cream);
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--color-text-muted);
    margin: 0;
}


/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/

.text-justify {
    text-align: justify !important;
}

.text-big-1 {
    font-size: 1.1em !important;
}

.text-big-2 {
    font-size: 1.2em !important;
}

.text-big-3 {
    font-size: 1.3em !important;
}

.text-big-4 {
    font-size: 1.4em !important;
}

.text-big-5 {
    font-size: 1.5em !important;
}

.text-big-6 {
    font-size: 2em !important;
}

.text-small-1 {
    font-size: 0.9em !important;
}

.text-small-2 {
    font-size: 0.8em !important;
}

.text-small-3 {
    font-size: 0.7em !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-muted-custom {
    color: var(--color-text-muted) !important;
}

.bg-cream {
    background-color: var(--color-cream) !important;
}

.bg-dark-custom {
    background-color: var(--color-dark) !important;
}

.bg-gold {
    background-color: var(--color-gold) !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.right-0 {
    right: 0 !important;
}

.radius-sm {
    border-radius: var(--radius-sm) !important;
}

.radius-md {
    border-radius: var(--radius-md) !important;
}

.radius-pill {
    border-radius: var(--radius-pill) !important;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: var(--color-gold);
    color: var(--color-dark);

    font-weight: 600;
    font-size: 15px;

    padding: 12px 28px;

    border: 2px solid var(--color-gold);
    border-radius: var(--radius-pill);

    transition: var(--transition-base);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: transparent;
    color: var(--color-text-dark);

    font-weight: 600;
    font-size: 15px;

    padding: 12px 28px;

    border: 2px solid var(--color-text-dark);
    border-radius: var(--radius-pill);

    transition: var(--transition-base);
}

.btn-outline-dark:hover {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1ebe5b;
    color: #fff;
}


/*--------------------------------------------------------------
# Back to top
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;

    opacity: 0;
    visibility: hidden;

    left: 15px;
    bottom: 15px;

    z-index: 996;

    background: var(--color-dark);

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition-base);
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--color-gold);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Floating contact buttons
--------------------------------------------------------------*/

.call-float,
.whatsapp-float {
    position: fixed;

    visibility: visible;
    opacity: 1;

    left: 15px;

    z-index: 996;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition-base);
}

.call-float {
    bottom: 75px;
    background: var(--color-gold);
}

.whatsapp-float {
    bottom: 15px;
    background: #25D366;
}

.call-float i,
.whatsapp-float i {
    color: #fff;
    font-size: 22px;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

.php-email-form .error-message {
    display: none;

    color: #fff;
    background: #dc3545;

    text-align: right;

    padding: 15px;

    font-weight: 600;

    border-radius: var(--radius-sm);
}

.php-email-form .sent-message {
    display: none;

    color: #fff;
    background: #18d26e;

    text-align: center;

    padding: 15px;

    font-weight: 600;

    border-radius: var(--radius-sm);
}

.php-email-form .loading {
    display: none;

    background: #fff;

    text-align: center;

    padding: 15px;
}

.php-email-form .loading:before {
    content: "";

    display: inline-block;

    border-radius: 50%;

    width: 24px;
    height: 24px;

    margin: 0 10px -6px 0;

    border: 3px solid var(--color-gold);
    border-top-color: #eee;

    animation: animate-loading 1s linear infinite;
}

.php-email-form input,
.php-email-form textarea {
    border-radius: var(--radius-sm);

    box-shadow: none;

    font-size: 14px;

    border: 1px solid var(--color-border);

    padding: 10px 15px;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: none;
}

.php-email-form button[type="submit"] {
    background: var(--color-gold);

    border: 0;

    padding: 10px 30px;

    color: var(--color-dark);

    font-weight: 600;

    border-radius: var(--radius-pill);

    transition: var(--transition-base);
}

.php-email-form button[type="submit"]:hover {
    background: var(--color-gold-dark);
    color: #fff;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: var(--color-cream);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;

    list-style: none;

    padding: 0;
    margin: 0;

    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-right: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;

    padding-left: 10px;

    color: var(--color-text-muted);

    content: "/";
}

@media (max-width: 768px) {

    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }

}


/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

ul.pagination li a {
    background-color: #f1ede6;

    margin-left: 10px;

    padding: 4px 10px;

    min-width: 20px;

    text-align: center;

    font-size: 0.85em;

    border-radius: var(--radius-sm);

    display: block;

    color: var(--color-text-dark);
}

ul.pagination .active a {
    background-color: var(--color-gold);
    color: #fff;
}


/*--------------------------------------------------------------
# Shared helpers
--------------------------------------------------------------*/

.box-shadow-light {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.title-font {
    font-family: var(--font-heading) !important;
    line-height: 2.2;
}


/*--------------------------------------------------------------
# Responsive base
--------------------------------------------------------------*/

@media (max-width: 768px) {

    .section-title h2 {
        font-size: 26px;
    }

    section {
        padding: 40px 0;
    }

}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    height: 82px;

    padding: 0;

    z-index: 997;

    background: rgba(27, 27, 27, 0.94);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        height 0.35s ease;
}

#header.header-scrolled {
    background: rgba(27, 27, 27, 0.98);

    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.22);
}

#header > .container {
    height: 100%;
}

#header .header-container {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}


/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/

#header .logo {
    flex-shrink: 0;

    display: flex;
    align-items: center;
}

#header .logo-link {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--color-text-light);

    text-decoration: none;
}

#header .logo-img {
    width: 50px;
    height: 50px;

    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

#header .logo-text {
    display: flex;
    flex-direction: column;

    justify-content: center;

    color: var(--color-text-light);

    font-size: 13px;
    line-height: 1.7;

    white-space: nowrap;
}

#header .logo-text strong {
    display: block;

    color: var(--color-gold);

    font-size: 17px;
    font-weight: 700;

    line-height: 1.5;
}


/*--------------------------------------------------------------
# Mobile Toggle
--------------------------------------------------------------*/

.mobile-nav-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: transparent;

    color: #fff;

    align-items: center;
    justify-content: center;

    font-size: 30px;

    cursor: pointer;

    z-index: 1101;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-toggle i {
    line-height: 1;
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

#navbar {
    display: flex;
    align-items: center;

    flex: 1;

    justify-content: flex-start;

    margin-right: 45px;

    padding: 0;
}

#navbar > ul {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;

    direction: rtl;
}

#navbar > ul > li {
    position: relative;

    display: flex;
    align-items: center;

    list-style: none;
}


/*--------------------------------------------------------------
# Menu Separators
--------------------------------------------------------------*/

#navbar > ul > li + li::before {
    content: "";

    display: block;

    width: 1px;
    height: 18px;

    margin: 0 2px;

    background: rgba(255, 255, 255, 0.22);

    flex-shrink: 0;
}


/*--------------------------------------------------------------
# Main Menu Links
--------------------------------------------------------------*/

#navbar > ul > li > .nav-link {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 9px 12px;

    color: var(--color-text-light);

    font-size: 14px;
    font-weight: 300;

    line-height: 1.5;

    white-space: nowrap;

    border-radius: 30px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

#navbar > ul > li > .nav-link:hover,
#navbar > ul > li > .nav-link.active {
    color: var(--color-gold);

    background: transparent;
}

#navbar > ul > li > .nav-link i {
    font-size: 11px;

    line-height: 1;

    transition: transform 0.25s ease;
}

#navbar > ul > li.dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}


/*--------------------------------------------------------------
# Direct Phone Link
--------------------------------------------------------------*/

#navbar .getstarted {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 16px;

    padding-right: 16px;

    border-right: 1px solid rgba(255, 255, 255, 0.18);

    color: var(--color-gold);

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: color 0.25s ease;
}

#navbar .getstarted i {
    margin-left: 7px;

    font-size: 17px;

    line-height: 1;
}

#navbar .getstarted:hover {
    color: #fff;
}


/*--------------------------------------------------------------
# Booking Button
--------------------------------------------------------------*/

#navbar .booking-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: auto;
    margin-left: 0;

    min-height: 48px;

    padding: 11px 28px;

    background: var(--color-gold);

    border: 2px solid var(--color-gold);
    border-radius: 50px;

    color: var(--color-dark);

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

#navbar .booking-btn i {
    margin-left: 8px;

    font-size: 17px;

    line-height: 1;
}

#navbar .booking-btn:hover {
    background: transparent;

    border-color: var(--color-gold);

    color: var(--color-gold);
}


/*--------------------------------------------------------------
# Desktop Dropdown
--------------------------------------------------------------*/

#navbar .dropdown {
    position: relative;
}

#navbar .dropdown > ul {
    position: absolute;

    top: calc(100% + 14px);
    right: 0;

    min-width: 220px;

    display: block;

    margin: 0;
    padding: 8px 0;

    list-style: none;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 1000;
}

#navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

#navbar .dropdown > ul li {
    position: relative;

    min-width: 210px;

    list-style: none;
}

#navbar .dropdown > ul li::before {
    display: none !important;
}

#navbar .dropdown > ul a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 10px 18px;

    color: var(--color-text-dark);

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

#navbar .dropdown > ul a:hover,
#navbar .dropdown > ul a.active {
    color: var(--color-gold-dark);

    background: var(--color-cream);
}

#navbar .dropdown .dropdown > ul {
    top: -8px;
    right: calc(100% + 5px);
}

@media (max-width: 1366px) {

    #navbar .dropdown .dropdown > ul {
        right: auto;
        left: calc(100% + 5px);
    }

}


/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width: 991px) {

    #header {
        height: 72px;
    }

    #header > .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    #header .header-container {
        justify-content: space-between;
    }


    /* Logo */

    #header .logo-text {
        font-size: 10px;
        line-height: 1.5;
    }

    #header .logo-text strong {
        font-size: 14px;
    }

    #header .logo-img {
        width: 44px;
        height: 44px;
    }


    /* Hamburger */

    .mobile-nav-toggle {
        display: flex;

        order: 3;
    }


    /*----------------------------------------------------------
    Mobile Drawer
    ----------------------------------------------------------*/

    #navbar {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;

        width: min(360px, 86vw);

        height: 100vh;

        margin: 0;

        padding: 90px 24px 30px;

        display: flex;

        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        background: #171717;

        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.35);

        overflow-y: auto;

        transform: translateX(105%);

        visibility: hidden;

        transition:
            transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0.4s;

        z-index: 1100;
    }

    #navbar.navbar-mobile-active {
        transform: translateX(0);

        visibility: visible;

        transition:
            transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0s;
    }


    /* Main UL */

    #navbar > ul {
        width: 100%;

        display: block;

        margin: 0;
        padding: 0;

        background: transparent;

        list-style: none;
    }

    #navbar > ul > li {
        display: block;

        width: 100%;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    #navbar > ul > li + li::before {
        display: none;
    }


    /* Menu links */

    #navbar > ul > li > .nav-link {
        display: flex;

        width: 100%;

        min-height: 54px;

        padding: 14px 4px;

        justify-content: space-between;

        color: #fff;

        border-radius: 0;

        font-size: 16px;

        font-weight: 500;
    }

    #navbar > ul > li > .nav-link:hover,
    #navbar > ul > li > .nav-link.active {
        color: var(--color-gold);

        background: transparent;
    }


    /* Dropdown arrow */

    #navbar > ul > li.dropdown > .nav-link i {
        transition: transform 0.25s ease;
    }

    #navbar > ul > li.dropdown.dropdown-active > .nav-link i {
        transform: rotate(180deg);
    }


    /*----------------------------------------------------------
    Mobile Submenu
    ----------------------------------------------------------*/

    #navbar .dropdown > ul {
        position: static;

        width: 100%;
        min-width: 0;

        display: none;

        margin: 0;
        padding: 0 12px 8px;

        background: rgba(255, 255, 255, 0.04);

        border-radius: 8px;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    #navbar .dropdown.dropdown-active > ul {
        display: block;
    }

    #navbar .dropdown > ul li {
        min-width: 0;

        border: 0;
    }

    #navbar .dropdown > ul a {
        display: block;

        padding: 11px 10px;

        color: rgba(255, 255, 255, 0.78);

        font-size: 14px;
    }

    #navbar .dropdown > ul a:hover,
    #navbar .dropdown > ul a.active {
        color: var(--color-gold);

        background: transparent;
    }

    #navbar .dropdown .dropdown > ul {
        position: static;

        margin-right: 10px;

        background: transparent;
    }


    /*----------------------------------------------------------
    Mobile Phone
    ----------------------------------------------------------*/

    #navbar .getstarted {
        width: 100%;

        justify-content: flex-start;

        margin: 20px 0 0;

        padding: 18px 4px 0;

        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);

        color: var(--color-gold);

        font-size: 15px;
    }

    #navbar .getstarted i {
        margin-left: 8px;
    }


    /*----------------------------------------------------------
    Mobile Booking
    ----------------------------------------------------------*/

    #navbar .booking-btn {
        width: 100%;

        min-height: 50px;

        margin: 16px 0 0;

        padding: 12px 20px;

        justify-content: center;

        font-size: 14px;
    }


    /*----------------------------------------------------------
    Mobile Overlay
    ----------------------------------------------------------*/

    .mobile-nav-overlay {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        background: rgba(0, 0, 0, 0.62);

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transition:
            opacity 0.35s ease,
            visibility 0s linear 0.35s;

        z-index: 1090;
    }

    body.nav-open .mobile-nav-overlay {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transition:
            opacity 0.35s ease,
            visibility 0s linear 0s;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .mobile-nav-toggle {
        position: fixed;

        top: 13px;
        right: 18px;

        color: #fff;

        background: rgba(255, 255, 255, 0.08);
    }

}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 575px) {

    #header .logo-text {
        display: none;
    }

    #navbar {
        width: 88vw;

        padding-left: 20px;
        padding-right: 20px;
    }

}

/*--------------------------------------------------------------
# Beauty Slideshow
--------------------------------------------------------------*/

.beauty-slideshow {
    position: relative;

    width: 100%;

    height: 470px;

    overflow: hidden;

    background: var(--color-dark);
}


/*--------------------------------------------------------------
# Slides
--------------------------------------------------------------*/

.beauty-slideshow .carousel-inner,
.beauty-slideshow .carousel-item {
    width: 100%;
    height: 100%;
}


.beauty-slideshow .carousel-item {
    position: relative;

    overflow: hidden;
}


/*--------------------------------------------------------------
# Image
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}


.beauty-slideshow .slideshow-img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;
}


/*--------------------------------------------------------------
# Overlay
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            270deg,
            rgba(15, 15, 15, 0.78) 0%,
            rgba(15, 15, 15, 0.60) 24%,
            rgba(15, 15, 15, 0.22) 47%,
            rgba(15, 15, 15, 0.02) 72%
        );
}


/*--------------------------------------------------------------
# Container
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-container {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: flex-start;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-content {
    width: 50%;
    max-width: 620px;

    margin-right: 0;

    padding: 30px 0;

    color: #fff;

    text-align: right;
}


/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-title {
    margin: 0 0 14px;

    color: #fff;

    font-family: var(--font-primary) !important;

    font-size: clamp(32px, 3.2vw, 48px);

    font-weight: 700;

    line-height: 1.55;

    letter-spacing: 0 !important;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.45);
}


/*--------------------------------------------------------------
# Description
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-description {
    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.92);

    font-size: clamp(16px, 1.35vw, 20px);

    line-height: 2;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5);
}


.beauty-slideshow .slideshow-description p {
    margin: 0;
}


/*--------------------------------------------------------------
# Actions
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-actions {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 12px;

    flex-wrap: wrap;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 11px 25px;

    border-radius: var(--radius-pill);

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.beauty-slideshow .slideshow-btn:hover {
    transform: translateY(-2px);
}


/* Primary */

.beauty-slideshow .slideshow-btn-primary {
    gap: 8px;

    background: var(--color-gold);

    border: 2px solid var(--color-gold);

    color: var(--color-dark);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);
}


.beauty-slideshow .slideshow-btn-primary:hover {
    background: #d6b36e;

    border-color: #d6b36e;

    color: var(--color-dark);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
}


/* Outline */

.beauty-slideshow .slideshow-btn-outline {
    background: rgba(0, 0, 0, 0.12);

    border: 2px solid rgba(255, 255, 255, 0.85);

    color: #fff;

    backdrop-filter: blur(4px);
}


.beauty-slideshow .slideshow-btn-outline:hover {
    background: #fff;

    border-color: #fff;

    color: var(--color-dark);
}


/*--------------------------------------------------------------
# Controls
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-control {
    position: absolute;

    top: 50%;

    bottom: auto;

    width: 44px;
    height: 44px;

    margin-top: -22px;

    z-index: 5;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.beauty-slideshow:hover .slideshow-control {
    opacity: 1;
}


.beauty-slideshow .slideshow-control-prev {
    right: 25px;
    left: auto;
}


.beauty-slideshow .slideshow-control-next {
    left: 25px;
    right: auto;
}


.beauty-slideshow .slideshow-control-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.30);

    border: 1px solid rgba(255, 255, 255, 0.28);

    color: #fff;

    backdrop-filter: blur(5px);

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}


.beauty-slideshow .slideshow-control:hover .slideshow-control-icon {
    background: var(--color-gold);

    color: var(--color-dark);
}


.beauty-slideshow .slideshow-control-icon i {
    font-size: 17px;
}


/*--------------------------------------------------------------
# Indicators
--------------------------------------------------------------*/

.beauty-slideshow .slideshow-indicators {
    position: absolute;

    right: 0;
    bottom: 20px;
    left: 0;

    z-index: 5;

    margin: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;
}


.beauty-slideshow .slideshow-indicators button {
    width: 8px;
    height: 8px;

    margin: 0;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    opacity: 1;

    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background-color 0.3s ease;
}


.beauty-slideshow .slideshow-indicators button.active {
    width: 28px;

    border-radius: 10px;

    background: var(--color-gold);
}


/*--------------------------------------------------------------
# Slide Animation
--------------------------------------------------------------*/

.beauty-slideshow .carousel-item.active .slideshow-content {
    animation: beautySlideContent 0.8s ease both;
}


@keyframes beautySlideContent {

    from {
        opacity: 0;

        transform: translateX(-30px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }

}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 991px) {

    .beauty-slideshow {
        height: 430px;
    }


    .beauty-slideshow .slideshow-content {
        width: 60%;

        padding: 25px 0;
    }


    .beauty-slideshow .slideshow-title {
        font-size: 34px;
    }


    .beauty-slideshow .slideshow-description {
        font-size: 16px;
    }


    .beauty-slideshow .slideshow-control {
        opacity: 1;
    }

}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 767px) {

    .beauty-slideshow {
        height: 520px;
    }


    .beauty-slideshow .slideshow-img {
        object-position: 58% center;
    }


    .beauty-slideshow .slideshow-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(15, 15, 15, 0.10) 0%,
                rgba(15, 15, 15, 0.30) 35%,
                rgba(15, 15, 15, 0.86) 100%
            );
    }


    .beauty-slideshow .slideshow-container {
        align-items: flex-end;

        padding-bottom: 55px;
    }


    .beauty-slideshow .slideshow-content {
        width: 100%;

        max-width: none;

        padding: 20px 15px 25px;

        text-align: center;
    }


    .beauty-slideshow .slideshow-title {
        margin-bottom: 10px;

        font-size: 29px;

        line-height: 1.55;
    }


    .beauty-slideshow .slideshow-description {
        margin-bottom: 18px;

        font-size: 15px;

        line-height: 1.9;
    }


    .beauty-slideshow .slideshow-actions {
        justify-content: center;

        gap: 8px;
    }


    .beauty-slideshow .slideshow-btn {
        min-height: 44px;

        padding: 9px 18px;

        font-size: 13px;
    }


    .beauty-slideshow .slideshow-control {
        width: 36px;
        height: 36px;

        margin-top: -18px;
    }


    .beauty-slideshow .slideshow-control-prev {
        right: 12px;
    }


    .beauty-slideshow .slideshow-control-next {
        left: 12px;
    }


    .beauty-slideshow .slideshow-control-icon {
        width: 36px;
        height: 36px;
    }


    .beauty-slideshow .slideshow-indicators {
        bottom: 18px;
    }

}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 480px) {

    .beauty-slideshow {
        height: 500px;
    }


    .beauty-slideshow .slideshow-title {
        font-size: 25px;
    }


    .beauty-slideshow .slideshow-description {
        font-size: 14px;
    }


    .beauty-slideshow .slideshow-btn {
        padding: 9px 14px;
    }

}
