/* ===========================
   Root Variables
=========================== */
:root {
    --primary-color: #a67c52;
    --primary-dark: #8b623e;
    --primary-light: #EAE1D5;
    --primary-lighter: #faf1e6;
    --text-color: #5a5a5a;
    --light-color: #f9f9f9;
    --dark-color: #2b2b2b;
    --white: #fff;
    --transition: all 0.3s ease;
    --hero-zoom-duration: 5000ms;
    --hero-zoom-scale: 1.1;
}

/* ===========================
   Global Styles
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, .elementor-widget-text-editor {
    font-family: 'Jost', sans-serif !important;
    color: var(--text-color);
    line-height: 1.6;
}
.section {
    position: relative;
    padding: 80px 0;
}
.section-small {
    position: relative;
    padding: 40px 0;
}
.section-title {
    font-family: 'Prata', serif;
    font-size: 32px;
    margin-bottom: 32px;
    text-transform: capitalize;
    color: var(--dark-color);
}
.section-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
}
.icon-top {
    width: 60px;
    margin-bottom: 24px;
}
.icon-top img {
    max-width: 100%;
}
.btn.round-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition);
}
.btn.round-btn:hover {
    background: var(--primary-dark);
}
.btn-link {
    position: relative;
    text-decoration: none;
    font-family: 'Prata', serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-dark);
    padding-right: 20px;
    transition: all 0.3s ease;
}
.btn-link:after {
    content: '';
    background: url(../images/icons/ic-right.png) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.btn-link:hover {
    color: var(--primary-color);
}

/* ===========================
   Navbar
=========================== */
.navbar {
    background: var(--white);
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    width: 230px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.logo .icon {
    display: inline-block;
    width: 50px;
    margin-right: 10px;
}
.logo .icon img {
    width: 100%;
}
.logo .title {
    width: calc(100% - 50px);
    font-family: 'Prata', serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--primary-color) !important;
    text-wrap: wrap;
}

/* ===============================
   Main Menu Links
================================ */

.nav-links > li > a {
    font-family: 'Prata', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    padding: 40px 16px;
    transition: var(--transition);
    display: block;
    text-decoration: none;
}

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

/* ===============================
   Menu Item Wrapper
================================ */

.nav-links > li {
    position: relative;
}

/* ===============================
   Active Menu Item
================================ */

.nav-links > li.current-menu-item > a,
.nav-links > li.current_page_item > a,
.nav-links > li.current-menu-ancestor> a {
    color: var(--primary-color);
}

/* ===============================
   Bottom Border Hover Effect
================================ */

.nav-links > li > a:hover::before,
.nav-links > li.current-menu-item > a::before,
.nav-links > li.current_page_item> a::before,
.nav-links > li.current-menu-ancestor> a::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 0;
}

.nav-links > li:last-child > a:hover::before {
    content: none;
}

/* ===============================
   Dropdown (WordPress uses .sub-menu)
================================ */

.nav-links .sub-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-top: 0 !important;
    border-radius: 0;
    background: var(--primary-lighter);
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 160px;
}

/* Show dropdown on hover (Desktop) */

.nav-links > li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.nav-links > li.menu-item-has-children > a:after {
	display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

/* Remove hover border when dropdown opens */

.nav-links > li.menu-item-has-children:hover::before {
    content: none;
}

/* ===============================
   Dropdown Items
================================ */

.nav-links .sub-menu li a {
    font-size: 16px;
    color: var(--text-color);
    padding: 8px 16px;
    border-bottom: 1px solid var(--primary-color);
    display: block;
    text-decoration: none;
}

.nav-links .sub-menu li:last-child a {
    border-bottom: none;
}

.nav-links .sub-menu li a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===============================
   Responsive Adjustments
================================ */

/* Member Login Button */
.btn.login-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 22px;
    font-size: 14px;
    transition: var(--transition);
}

.btn.login-btn:hover {
    background: var(--primary-dark);
}

/* ===========================
   Hero Section
=========================== */
/* Hero Slider */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: calc(100vh - 105px);
    overflow: hidden;
}

/* make sure everything fills the hero height */
.hero .hero-swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* dark overlay */
.swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* background layer */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    will-change: transform;
    backface-visibility: hidden;
}

/* smoother Ken Burns */
.slide-bg.zooming {
    animation: heroZoom var(--hero-zoom-duration) linear forwards;
    animation-delay: 0s;
    /* start instantly */
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(var(--hero-zoom-scale));
    }
}

/* foreground content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-family: 'Prata', serif;
    font-size: 48px;
    margin-bottom: 16px;
}

.hero p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

/* button */
.btn-custom {
    display: inline-block;
    padding: 13px 24px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-custom:hover {
    background: var(--primary-dark);
}

/* Swiper UI */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    opacity: 0.3;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* ===========================
   Features
=========================== */
.features {
    position: relative;
    width: 100%;
    background: var(--primary-light);
}
.features .fearturewrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.features .fearturewrap .feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 400px;
}
.features .fearturewrap .feature img {
    height: 70px;
}
.features .fearturewrap .info {
    width: calc(100% - 70px);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.features .fearturewrap .info .title {
    font-family: 'Prata', serif;
    font-size: 24px;
    line-height: 30px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.features .fearturewrap .info .text {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin-bottom: 0;
}

/* ===========================
   Welcome
=========================== */
.welcome {
    position: relative;
    width: 100%;
    background: var(--white);
}
.welcome .welcome-message {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 24px;
    background-image: url(../images/icons/netherlands.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 230px;
}
.placeholder-box {
    position: relative;
    width: 100%;
    background: var(--primary-lighter);
    border-radius: 12px;
    padding: 24px;
    box-shadow: -3px 3px 9px -7px var(--primary-dark);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}
.placeholder-box.extended {
    align-items: flex-start;
    flex-wrap: wrap;
}
.placeholder-box .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.placeholder-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.placeholder-box .textbox {
    width: calc(100% - 100px);
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.placeholder-box .textbox .title {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 6px;
    text-transform: capitalize;
    color: var(--dark-color);
}
.placeholder-box .textbox .text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--text-color);
}
.placeholder-box.extended .details {
    width: 100%;
    margin-top: 24px;
    position: relative;
}
.placeholder-box.extended .details p,
.placeholder-box.extended .details ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
    color: var(--text-color);
}
.placeholder-box.extended .details ul li {
    margin-bottom: 3px;
}
/* ===========================
   About
=========================== */
.about {
    background: url(../images/mountain-sea-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}
.offer-card {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    padding: 36px 24px;
    background: var(--primary-lighter);
    border-radius: 12px;
    box-shadow: -3px 3px 9px -7px var(--primary-dark);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    transition: transform 0.3s;
}
.offer-card:hover {
    transform: translateY(-5px);
}
.offer-card .icon {
    width: 60px;
}
.offer-card .icon img {
    max-width: 100%;
}
.offer-card .data {
    width: calc(100% - 60px);
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.offer-card .data .title {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 6px;
    text-transform: capitalize;
    color: var(--dark-color);
}
.offer-card .data .desc {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--text-color);
}

/* ===========================
   Destinations
=========================== */
.destinations {
    background: var(--light-color);
}
.titleblock {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.destination-card {
    background: var(--primary-lighter);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -3px 3px 9px -7px var(--primary-dark);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: calc(100% - 24px);
    margin-bottom: 24px;
}
.destination-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.destination-card .card-details {
    position: relative;
    padding: 24px;
}
.destination-card .card-details .title {
    font-family: 'Prata', serif;
    font-size: 20px;
    line-height: 24px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.destination-card .card-details .desc { 
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin-bottom: 20px;
}
.destination-card:hover {
    transform: translateY(-5px);
}

/* ===========================
   Footer
=========================== */
.footer {
    background: var(--dark-color);
    padding: 20px 0;
}

.footer-bottom .footertext {
    text-align: center;
    font-size: 14px;
    padding-top: 16px;
    color: var(--light-color);
}

/* ===========================
   Page Banner
=========================== */
.page-banner {
    position: relative;
    background: url(../images/page-banner.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0;
}
.page-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(133, 76, 12, 0.7), rgba(248, 221, 185, 0.3));
    z-index: 0;
}
.page-banner .title {
    font-family: 'Prata', serif;
    font-size: 36px;
    color: var(--white);
    text-align: center;
    margin: 0;
}
.section-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}
.section-image img {
    max-width: 100%;
}

/* ===========================
   Contact
=========================== */
.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 16px;
    margin-bottom: 4px;
}
.form-control {
    border: 1px solid var(--primary-light);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    font-size: 14px;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

@media (max-width: 1199px) {
    .nav-links > li > a {
        font-size: 14px;
        padding: 36px 10px !important;
    }
    .features .fearturewrap {
        gap: 30px;
    }
    .features .fearturewrap .feature img {
        height: 55px;
    }
    .features .fearturewrap .info {
        width: calc(100% - 55px);
        padding-left: 16px;
    }
    .features .fearturewrap .info .title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    .features .fearturewrap .info .text {
        font-size: 14px;
        line-height: 20px;
    }
    .placeholder-box .textbox .title,
    .offer-card .data .title {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .custom-toggler {
        background: var(--primary-dark);
        border: none;
        padding: 10px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 40px;
    }
    .custom-toggler span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--white);
        border-radius: 2px;
    }
    .custom-close {
        --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
        --bs-btn-close-opacity: 1; /* ensure full opacity */
        background-color: var(--primary-dark);
        border-radius: 4px;
        opacity: 1;
        padding: 6px;
        /* width: 40px;
        height: 40px; */
    }
    .custom-toggler:focus,
    .custom-close:focus {
        box-shadow: none;
    }

    .offcanvas-header {
        border-bottom: 1px solid var(--primary-light);
    }
	
	.nav-links > li > a:hover::before, .nav-links > li.current-menu-item > a::before, .nav-links > li.current_page_item> a::before {
		content: none;
	}
    .nav-links > li > a {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--primary-light);
    }

    /* Disable bottom border effect on mobile */
    .nav-links > li:hover::before,
    .nav-links > li.current-menu-item::before,
    .nav-links > li.current_page_item::before {
        content: none;
    }

    /* Make dropdown static on mobile */
    .nav-links .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
		padding-left: 30px;
		background: none;
    }

    /* Optional: show dropdown when parent has class 'open'
       (requires small JS toggle if needed) */
    .nav-links > li.open > .sub-menu {
        display: block;
    }
	.nav-links > li.menu-item-has-children > a::after {
        content: "+";
        float: right;
        font-weight: bold;
        font-size: 24px;
        line-height: 1;
		border: 0;
    }
    .offcanvas.offcanvas-end {
        border-left: 0;
    }
    .nav-links .sub-menu > li > a {
        font-size: 14px;
        padding: 8px 0px;
        border-bottom: 1px solid var(--primary-light) !important;
    }
    .nav-links .sub-menu > li > a:hover {
        background: none;
        color: var(--text-color);
    }
    .btn.login-btn {
        margin-left: 0;
    }
    .hero h2 {
        font-size: 40px;
    }
    .hero p {
        font-size: 18px;
        line-height: 26px;
    }
    .section {
        padding: 60px 0;
    }
    .section-small {
        padding: 30px 0;
    }
    .section-title {
        font-size: 26px;
        margin-bottom: 26px;
    }
    .section-description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }
    .btn-link {
        font-size: 14px;
        line-height: 20px;
        padding-right: 16px;
    }
    .btn-link:after {
        width: 14px;
        height: 14px;
    }
    .features .fearturewrap {
        flex-wrap: wrap;
    }
    .placeholder-box .textbox .text,
    .offer-card .data .desc {
        font-size: 14px;
        line-height: 20px;
    }
    .destination-card .card-details .title {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .destination-card .card-details .desc { 
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }
}
@media (max-width: 767px) {
    .hero-content {
        padding: 40px;
    }
    .hero h2 {
        font-size: 32px;
    }
    .welcome .welcome-message {
        background-size: 150px;
    }
    .icon-top {
        width: 40px;
        margin-bottom: 20px;
    }
}
@media (max-width: 575px) {
    .hero h2 {
        font-size: 24px;
    }
    .hero p {
        font-size: 16px;
        line-height: 24px;
    }
    .section {
        padding: 40px 0;
    }
    .section-small {
        padding: 20px 0;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 22px;
    }
}