/* ===========================
   CSS VARIABLES
   =========================== */
:root {
    --color-primary: #2B5A27;
    --color-primary-dark: #1A4D1A;
    --color-primary-light: #3D7A38;
    --color-accent: #E67817;
    --color-accent-light: #E67817;
    --color-accent-dark: #A85A0A;
    --color-dark: #1a1a1a;
    --color-dark-soft: #2d2d2d;
    --color-dark-green: #0F2E0D;
    --color-warm-bg: #f7f5f0;
    --color-warm-bg-alt: #efeadf;
    --color-text: #333;
    --color-text-light: #666;
    --color-white: #fff;
    --color-border: #e0ddd5;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
}

/* ===========================
   RESET & GLOBAL
   =========================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
}

input, select, textarea, button {
    font-size: 16px;
    font-family: var(--font-body);
}

ol, ul, p { margin-bottom: 1.25rem; }
a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: var(--transition);
}
a:hover, a:focus { color: var(--color-primary-dark); text-decoration: none; }

img { max-width: 100%; height: auto; }
button {
    width: auto;
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
}

.text-primary { color: var(--color-primary) !important; }
.text-accent { color: var(--color-accent) !important; }
.bg-primary { background-color: var(--color-primary) !important; color: var(--color-white) !important; }
.bg-dark { background-color: var(--color-dark) !important; color: var(--color-white) !important; }
.bg-warm { background-color: var(--color-warm-bg) !important; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}
h1, .h1 { font-size: 60px; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
h2, .h2 { font-size: 38px; margin-bottom: 1rem; }
h3, .h3 { font-size: 26px; margin-bottom: 0.8rem; }
h4, .h4 { font-size: 20px; margin-bottom: 0.8rem; }
h5, .h5 { font-size: 17px; }

.subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-accent-dark);
    display: block;
    margin-bottom: 0rem;
}

.lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
}

.section-head {
    margin-bottom: 3rem;
}
.section-head .h2,
.section-head h2 {
    margin-bottom: 1.5rem;
}
.section-head.text-center .lead {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding-top: 1rem;
}
.admin-bar header {
    top: 32px;
}

header .navbar {
    padding: 15px 25px;
    margin: 0 -25px;
    background: rgba(255, 255, 255, 0.82);
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border-radius: 15px;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
header .navbar .container-lg {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .navbar-brand {
    order: 1;
    padding: 0;
    margin: 0;
}
header .navbar-brand img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

/* WPML Language Switcher */
.wpml-ls {
    position: relative;
    padding-left: 1rem;
    margin-right: -10px;
}
.wpml-ls .wpml-ls-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wpml-ls .wpml-ls-item-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
}
.wpml-ls .wpml-ls-icon {
    font-size: 10px;
    color: var(--color-text-light);
    transition: transform 0.2s ease;
}
.wpml-ls .wpml-ls-current-language:hover .wpml-ls-icon {
    transform: rotate(180deg);
}
.wpml-ls .wpml-ls-sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
    z-index: 100;
}
.wpml-ls .wpml-ls-current-language:hover .wpml-ls-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.wpml-ls .wpml-ls-sub-menu .wpml-ls-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}
.wpml-ls .wpml-ls-sub-menu .wpml-ls-link:hover {
    background: var(--color-warm-bg);
    color: var(--color-dark);
}
.wpml-ls .wpml-ls-sub-menu .wpml-ls-current-language .wpml-ls-link {
    color: var(--color-primary);
    font-weight: 600;
}

/* Flag icons (WPML) */
.wpml-ls-flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    vertical-align: middle;
}

header .navbar-collapse {
    order: 2;
}

header .navbar .navbar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
header .navbar .navbar-menu li a {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 6px 20px;
    display: block;
    position: relative;
    transition: var(--transition);
    border-radius: 4px;
}
header .navbar .navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
header .navbar .navbar-menu li a:hover::after,
header .navbar .navbar-menu li.current-menu-item a::after,
header .navbar .navbar-menu li.current_page_item a::after {
    transform: scaleX(1);
}

/* WP menu-item CTA button - no underline animation */
header .navbar .navbar-menu li.menu-item-cta a::after {
    display: none;
}

/* Hamburger */
header .navbar-toggler {
    order: 3;
    padding: 0;
    margin: 0 0 0 15px;
    border: 0;
    width: 44px;
    height: 44px;
    outline: none !important;
    box-shadow: none !important;
    background: var(--color-primary);
    border-radius: 8px;
    transition: var(--transition);
}
header .navbar-toggler:hover {
    background: var(--color-primary-dark);
}
header .navbar-toggler .burger { display: inline-block; vertical-align: middle; margin-top: -5px; }
header .navbar-toggler .burger span {
    width: 22px;
    height: 2px;
    background: var(--color-white);
    display: block;
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}
header .navbar-toggler .burger span.line-top { transform: rotate(135deg); }
header .navbar-toggler .burger span.line-bottom { margin-top: -14px; transform: rotate(-135deg); }
header .navbar-toggler .burger span.line-middle { opacity: 0; }
header .navbar-toggler.collapsed .burger { margin-top: 0px }
header .navbar-toggler.collapsed .burger span.line-top { margin-top: 4px; transform: none; }
header .navbar-toggler.collapsed .burger span.line-middle { opacity: 1; }
header .navbar-toggler.collapsed .burger span.line-bottom { width: 14px; margin-top: 4px; transform: none; }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-primary);
}
/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #888;
}
.hero-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.25) 15%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    opacity: 0.8;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: transform, opacity;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-slide:first-child { opacity: 1; }

/* Legacy single bg fallback */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.25) 15%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
    max-width: 800px;
}
.hero-content .subtitle {
    color: var(--color-primary-light);
    font-size: 14px;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
}
.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-content .lead {
    margin-bottom: 2rem;
}
.hero-stars {
    font-size: 14px;
    color: yellow;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.hero-scroll:hover { color: var(--color-white); }
.hero-scroll i { font-size: 18px; animation: bounce 2s infinite; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* Sub-page hero (smaller) */
.hero-sub {
    min-height: 45vh;
    padding-top: 100px;
}
.hero-sub .hero-content {
    padding: 40px 0 10px;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 100px 0;
    position: relative;
}
.section-sm { padding: 60px 0; }
.section-warm { background-color: var(--color-warm-bg); }
.section-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}
.section-dark h2,
.section-dark h3,
.section-dark .h2,
.section-dark .h3 {
    color: var(--color-white);
}
.section-dark .lead { color: rgba(255,255,255,0.7); }

.section-divider {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
}
.section-divider h2,
.section-divider .h2 { color: var(--color-white); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: var(--radius);
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}
.btn i { font-size: 14px; transition: transform 0.2s ease; }
.btn:hover i { transform: translateX(3px); }

.btn-lg { font-size: 17px; padding: 14px 30px; }
.btn-sm { font-size: 16px; padding: 8px 18px; }

.btn-primary {
    color: var(--color-white) !important;
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}
.btn-primary:hover {
    background: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 90, 39, 0.35);
}

.btn-outline-light {
    color: var(--color-white) !important;
    background: transparent !important;
    border-color: rgba(255,255,255,0.4) !important;
}
.btn-outline-light:hover {
    background: var(--color-white) !important;
    border-color: var(--color-white) !important;
    color: var(--color-dark) !important;
}

.btn-outline-primary {
    color: var(--color-accent) !important;
    background: transparent !important;
    border-color: var(--color-accent) !important;
}
.btn-outline-primary:hover {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 120, 23, 0.3);
}

.btn-dark {
    color: var(--color-white) !important;
    background: var(--color-dark) !important;
    border-color: var(--color-dark) !important;
}
.btn-dark:hover {
    background: #000 !important;
    border-color: #000 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    color: var(--color-white) !important;
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    font-weight: 600;
}
.btn-accent:hover {
    background: var(--color-accent-dark) !important;
    border-color: var(--color-accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 120, 23, 0.35);
}

/* ===========================
   CARDS / BOXES
   =========================== */
.card-service {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.card-service .card-img {
    height: 240px;
    overflow: hidden;
}
.card-service .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card-service:hover .card-img img {
    transform: scale(1.08);
}
.card-service .card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-service .card-body h3 {
    font-size: 22px;
    margin-bottom: 0.75rem;
}
.card-service .card-body p {
    color: var(--color-text-light);
    flex: 1;
}
.card-service .card-body .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Room card */
.card-room {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-height: 100%;
    transition: all 0.4s ease;
    position: relative;
}
.card-room:hover {
    box-shadow: var(--shadow-lg);
}
.card-room .card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.card-room .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card-room:hover .card-img img {
    transform: scale(1.05);
}
.card-room .card-img .card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 50;
}
.card-room .card-body {
    padding: 2rem 2rem 80px;
}
.card-room .card-body h3 {
    margin-bottom: 0.5rem;
}
.card-room .card-body .btn {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}
.card-room .room-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.card-room .room-price small {
    font-weight: 400;
    color: var(--color-text-light);
    font-family: var(--font-body);
}
.card-room .room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.card-room .room-features li {
    font-size: 14px;
    color: var(--color-text-light);
    padding: 4px 12px;
    background: var(--color-warm-bg);
    border-radius: 20px;
}
.card-room .room-features li i {
    font-size: 12px;
    margin-right: 4px;
    color: var(--color-primary);
}

/* Room slider */
.card-room .room-slider { margin: 0; }
.card-room .room-slider .room-slide a { display: block; height: 280px; }
.card-room .room-slider .room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-room .room-slider .slick-arrow {
    width: 36px;
    height: 36px;
    z-index: 10;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card-room:hover .room-slider .slick-arrow { opacity: 1; }
.card-room .room-slider .slick-arrow::after {
    color: var(--color-dark);
}
.card-room .room-slider .slick-prev { left: 10px; }
.card-room .room-slider .slick-next { right: 10px; }
.card-room .room-slider .slick-dots {
    bottom: 10px;
    z-index: 10;
}
.card-room .room-slider .slick-dots li button {
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.card-room .room-slider .slick-dots li.slick-active button {
    background: var(--color-white);
}

/* Feature box */
.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: var(--color-warm-bg);
    color: var(--color-accent);
    font-size: 28px;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-box h4 {
    font-size: 18px;
    margin-bottom: 0.5rem;
}
.feature-box p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ===========================
   IMAGE GALLERY
   =========================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item::after {
    content: none;
}
.gallery-item.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.gallery-play-button:hover {
    background: #fff;
    color: #000;
}

.gallery-play-button i {
    color: #fff;
    font-size: 22px;
    margin-left: 3px;
}

/* ===========================
   PRICE TABLE
   =========================== */
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}
.price-item:last-child { border-bottom: 0; }
.price-item .price-name {
    font-weight: 500;
    color: var(--color-dark);
}
.price-item .price-name small {
    display: block;
    font-weight: 400;
    color: var(--color-text-light);
}
.price-item .price-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

/* ===========================
   CTA SECTION
   =========================== */
.section-cta {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    opacity: 1;
}
.section-cta h2 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.section-cta .container-lg {
    position: relative;
    z-index: 2;
}
.section-cta .lead {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}

/* ===========================
   ABOUT / SPLIT SECTION
   =========================== */
.split-section {
    position: relative;
    overflow: hidden;
}
.split-image {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-size: cover;
    background-position: center;
}
.split-image-left { left: 0; }
.split-image-right { right: 0; }

/* ===========================
   ICON LIST
   =========================== */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 5px 0;
}
.icon-list li i {
    color: var(--color-accent);
    margin-top: 5px;
    flex-shrink: 0;
}

/* ===========================
   CONTACT STRIP
   =========================== */
.contact-strip {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 22px 0;
}
.contact-strip .contact-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-strip .contact-strip-item > div {
    display: block;
    line-height: 1em;
}
.contact-strip .contact-strip-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.7;
}
.contact-strip .contact-strip-label {
    opacity: 0.7;
    line-height: 1;
    padding-bottom: 5px;
    font-size: 0.9rem;
    display: block;
}
.contact-strip .contact-strip-value {
    font-weight: 700;
    line-height: 1;
}
.contact-strip a {
    color: var(--color-white);
    text-decoration: none;
}
.contact-strip a:hover {
    color: rgba(255,255,255,0.8);
}

/* ===========================
   CONTACT
   =========================== */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
}
.contact-info li i {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: var(--color-warm-bg);
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 1px;
}
.contact-info li a {
    color: var(--color-text);
    text-decoration: none;
}
.contact-info li a:hover { color: var(--color-primary); }
.contact-info li strong {
    display: block;
    font-weight: 600;
    line-height:  1.2em;
}

/* Social links (kontakt stránka) */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.social-link i {
    font-size: 18px;
    color: var(--color-primary);
}
.social-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(43, 90, 39, 0.04);
}

/* Contact hours label */
.contact-hours-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

/* ===========================
   FORMS
   =========================== */
form label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: var(--color-dark);
}
.form-control {
    font-size: 16px;
    color: var(--color-text) !important;
    padding: 12px 18px;
    border: 1px solid var(--color-border) !important;
    background-color: var(--color-white) !important;
    border-radius: var(--radius);
    transition: var(--transition);
}
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(43, 90, 39, 0.15) !important;
    border-color: var(--color-primary) !important;
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-select {
    font-size: 16px;
    padding: 12px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background-color: var(--color-white);
    transition: var(--transition);
}
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(43, 90, 39, 0.15);
    border-color: var(--color-primary);
}

/* CF7 — validácia a hlášky */
.wpcf7-not-valid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12) !important;
}
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    display: block;
}
.wpcf7-response-output {
    border: none !important;
    border-radius: var(--radius) !important;
    padding: 14px 20px !important;
    margin: 0 0 1.5rem 0 !important;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
    background: #fff5f5;
    color: #dc3545;
    border: 1px solid #f5c6cb !important;
}
.wpcf7-form.sent .wpcf7-response-output {
    background: #f0faf0;
    color: var(--color-primary);
    border: 1px solid #c3e6cb !important;
}
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
    background: #fff8e1;
    color: #856404;
    border: 1px solid #ffeeba !important;
}
.wpcf7-spinner {
    margin: 0 0 0 12px;
    vertical-align: middle;
}
form p { margin-bottom: 0; }
form br { display: none; }
form .wpcf7-list-item { margin-left: 0; }
.screen-reader-response { display: none !important; }

/* ===========================
   OPENING HOURS TABLE
   =========================== */
.hours-table {
    width: 100%;
}
.hours-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:first-child { font-weight: 500; }
.hours-table td:last-child { text-align: right; }

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--color-dark-green);
    color: rgba(255,255,255,0.8);
    padding: 0;
}
footer .footer-content {
    padding: 60px 0 20px;
}
footer .footer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
footer ul li { padding: 4px 0; }
footer ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}
footer ul a:hover { color: #fff; }

footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
}
footer .footer-contact li i {
    color: var(--color-accent);
    margin-top: 5px;
}
footer .footer-contact li a {
    color: rgba(255,255,255,0.7);
}
footer .footer-contact li a:hover {
    color: #fff;
}

footer .footer-social {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}
footer .footer-social a {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}
footer .footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

footer .footer-copy {
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    color: rgba(255,255,255,0.4);
}
footer .footer-copy a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
footer .footer-copy a:hover { color: #FFF; }

footer .footer-brand {
    margin-bottom: 1rem;
}
footer .footer-brand img,
.footer-logo-img {
    height: 40px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}
footer .hours-table td { border-color: rgba(255, 255, 255, 0.1); }
footer .footer-hours {
    color: rgba(255,255,255,0.6);
}

/* ===========================
   MAP
   =========================== */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

/* ===========================
   SLICK SLIDER OVERRIDES
   =========================== */
.slick-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm) !important;
}
.slick-arrow, .slick-arrow:focus, .slick-arrow:active {
    background: var(--color-white);
    color: var(--color-dark);
}
.slick-arrow:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.slick-arrow::after {
    font-size: 18px;
    font-family: "Font Awesome 7 Pro" !important;
    font-weight: 300;
}
.slick-arrow::before { display: none; }
.slick-prev { left: 20px; }
.slick-prev::after { content: "\f104"; }
.slick-next { right: 20px; }
.slick-next::after { content: "\f105"; }

.slick-dots { bottom: -3rem; }
.slick-dots li { width: auto; margin: 0 4px !important; padding: 0 !important; }
.slick-dots li::before { display: none !important; }
.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--color-border);
    transition: var(--transition);
}
.slick-dots li button::before { display: none; }
.slick-dots li button:hover { background: var(--color-primary-light); }
.slick-dots li.slick-active { margin: 0 4px !important; }
.slick-dots li.slick-active button { width: 24px; background: var(--color-primary); }

/* ===========================
   UTILITIES
   =========================== */
.text-page ul { list-style: none; padding: 0; }
.text-page ul li {
    position: relative;
    padding: 4px 0 4px 22px;
}
.text-page ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin: 1.5rem 0;
}
.divider-center {
    margin-left: auto;
    margin-right: auto;
}

.img-rounded { border-radius: var(--radius-lg); }
.hr-border { border-color: var(--color-border); }
.img-cover-420 { height: 420px; object-fit: cover; }
.img-cover-320 { height: 320px; object-fit: cover; }
.overflow-hidden { overflow: hidden; }

/* ===========================
   DECORATIVE ELEMENTS
   =========================== */
.section-decorated {
    position: relative;
    overflow: hidden;
}
.section-decorated::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    opacity: 0.1;
    pointer-events: none;
}
.section-decorated::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.08;
    pointer-events: none;
}
.section-decorated.section-decorated-right::before {
    left: auto;
    left: -60px;
    top: auto;
    bottom: -80px;
}
.section-decorated.section-decorated-right::after {
    left: auto;
    right: 5%;
    bottom: auto;
    top: 20px;
}

/* Dot pattern decoration */
.section-warm {
    position: relative;
}
.section-warm::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.12;
    pointer-events: none;
}

/* Parallax on split image */
.split-parallax {
    background-attachment: fixed;
}


/* Gallery items subtle float animation on hover */
.gallery-item {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Feature box subtle entrance */
.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-4px);
}
.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    background: var(--color-warm-bg);
    border-radius: 50%;
}
.feature-icon-sm {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 20px;
}
.h4-sm { font-size: 16px; }

/* Contact strip parallax-like gradient */
.section-sm[style*="--color-primary"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    pointer-events: none;
}

/* ===========================
   SECTION PRIMARY (DARK GREEN)
   =========================== */
.section-primary {
    background-color: var(--color-dark-green);
    color: rgba(255,255,255,0.92);
}
.section-primary p {
    line-height: 1.6;
}
.section-primary h2,
.section-primary h3,
.section-primary .h2,
.section-primary .h3,
.section-primary h4 {
    color: var(--color-white);
}
.section-primary .subtitle {
    color: var(--color-accent-light);
}
.section-primary .lead {
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}
.section-primary .divider {
    background: var(--color-accent);
}
.section-primary .text-muted {
    color: rgba(255,255,255,0.6) !important;
}
.section-primary .text-accent {
    color: var(--color-accent) !important;
}
.section-primary .h2.text-accent {
    color: var(--color-accent) !important;
}

/* ===========================
   FEATURE BOX MINIMAL (NO CIRCLE)
   =========================== */
.feature-box-minimal {
    text-align: center;
    padding: 1.5rem 1rem;
}
.feature-box-minimal .feature-icon-minimal {
    font-size: 32px;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    line-height: 1;
}
.feature-box-minimal h4 {
    font-size: 17px;
    margin-bottom: 0.25rem;
}
.feature-box-minimal p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ===========================
   FEATURE ICON OUTLINE
   =========================== */
.feature-icon-outline {
    width: 56px;
    height: 56px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    background: var(--color-warm-bg);
    color: var(--color-primary);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}
.section-warm .feature-icon-outline {
    background:  #fff;
}

/* ===========================
   TESTIMONIAL CARD
   =========================== */
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-card .testimonial-quote {
    position: absolute;
    top: -8px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.2;
    pointer-events: none;
}
.testimonial-card .testimonial-text {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    flex: 1;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}
.testimonial-card .testimonial-author-info strong {
    display: block;
    color: var(--color-dark);
}
.testimonial-card .testimonial-author-info span {
    color: var(--color-text-light);
}
.testimonial-card .testimonial-stars {
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* ===========================
   CARD SERVICE OVERLAY
   =========================== */
.card-service-overlay {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    display: block;
    text-decoration: none !important;
    color: var(--color-white) !important;
}
.card-service-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card-service-overlay:hover img {
    transform: scale(1.08);
}
.card-service-overlay .card-overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.4s ease;
}
.card-service-overlay:hover .card-overlay-content {
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
}
.card-service-overlay .card-overlay-content h3 {
    color: var(--color-white);
    font-size: 24px;
    margin-bottom: 0.5rem;
}
.card-service-overlay .card-overlay-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===========================
   GALLERY - GLightbox príprava
   =========================== */
.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.gallery-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item a::after {
    content: none;
}

.sidebar-sticky {
    background: var(--color-warm-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 120px;
}
.sidebar-sticky .contact-info li i {
    background:  #FFF;
}


/* ===========================
   RESPONSIVE
   =========================== */
@media all and (max-width: 1399px) {
   header .navbar .navbar-menu li a {
    padding-left: 15px;
    padding-right:  15px;
   }
   header .navbar .navbar-menu li a::after {
    left: 15px;
    right: 15px;
   }
}
@media all and (max-width: 1199px) {
    h1, .h1 { font-size: 42px; }
    h2, .h2 { font-size: 32px; }

    header .navbar { padding: 12px 20px; margin: 0 -20px; }
    header .navbar-toggler { order: 4; }
    header .navbar .navbar-collapse { order: 5; }
    header .navbar .navbar-menu li { padding: 0; }
    header .navbar .navbar-menu li a {
        font-size: 18px;
        padding: 10px 15px;
    }
    header .navbar .navbar-menu li a::after { display: none; }

    .show-navigation { overflow: hidden; }
    .show-navigation header { position: fixed; }
    .show-navigation header .navbar {
        background: var(--color-white) !important;
        height: calc(100vh - 30px);
        align-items: flex-start;
        overflow-y: auto;
    }
    .show-navigation header .navbar-collapse {
        min-height: calc(100vh - 100px);
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
    }
    .show-navigation header .navbar-collapse:not(.show) { height: auto !important; }
    .show-navigation header .navbar-collapse .navbar-menu {
        width: 100%;
        text-align: center;
        padding-top: 30px;
        flex-direction: column;
    }

    header .navbar .navbar-contact { flex-direction: row; }
}

@media all and (max-width: 991px) {
    h1, .h1 { font-size: 45px; }
    h2, .h2 { font-size: 35px; }
    .hero-sub { min-height: 35vh; }

    header { padding: 10px 1rem 0; }
    .section { padding: 50px 15px; }

    /* Disable parallax on tablets/mobile - not supported well on touch */
    .split-parallax { background-attachment: scroll; }

    .section.split-section {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .split-content {
        padding: 1.5rem 1rem 0;
    }
    .split-image {
        position: static;
        width: 100%;
        height: 50vw;
        max-height: 400px;
    }

    .gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.gallery-item-lg { grid-column: span 1; grid-row: span 1; }

}

@media all and (max-width: 767px) {
    h1, .h1 { font-size: 40px; }
    h2, .h2 { font-size: 28px; }
    .lead { font-size: 18px; }

    .section-head { margin-bottom: 2rem; }

    .card-room .card-img { height: 220px; }
    .card-room .room-slider .room-slide a { height: 220px; }
    .card-service .card-img { height: 200px; }

    .card-service-overlay { height: 280px; }
    .testimonial-card { padding: 2rem 1.5rem 1.5rem; }

    .card-room .room-price { font-size: 24px; }

    .section-cta { padding: 60px 1rem; }
}

@media all and (max-width: 575px) {
    h1, .h1 { font-size: 35px; }
    header { padding: 10px 10px 0; }
    .hero-content { padding: 100px 0 60px; }
    .hero-sub .hero-content { padding: 60px 0 30px; }
    .subtitle { font-size: 12px; letter-spacing: 2px; }

    .section { padding: 40px 10px; }
    .gallery { grid-template-columns: 1fr; }

    .btn-lg { font-size: 16px; padding: 12px 25px; }

    .card-room .room-price { font-size: 20px; }

    header .navbar { padding: 10px 10px; margin: 0 -10px; }
    header .navbar .navbar-contact li.navbar-contact { display: none; }

    .section-decorated::before,
    .section-decorated::after { display: none; }

    .split-content {
        padding: 1.5rem 10px 0;
    }

    .price-item .price-value { font-size: 18px; }

    .section-cta { padding: 40px 10px; }

    .contact-strip .contact-strip-item { gap: 10px; font-size: 13px; }
    .contact-strip .contact-strip-label { font-size: 12px; }
    .contact-strip .contact-strip-icon { width: 30px; height: 30px; line-height: 30px; font-size: 12px; }

    .card-service-overlay .card-overlay-content { padding: 1rem; }

    .sidebar-sticky { padding: 1.5rem; }

    footer .footer-copy { text-align: center; }

    .img-cover-320 { height: 50vw; }
    .img-cover-420 { height: 60vw; }

    .card-room .card-body { padding: 1rem 1rem 60px; }
    .card-room .card-body .btn { left: 1rem; bottom: 1rem; }
}

@media all and (max-width: 400px) {
    header .navbar-brand img { height: 40px; }

    .wpml-ls { padding-left: 0; margin-left: -1rem; }
    header .navbar-toggler { margin-left: 0px; }
}
