/* ===== Brand Variables (from original WordPress styles.css) ===== */
:root {
    --brand_beige: #f1e9c5;
    --brand-green: #006f45;
    --brand_yellow: #fef200;
    --brand_orange: #f37022;
    --safe_black: #212427;
    --grey-color: #eee;
    --shadow: 0 1px 8px 2px rgb(0 0 0 / 10%);
    --heading-font: "Playfair Display", Sans-serif;
}

/* ===== Header ===== */
.site-header {
    background: #006f45;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.header-top {
    padding: 8px 0;
    font-size: 13px;
}
.header-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 2px;
}
.header-nav a:hover {
    text-decoration: underline;
}
.nav-sep {
    color: rgba(255,255,255,0.4);
    margin: 0 6px;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-phone, .header-whatsapp {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}
.header-phone svg, .header-whatsapp svg {
    width: 15px;
    height: 15px;
}
.header-whatsapp {
    background: #25D366;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
}
.header-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 400px;
    background: url('../images/assets/hero-bg.webp') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 150px 20px;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin: 0;
    text-align: center;
}
.hero-content h1 small {
    display: block;
    font-size: 30px;
}
/* ===== Sidebar (matches WordPress nkar_sidebar styles.css) ===== */
.nkar_sidebar {
    box-shadow: var(--shadow);
}
.nkar_term_container {
    padding: 30px;
    border-bottom: 1px solid var(--grey-color);
}
.term_container__title {
    font-family: var(--heading-font);
    margin-bottom: 10px;
    font-size: 18px;
}
.nkar_terms {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.nkar_terms li {
    margin-bottom: 6px;
}
.nkar_terms input {
    margin-right: 5px;
}
.nkar_terms input[type="checkbox"] {
    accent-color: var(--brand-green);
}
.nkar_terms label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

/* ===== Hotel Grid (port of original styles.css) ===== */
.hotel_grid_main {
    position: relative;
}
.hotel_grid__loader_wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: flex-start;
    background-color: #fff;
    z-index: 10;
}
.hotel_grid__loader_wrapper > img {
    width: 100px;
    margin-top: 100px;
}
.hotel_grid_notice {
    background-color: rgba(0, 111, 69, 0.2);
    padding: 5px 0;
    border: 2px solid var(--brand-green);
    line-height: 1;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.nkar_icon {
    width: 24px;
    margin: 0 10px;
}
.hotel_grid_wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hotel_grid_wrapper:not(:first-of-type) {
    margin-top: 20px;
}
.hotel_grid_item {
    box-shadow: var(--shadow);
    width: 300px;
    max-width: 90vw;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.hotel_grid__title {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--heading-font);
    height: 50px;
    border-bottom: 1px solid var(--grey-color);
}
.hotel_grid__content {
    padding: 20px;
}
.hotel_grid__location {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--brand-green);
}
.hotel_grid__terms > span {
    padding: 5px;
    background-color: var(--brand_beige);
    margin-right: 5px;
    font-size: 12px;
}
.hotel_grid__excerpt {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 30px;
}
.hotel_grid__ctaButton {
    border-radius: 30px;
    padding: 10px 20px;
    background-color: var(--brand_orange);
    color: #fff;
    position: absolute;
    bottom: 20px;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}
.hotel_grid__ctaButton:hover {
    background-color: var(--brand-green);
    color: #fff !important;
}

/* ===== Slick Slider ===== */
.slider_nav .slider_item {
    cursor: pointer;
}
.slider_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider_for .slider_item {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.slider_nav .slider_item {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.slider_nav {
    margin-top: 4px;
}

/* ===== Load More Button ===== */
#nkar_load_more_wrapper {
    text-align: center;
    width: 100%;
    padding: 60px 0;
}
#nkar_load_more {
    border-radius: 30px;
    padding: 10px 20px;
    background-color: var(--brand_orange);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    position: relative;
}
#nkar_load_more:hover {
    background-color: var(--brand-green);
    color: #fff;
}
#nkar_load_more:disabled {
    opacity: 0.7;
    cursor: default;
}

/* ===== Partner Section ===== */
.partner-section {
    padding: 60px 0 30px;
}
.partner-logo {
    width: auto;
}
.reg-number {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===== Footer ===== */
.footer-section {
    position: relative;
    background: url('../images/assets/hero-bg.webp') center center / cover no-repeat;
    margin-top: 100px;
}
.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 111, 69, 0.85);
}
.footer-text {
    font-size: 12px;
    color: #fff;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}
.footer-contact {
    font-size: 12px;
    margin-top: 10px;
}
.footer-contact li {
    margin-bottom: 4px;
}
.footer-contact-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-contact-link svg {
    width: 14px;
    height: 14px;
}
.footer-contact-link:hover {
    color: #fff;
    opacity: 0.8;
}
.footer-links {
    font-size: 12px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 3px 0;
    transition: opacity 0.2s;
}
.footer-links a:hover {
    opacity: 0.8;
}
.footer-divider {
    border-color: rgba(255,255,255,0.15);
    margin: 10px 0;
}

/* ===== Social Icons ===== */
.social-icons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s;
    color: #fff;
}
.social-icons a:hover {
    color: #fff;
}
.social-icons svg {
    width: 18px;
    height: 18px;
}
.social-fb:hover { background: #1877F2; }
.social-x:hover { background: #000; }
.social-ig:hover { background: #E4405F; }
.social-yt:hover { background: #FF0000; }
.social-pin:hover { background: #BD081C; }

/* ===== Utility ===== */
.hidden {
    visibility: hidden;
    font-size: 1px;
}

/* ===== Responsive ===== */
@media only screen and (max-width: 650px) {
    .header-nav {
        display: none;
    }
    .hero-section {
        padding: 80px 20px;
        min-height: 300px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content h1 small {
        font-size: 24px;
    }
    .hotel_grid_wrapper {
        justify-content: center;
    }
    .hotel_grid_item {
        width: 100%;
        max-width: 300px;
    }
    .social-icons {
        justify-content: center;
    }
}
