/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #565656; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #565656; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #daa5ae; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #565656; /* The default color of the main navmenu links */
    --nav-hover-color: #daa5ae; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #565656; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #daa5ae; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    background: #FBF6F6;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: rgba(255, 255, 255, 0.1);
    --default-color: #565656;
    --heading-color: #ffffff;
    --surface-color: #565656;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

.col-md-6 {
    padding: 0px;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    overflow-x: hidden;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    /*color: color-mix(in srgb, var(--accent-color), transparent 25%);*/
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    /*font-family: var(--heading-font);*/
}

p {
    font-size: 18px;
}

.text-bold {
    font-weight: bold;
}

.color-white {
    color: #ffffff !important;
}

.color-pink {
    color: #DAA5AE !important;
}

.font-family-great {
    font-family: "Great Vibes", cursive;
}

.background-pink {
    background: #daa5ad;
}

.background-pink-light {
    background: #fbf6f6;
}

.margin-b30 {
    margin-bottom: 30px;
}

.margin-b50 {
    margin-bottom: 50px;
}

.padding-L50 {
    padding-left: 50px;
}

.padding-R50 {
    padding-right: 50px;
}

.animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both !important;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.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(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    width: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.85);
    transition: all 0.5s;
    z-index: 997;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 100px;
    margin-right: 8px;
    top: 0px;
    position: absolute;
}

.header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.scrolled .header .logo img {
    max-height: 100%;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 25px 14px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 14px;
        padding: 0px 0px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin: 5px 0px 5px 5px;
        transition: 0.3s;
    }

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 14px;
        text-transform: none;
        color: var(--nav-dropdown-color);
        text-transform: uppercase;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 10px 10px 10px 10px;
    margin: 70px 30px;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials .testimonials-img {
    /*width: 100%;*/
    position: relative;
}

.testimonials .testimonial-item img {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
}

.testimonials .testimonial-item h3 {
    font-size: 30px;
    font-family: "Great Vibes", cursive;
    color: #daa5ad;
    margin: 20px 0px;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    color: #565656;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .testimonial-item .moredetail {
    width: 50%;
    padding: 7px;
    color: #ffffff;
    margin: 0 auto;
    top: 30px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    font-style: italic;
    position: relative;
    background: #DAA5AE;
}

.testimonials .testimonial-item .moredetail:hover {
    transition: 1s;
    font-style: normal;
    border-radius: 0px;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.testimonials .swiper-slide {
    opacity: 0.5;
}

.testimonials .swiper-slide:hover {
    opacity: 1;
    cursor: pointer;;
}

@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }

    .testimonials .swiper-pagination {
        margin-top: 0;
    }

    .testimonials .testimonial-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/*--------------------------------------------------------------
# Yours Wedding Parallax
--------------------------------------------------------------*/
.yourswedding-parallax {
    height: 370px;
    position: relative;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-size: cover;
}

.yourswedding-parallax .call-to-action {
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.yourswedding-parallax .call-to-action:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.yourswedding-parallax h2, h6, p span {
    color: #ffffff !important;
}

.yourswedding-parallax .content {
    position: absolute;
    width: 100%;
    bottom: 20%;
}

.yourswedding-parallax-title {
    bottom: 60%;
    position: relative;
}

.yourswedding-parallax-title h6 {
    text-align: center;
    letter-spacing: 0.5em;
    line-height: 3;
    text-transform: uppercase;
    margin: 0;
}

.yourswedding-parallax-title span {
    position: relative;
    background-color: #ffffff;
    height: 1px;
    width: 55%;
    margin: 1%;
    display: inline-block;
}

.yourswedding-parallax-title h2 {
    margin: 0;
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.yourswedding-parallax-title .img-fluid {
    width: 170px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# PageHome
--------------------------------------------------------------*/
.pagehome {
    margin: 0px;
    padding: 0px;
    position: relative;
}

.pagehome .our-services {
    margin-top: 30px;
    position: relative;
    background: #FBF6F6;
}

.pagehome .our-services .box-image {
    width: 100%;
    object-fit: cover;
    min-height: 500px !important;
}

.pagehome .our-services h1 {
    margin: 0px;
}

.pagehome .our-services h4 {
    font-style: italic;
    font-size: 20px;
}

.pagehome .our-services .box-content {
    padding: 30px 30px;
}

.pagehome .our-services .box-content ul {
    margin: 30px 0px;
    position: relative;
}

.pagehome .our-services .box-content li {
    margin: 15px 0px;
    text-align: left;
    list-style-image: url('../img/pagehome-ourservice-li.png');
}

.pagehome .our-services li span {
    font-size: 16px;
    top: -7px;
    padding: 10px 5px;
    position: relative;
}

.pagehome .our-service-content {
    color: #ffffff;
    text-align: center;
    border-radius: 50px;
    padding: 50px 50px;
    background: #daa5ad;
}

.pagehome .box-content .readmore {
    width: 30%;
    margin: 0 auto;
    padding: 10px;
    color: #daa5ad;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid #daa5ad;
}

.pagehome .box-content .readmore:hover {
    transition: 1s;
    color: #ffffff;
    border-radius: 0px;
    background: #daa5ad;
}

/*--------------------------------------------------------------
# Page Our Services
--------------------------------------------------------------*/
.page-our-services {
    padding: 0px;
    position: relative;
}

.page-our-services h2 {
    font-size: 24px;
    color: #DAA5AE;
    font-style: italic;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.page-our-services h2 span {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.page-our-services strong {
    color: #DAA5AE;
    font-style: italic;
}

.page-our-services .box-content {
    padding: 10px;
    cursor: pointer;
    margin: 0px 50px 20px 0px;
    transition: all 0.3s ease-in-out;
}

.page-our-services .box-content:hover {
    padding: 10px;
    transform: translateY(-10px);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.page-our-services .box-content::before {
    color: #daa5ad;
    padding: 5px 10px;
    float: left;
    font-size: 38px;
    margin-right: 20px;
    border-radius: 10px;
    border: 1px solid #daa5ad;
    content: "\f3e6";
    display: inline-block;
    font-family: "bootstrap-icons";
    /*animation: up-down 2s ease-in-out infinite alternate-reverse both !important;*/
}

.page-our-services .box-image {
    width: 50%;
    float: left;
    padding: 5px 5px;
}

.page-our-services .box-image img {
    width: 100%;
    min-height: 230px;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.page-our-services .box-image:hover img {
    /*transform: scale(1.1);*/
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.page-our-services .row-image {
    width: 25%;
    padding: 0px;
    border-bottom: 7px solid #ffffff;
}

.page-our-services .row-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-right: 7px solid #ffffff;
}

.yourswedding-parallax-title .img-fluid
.page-our-services .row-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-right: 7px solid #ffffff;
}

/*--------------------------------------------------------------
# Page Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/* Add เพิ่มเติม */
.gallery .section-title {
    margin-bottom: 50px;
}

.gallery .section-title h2 {
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
}

.gallery .section-title h2::after {
    content: "";
    width: 120px;
    height: 2px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.gallery .section-title div {
    color: var(--heading-color);
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.gallery .gallery-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.gallery .gallery-filters li {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    padding: 10px 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease-in-out;
}

.gallery .gallery-filters li:hover,
.gallery .gallery-filters li.filter-active {
    color: #ffffff;
    border-radius: 50px;
    background: var(--accent-color);
}

.gallery .gallery-filters li:first-child {
    margin-left: 0;
}

.gallery .gallery-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}


.gallery .gallery-box-content {
    background-color: var(--surface-color);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

.gallery .gallery-box-content:before {
    content: "";
    position: absolute;
    background: var(--accent-color);
    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.gallery .gallery-box-content:hover h4 a,
.gallery .gallery-box-content:hover .icon i,
.gallery .gallery-box-content:hover p {
    color: var(--contrast-color);
}

.gallery .gallery-box-content:hover:before {
    background: var(--accent-color);
    inset: 0;
    border-radius: 0px;
}

.gallery .member-info {
    background-color: var(--surface-color);
    padding: 10px 10px;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    background: var(--surface-color);
    margin: -50px 30px 0 30px;
    position: relative;
    border-radius: 10px;
}

.gallery .member-info h4 {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery .member-info p {
    display: block;
    font-size: 14px;
    font-weight: 400;
    width: auto;
    text-align: center;
    margin: 10px 0px 5px 0px;
    letter-spacing: 0.1em;
}

.gallery .member-info i {
    font-size: 16px;
}

/*--------------------------------------------------------------
# Page Wedding
--------------------------------------------------------------*/
.page-wedding {
    position: relative;
}

.page-wedding .box-image-wedding {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.page-wedding .box-content {
    width: 35%;
    bottom: 0px;
    z-index: 1;
    text-align: center;
    padding: 20px 30px 20px 30px;
    position: absolute;
    border-right: 13px solid #daa5ad;
    background: rgb(255, 255, 255, 0.9);
}
.page-wedding .box-content h2 {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.page-wedding .box-content h3 {
    color: #daa5ad;
    font-size: 26px;
    font-family: "Great Vibes", cursive;
    font-style: normal;
    letter-spacing: 0.1em;
}
.page-wedding .box-content p {
    font-size: 16px;
}
.page-wedding .box-content i {
    color: #daa5ad;
    font-size: 32px;
    text-align: center;
    font-style: normal;
}

.page-wedding .info-item {
    position: relative;
    padding: 50px 50px;
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
}

.page-wedding .info-item .row-content {
    width: 50%;
    float: left;
    padding: 20px 30px;
    border-bottom: 1px dotted #ffc4ce;
}

.page-wedding .info-item h2 {
    font-size: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.page-wedding .info-item h2::after {
    content: "";
    width: 120px;
    height: 2px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}
.page-wedding .info-item h3 {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    font-family: var(--heading-font);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}
.page-wedding .info-item p {
    font-size: 16px;
}

.page-wedding-image-botton {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
}

.page-wedding .testimonials .swiper-slide {
    opacity: 1;
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .member {
    position: relative;
}
.chefs .section-title {
    text-align: center;
    position: relative;
}
.chefs .section-title h4 {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.chefs .section-title h2 {
    letter-spacing: 0.05em;
    margin: 20px;
    text-transform: uppercase;
}

.chefs .member-box {
    padding: 20px;
}
.chefs .member .pic {
    overflow: hidden;
    margin-bottom: 50px;
}
.chefs .img-fluid {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}
.chefs .img-fluid:hover {
    transition: 1s;
    transform: scale(1.1);
}

.chefs .member .member-info {
    background-color: var(--surface-color);
    color: #daa5ad;
    letter-spacing: 0.01em;
    box-shadow: 0px 2px 15px rgba(86, 86, 86, 0.3);
    position: absolute;
    bottom: -50px;
    left: 30px;
    right: 30px;
    font-size: 18px;
    padding: 20px 25px;
    overflow: hidden;
    transition: 0.5s;
    border-bottom: 2px solid #daa5ad;
}

.chefs .member h4 {
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.01em;
    font-family: var(--default-font);
}

.chefs .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    bottom: 0;
    left: 0;
}
.chefs .member i {
    font-size: 20px;
}
.chefs .member a:hover {
    color: #daa5ae;
    padding-left: 10px;
    transition: 1s;
}

/*--------------------------------------------------------------
# Page Venues
--------------------------------------------------------------*/
.page-venues {
    position: relative;
}

.page-venues h5 {
    color: #ffffff;
    width: max-content;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    border-radius: 20px;
    padding: 10px 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    background: #daa5ad;
}

.page-venues .box-span {
    font-size: 18px;
    font-weight: bold;
}

/*--------------------------------------------------------------
# Page Contact Section
--------------------------------------------------------------*/
.contact {
    margin: 50px 0px;
    position: relative;
}

.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}

.contact .info-item {
    padding: 20px 0px;
    border-bottom: 1px dotted #daa5ae;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact label {
    color: var(--accent-color);
}

.contact label span {
    color: #d30426;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-call-line {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.contact-call-line .box-content {
    width: auto;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    float: left;
    padding: 10px 30px 10px 15px;
    margin: 5px 10px;
    transition: 0.4s;
    border-radius: 20px;
}

.contact-call-line .box-content:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.contact-call-line .box-content .info-item {
    padding: 10px 0px 0px 0px;
    position: relative;
}

.contact-call-line .box-content .info-item i {
    color: #ffffff;
    font-size: 40px;
    background: var(--accent-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact-call-line .box-content .info-item h3 {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.contact-call-line .box-content .info-item p {
    line-height: normal;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    width: 100%;
    font-size: 14px;
    color: var(--contrast-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 30px 0px 20px 0px;
    min-height: 400px !important;
    background-size: cover;
    background-image: linear-gradient(rgba(218, 165, 173, 0.7), rgba(218, 165, 173, 0.7)),
    url("../img/footer-bg.jpg");
}

.footer .footer-top {
    width: 75%;
    padding: 20px 0px;
    margin: 0 auto;
    display: block !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

.footer .footer-top h3 {
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.footer .footer-top h4 {
    font-size: 38px;
    position: relative;
    letter-spacing: 0.1em;
    font-family: "Great Vibes", cursive;
}

.footer h6 {
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: normal;
}

.footer .contact-row {
    margin: 0 auto;
    width: 85%;
}

.footer .footer-top {

}

.footer .contact {
    float: left;
    color: #565656;
    width: auto;
    display: block !important;
    border-radius: 50px;
    padding-right: 15px;
    margin: 7px 7px 7px 7px;
    position: relative;
    background: #ffffff;
}

.footer .contact i {
    float: left;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    padding: 3px 7px;
    margin: 3px 10px 3px 3px;
    border-radius: 50px;
    background: #daa5ad;
}

.footer .contact a {
    color: #565656;
}

.footer .contact a:hover {
    color: #daa5ad;
}

.footer .contact .text-content {
    text-align: left;
    float: left;
    padding-top: 7px;
}

.footer .contact .text-content h4 {
    font-size: 12px;
    color: #565656;
    letter-spacing: 0.05em;
    line-height: 0.7;
}

.footer .contact .text-content h5 {
    font-size: 14px;
    color: #565656;
    line-height: 0.7;
}

.footer .contact-line {
    width: 50%;
    text-align: right;
    float: right;
}

.footer .contact-line img {
    float: right;
    width: 70px !important;
    margin-left: 10px;
}

.footer .contact-line p {
    font-size: 14px;
    padding: 30px 3px 0px 3px;
}

.footer .social-links {
    float: left;
    width: 50%;
}

.footer .social-links p {
    margin: 15px 0px 10px 0px;
    text-align: left;
}

.footer .follow a {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffffff;
    font-size: 24px;
    color: color-mix(in srgb, var(--accent-color), transparent 30%);
    margin-left: 10px;
    transition: 0.3s;
}

.footer .follow a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer .follow span {
    margin-top: 10px !important;
    float: left;
}

.footer .copyright {
    text-align: left;
    font-size: 14px;
    margin-top: 15px;
}

.footer .copyright a {
    color: #ffffff;
}

.footer .copyright a:hover {
    padding-left: 5px;
    transition: 1s;
    color: #fbd5da;
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

.footer-navmenu {
    position: relative;
}

.footer-navmenu ul {
    width: 1100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    align-items: center;
}

.footer-navmenu li {
    float: left;
    font-size: 13px;
    text-align: left;
    margin: 0px 0px 15px 0px;
    padding: 0px 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-right: 1px solid #b1aeae;
    position: relative;
}

.footer-navmenu li a {
    color: #565656;
    letter-spacing: 0.1em;
}

.footer-navmenu li a:hover {
    color: #daa5ad;
    transition: 0.1s;
}

.footer-navmenu li:last-child {
    border: none;
}

.footer-bottom {
    margin: 0px !important;
}

.footer-contact {
    padding: 50px 50px;
}

.footer-contact i {
    font-size: 26px;
}

.footer-contact h2 {
    color: #daa5ad;
    font-size: 30px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-contact h4 {
    font-size: 18px;
    letter-spacing: 0.3em;
    font-weight: normal;
    text-transform: uppercase;
}

.footer-contact .opening-hours {
    background: #daa5ad;
    letter-spacing: 0.05em;
    width: max-content;
    float: right;
    color: #ffffff;
    text-align: center;
    border-radius: 20px;
    padding: 5px 15px;
    margin-top: 10px;
}

.footer-contact-swiper {
    padding: 0px 0px;
}

.footer-contact-swiper .testimonials .testimonial-item {
    padding: 0px;
    margin: 0px 0px;
    min-height: 200px;
}

.footer-contact-swiper .testimonials .swiper-slide {
    opacity: 1;
}

.footer-contact-swiper .testimonials .testimonial-item img {
    min-height: 300px;
}

.footer-contact-swiper .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    /*background-color: var(--background-color);*/
    padding: 50px 0;
    scroll-margin-top: 90px;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

.section-content {
    max-width: 1200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /*background: #c6c7c8;*/
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    position: relative;
}

.section-title h1 {
    font-size: 46px;
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    position: relative;
}

.section-title h1::before {
    content: url('../img/title-icon.png');
    width: 100%;
    margin: 0px auto 0px;
    position: relative;
    text-align: center;
    display: inline-block;
}

.section-title p {
    font-size: 18px;
    letter-spacing: 0.05em;
    font-family: var(--heading-font);
}

.section-title-bg-white h1 {
    font-size: 46px;
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    position: relative;
}

.section-title-bg-white h1::before {
    content: url('../img/title-icon-pink.png');
    width: 100%;
    margin: 0px auto 0px;
    position: relative;
    text-align: center;
    display: inline-block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: calc(100vh);
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
}

@media (max-width: 1200px) {
    .hero .carousel {
        min-height: calc(100vh - 66px);
    }
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero .carousel-item:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-container {
    position: absolute;
    inset: 90px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

.hero h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero p {
    animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

    .hero h2,
    .hero p {
        max-width: 60%;
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 4px;
    transition: 0.5s;
    margin: 10px;
    animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    font-size: 32px;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

.hero .carousel-indicators li {
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero .carousel-control-prev, .hero .carousel-control-next {
    width: 7%;
}

.hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
    font-size: 38px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #daa5ad;
}

/*--------------------------------------------------------------
# Hvr-Sweep-to-Top
--------------------------------------------------------------*/
.hvr-sweep-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: var(--accent-color);
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

.hvr-sweep-to-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #efb6bf;
    border-radius: 10px;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
    color: white;
}

.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}