/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #666666;
    --accent-color: #F5F5F5;
    --text-dark: #000000;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: left;
    margin-bottom: 30px;
    color: #14342b;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.section-title::after {
    display: none;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    z-index: 100;
    transition: background-color 0.2s ease, backdrop-filter 0.2s ease, box-shadow 0.2s ease;
}

.navbar .container {
    max-width: 100%;
    width: 100%;
    padding: 0 40px;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
}

/* Adjust nav wrapper with back button */
.static-nav .nav-wrapper {
    gap: 0.5rem;
}

/* Static navigation for non-home pages */
.navbar.static-nav {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
}

/* When scrolled on static pages */
.navbar.static-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Nav links color on static nav */
.navbar.static-nav .nav-link {
    color: var(--white);
}

.navbar.static-nav.scrolled .nav-link {
    color: var(--text-dark);
}

/* Logo color on static nav */
.navbar.static-nav .logo-img {
    filter: brightness(0) invert(1);
}

.navbar.static-nav.scrolled .logo-img {
    filter: brightness(0) invert(0);
}

/* Booking buttons on static nav */
.navbar.static-nav .booking-btn {
    border-color: rgba(255, 255, 255, 0.8);
}

.navbar.static-nav.scrolled .booking-btn {
    border-color: initial;
}

/* Hide language switcher on non-home pages */
/* Hide language switcher only on kontakt page, show on blog pages */
.kontakt-page .language-switcher {
    display: none;
}

/* Hide mobile menu toggle on kontakt and blog-post pages */
.kontakt-page .mobile-menu-toggle,
.blog-post-page .mobile-menu-toggle {
    display: none;
}

/* Hide navigation menu on mobile for static pages */
@media (max-width: 768px) {
    .static-nav .nav-menu {
        display: none !important;
    }
}

/* Ensure nav menu is always visible on non-home pages - DESKTOP ONLY */
@media (min-width: 769px) {
    .static-nav .nav-menu {
        position: static !important;
        display: flex !important;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        overflow: visible;
        left: 0;
    }

    .static-nav .nav-link {
        color: var(--white);
    }

    .static-nav.scrolled .nav-link {
        color: var(--text-dark);
    }
    
    .static-nav .nav-link::after {
        background: var(--white);
    }
    
    .static-nav.scrolled .nav-link::after {
        background: var(--text-dark);
    }
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease;
}

.navbar.scrolled .logo-img {
    filter: brightness(0) invert(0);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    margin: 0;
    flex: 1;
    margin-right: auto;
    z-index: 2;
    min-width: 0;
}


.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-link::after {
    background: var(--text-dark);
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 1rem;
}

.language-current {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.language-current:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
    border-radius: 0;
}

.navbar.scrolled .language-current:focus-visible {
    outline-color: var(--text-dark);
}

.language-current .lang-flag {
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .language-current .lang-flag {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.language-current:hover .lang-flag {
    transform: scale(1.05);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: var(--transition);
    z-index: 2000;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    width: 100%;
    padding: 8px 16px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.language-option:hover,
.language-option:focus-visible {
    background: rgba(0, 0, 0, 0.05);
}

.language-option.active {
    background: rgba(0, 0, 0, 0.08);
}

.language-name {
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.lang-flag {
    display: inline-flex;
    width: 32px;
    height: 24px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid transparent;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.lang-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.language-option:hover .lang-flag,
.language-option.active .lang-flag {
    border-color: var(--text-dark);
}

.language-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    top: 1rem;
    left: 20px;
    z-index: 1001;
    width: 30px;
    height: 30px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

.navbar.static-nav .mobile-menu-toggle span {
    background: var(--white);
}

.navbar.static-nav.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

/* Make close button visible when menu is open */
.nav-menu.active ~ .nav-wrapper .mobile-menu-toggle span,
body.menu-open .mobile-menu-toggle span {
    background: var(--text-dark);
}

/* Transform to X when menu is open */
body.menu-open .mobile-menu-toggle {
    gap: 0;
}

body.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translateY(0px);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12.5px;
    margin-top: -1.5px;
}

body.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(0px);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12.5px;
    margin-top: -1.5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/hiskapodklumpo2.webp') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
    }
    to {
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #14342b;
    color: var(--white);
    border: 1px solid #14342b;
    border-radius: 0;
    padding: 16px 48px;
    box-shadow: none;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #60935d;
    color: var(--white);
    border-color: #4f794d;
    box-shadow: none;
    transform: none;
}

.btn-primary:focus-visible {
    outline: none;
}

/* Booking Buttons in Navigation */
.booking-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
    margin-left: auto;
}

.booking-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.booking-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.booking-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.booking-btn-booking {
    background: #003580;
    color: var(--white);
    border-color: #003580;
}

.booking-btn-booking:hover {
    background: #0046a3;
    border-color: #0046a3;
    color: var(--white);
}

.booking-btn-airbnb {
    background: #FF5A5F;
    color: var(--white);
    border-color: #FF5A5F;
}

.booking-btn-airbnb:hover {
    background: #ff787c;
    border-color: #ff787c;
    color: var(--white);
}

.navbar.scrolled .booking-btn {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-section .container {
    max-width: 1800px;
    padding-left: 60px;
    padding-right: 60px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 100px;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding-right: 60px;
}

.about-content .section-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: left;
}

.about-image {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border-color);
}

.about-content {
    max-width: 100%;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    max-width: 100%;
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
    padding-top: 120px;
    padding-bottom: 120px;
}

.gallery-section .section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    text-align: center;
    margin-bottom: 15px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 80px;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

.gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
    padding: 40px 0 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    user-select: none;
    -webkit-user-drag: none;
    cursor: grab;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-grid.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: grabbing;
}

.gallery-grid.dragging .gallery-item {
    pointer-events: none;
    cursor: grabbing;
}


.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-left {
    left: 10px;
}

.gallery-nav-right {
    right: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    width: calc(100% / 3);
    aspect-ratio: 4/3;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-grid:active {
    cursor: grabbing;
}

/* Mobile: full width items */
@media (max-width: 768px) {
    .gallery-item {
        scroll-snap-align: center;
    }
}

.gallery-item:hover {
    border-color: var(--text-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.gallery-dot.active {
    background: #60935D;
    width: 8px;
    height: 8px;
}

.gallery-dot:hover {
    background: rgba(96, 147, 93, 0.5);
}

.gallery-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

/* Accommodation Section */
.accommodation-section {
    background: var(--white);
    padding-top: 120px;
    padding-bottom: 120px;
}

.accommodation-section .container {
    max-width: 1800px;
    padding-left: 60px;
    padding-right: 60px;
}

.accommodation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 100%;
    margin: 0;
}

.accommodation-content {
    max-width: 100%;
    margin: 0;
    padding-right: 0;
}

.accommodation-content .section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: left;
    color: #14342b;
}

.accommodation-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.accommodation-list {
    list-style: none;
    padding-left: 0;
}

.accommodation-list li {
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 2px 0;
    margin-bottom: 0;
    color: var(--text-light);
    padding-left: 0;
}

.accommodation-image {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
}

.accommodation-image img {
    width: 100%;
    height: auto;
    display: block;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.accommodation-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.accommodation-card:hover {
    border-color: var(--text-dark);
}

.accommodation-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.accommodation-card ul {
    list-style: none;
    padding-left: 0;
}

.accommodation-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.accommodation-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: bold;
}

/* Calendar Section */
.calendar-section {
    background: var(--white);
    padding-top: 80px;
    padding-bottom: 80px;
}

.calendar-section .container {
    max-width: 700px;
}

.calendar-section .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 10px;
    color: #14342b;
}

.calendar-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-wrapper {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 20px;
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
}

.calendar-month-year {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.calendar-btn {
    background: var(--white);
    border: 2px solid #14342b;
    color: #14342b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.calendar-btn:hover {
    background: #14342b;
    color: var(--white);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 8px 3px;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.85rem;
    transition: var(--transition);
    position: relative;
}

.calendar-day.empty {
    background: transparent;
    border: none;
}

.calendar-day.today {
    border: 2px solid #14342b;
    font-weight: 600;
}

.calendar-day.available {
    background: #e8f5e9;
    border-color: #81c784;
}

.calendar-day.available:hover {
    background: #c8e6c9;
}

.calendar-day.booked {
    background: #ffebee;
    border-color: #e57373;
    color: #c62828;
}

.calendar-day.past {
    opacity: 0.4;
    color: var(--text-light);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.legend-color {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    display: inline-block;
}

.legend-color.available {
    background: #e8f5e9;
    border-color: #81c784;
}

.legend-color.booked {
    background: #ffebee;
    border-color: #e57373;
}

.calendar-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-style: italic;
}

/* Location Section */
.location-section {
    background: var(--white);
    padding-top: 200px;
    padding-bottom: 120px;
}

.location-section .container {
    max-width: 1800px;
    padding-left: 60px;
    padding-right: 60px;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 100%;
    margin: 0;
}

.location-image {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
}

.location-image img {
    width: 100%;
    height: auto;
    display: block;
}

.location-content {
    max-width: 100%;
    margin: 0;
    padding-left: 0;
}

.location-content .section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: right;
    color: #14342b;
}

.location-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: right;
    color: var(--text-light);
}

.distance-info {
    margin-top: 30px;
    text-align: right;
}

.distance-info h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.distance-list {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

.distance-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Experiences Section */
.experiences-section {
    background: var(--white);
    padding-top: 120px;
    padding-bottom: 120px;
}

.experiences-section .container {
    max-width: 1600px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}

.experiences-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 100px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 0;
    justify-content: center;
}

.experiences-image {
    width: 100%;
    max-width: 600px;
    margin: 0;
}

.experiences-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experiences-content {
    max-width: 600px;
    margin: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.experiences-content .section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
    color: #14342b;
}

.experience-category {
    margin-bottom: 20px;
}

.experience-category h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: left;
}

.experience-category h4 {
    color: var(--text-dark);
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.experience-category ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.experience-category li {
    padding: 2px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.culinary-section {
    margin-top: 20px;
}

/* Events Section */
.events-section {
    background: var(--white);
    padding-top: 120px;
    padding-bottom: 120px;
}

.events-section .container {
    max-width: 1600px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}

.events-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 100px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 0;
    justify-content: center;
}

.events-image {
    width: 100%;
    max-width: 600px;
    margin: 0;
}

.events-image img {
    width: 100%;
    height: auto;
    display: block;
}

.events-content {
    max-width: 600px;
    margin: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.events-content .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
    color: #14342b;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-link {
    display: block;
    padding: 10px 15px;
    background: var(--white);
    border: 2px solid #14342b;
    border-radius: 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
    line-height: 1.3;
}

.event-link:hover {
    background: #14342b;
    color: var(--white);
}

.event-item:hover {
    border-color: var(--text-dark);
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding-top: 80px;
    padding-bottom: 100px;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--text-dark);
}

.footer .container {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0 50px 0;
    border-bottom: none;
    margin-bottom: 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #14342b;
}

.footer-buttons {
    display: flex;
    gap: 15px;
}

.footer-btn {
    background: var(--white);
    border: 2px solid #14342b;
    color: #14342b;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-btn:hover {
    background: #14342b;
    color: var(--white);
}

/* Mobile Booking Buttons in Navigation */
.mobile-booking-buttons {
    display: none;
}

.mobile-booking-btn {
    background: #14342b;
    color: var(--white);
    border: 2px solid #14342b;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.mobile-booking-btn:hover {
    background: var(--white);
    color: #14342b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #14342b;
    padding: 20px 40px;
    margin: 0 -40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white);
}

.footer-social {
    color: var(--white);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: #CCCCCC;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: #CCCCCC;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    font-size: 2rem;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* Back button positioning on mobile */
    .back-button-nav {
        position: absolute;
        left: 60px;
        z-index: 1002;
    }

    /* Back button on static nav pages (no hamburger) */
    .static-nav .back-button-nav {
        position: absolute;
        left: 20px;
        z-index: 1002;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-menu,
    .static-nav .nav-menu {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 100px;
        padding-left: 20px;
        gap: 2rem;
        transition: var(--transition);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        display: flex;
    }

    .nav-menu .nav-link,
    .static-nav .nav-menu .nav-link,
    .static-nav.scrolled .nav-menu .nav-link {
        color: var(--text-dark);
    }

    .nav-menu.active,
    .static-nav .nav-menu.active,
    .static-nav.scrolled .nav-menu.active {
        left: 0;
    }

    .booking-buttons {
        display: none;
    }

    /* Show booking buttons on mobile for static nav */
    .static-nav .booking-buttons {
        display: flex;
        gap: 8px;
        position: absolute;
        right: 20px;
        z-index: 1002;
    }

    /* Hide booking buttons on kontakt and blog pages on mobile */
    .kontakt-page .booking-buttons,
    .blog-page .booking-buttons {
        display: none !important;
    }

    .static-nav .booking-buttons .booking-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .mobile-booking-buttons {
        display: flex;
        gap: 10px;
        width: 100%;
        padding-right: 20px;
    }

    .mobile-booking-btn {
        flex: 1;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .language-switcher {
        margin-left: 0;
        width: 100%;
        padding-right: 20px;
        position: static;
    }

    /* Show all flags on mobile, hide dropdown */
    .language-current {
        display: none !important;
    }

    .language-dropdown {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 15px;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .language-option {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 10px 15px;
        border: 2px solid #14342b;
        border-radius: 0;
        background: var(--white);
    }

    .language-option:hover {
        background: #f5f5f5;
    }

    .lang-flag {
        width: 32px;
        height: 24px;
    }

    .language-name {
        display: inline;
        font-size: 0.9rem;
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
    }

    .hero {
        background-attachment: scroll;
        min-height: 500px;
    }

    .section {
        padding: 60px 0;
    }

    .gallery-container {
        padding: 0 60px;
    }

    .gallery-grid {
        gap: 0;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-nav-left {
        left: 5px;
    }

    .gallery-nav-right {
        right: 5px;
    }

    .accommodation-grid {
        grid-template-columns: 1fr;
    }

    .experiences-content {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-right: 0;
    }
    
    .about-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-content .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .accommodation-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .accommodation-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .accommodation-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .accommodation-content .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        text-align: center;
    }

    .experiences-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experiences-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .experiences-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .experiences-content .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        text-align: center;
    }
    
    .experience-category h3,
    .experience-category h4,
    .experience-category ul {
        text-align: center;
    }

    .events-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .events-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .events-content .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        text-align: center;
    }

    .calendar-section .section-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .calendar-wrapper {
        padding: 15px 12px;
    }

    .calendar-month-year {
        font-size: 1.1rem;
    }

    .calendar-btn {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .calendar-day {
        font-size: 0.75rem;
    }

    .calendar-day-header {
        font-size: 0.7rem;
        padding: 6px 2px;
    }

    .calendar-legend {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .legend-item {
        font-size: 0.85rem;
    }

    .legend-color {
        width: 18px;
        height: 18px;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .location-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .location-content .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        text-align: center;
    }
    
    .location-text {
        text-align: center;
    }
    
    .distance-info {
        text-align: center;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }

    .logo-img {
        height: 50px;
        max-width: 180px;
    }

    .logo {
        height: 60px;
    }

    /* Footer Tablet Responsive */
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding: 50px 0 40px 0;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-buttons {
        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 30px;
    }

    .footer-separator {
        display: none;
    }

    /* Map Tablet Responsive */
    .map-container iframe {
        height: 500px;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .calendar-wrapper {
        padding: 12px 8px;
    }

    .calendar-controls {
        padding: 0 3px;
    }

    .calendar-month-year {
        font-size: 0.95rem;
    }

    .calendar-btn {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .calendar-day {
        font-size: 0.7rem;
    }

    .calendar-day-header {
        font-size: 0.65rem;
        padding: 5px 1px;
    }

    .legend-color {
        width: 16px;
        height: 16px;
    }

    .gallery-container {
        padding: 0 50px;
    }

    .gallery-grid {
        gap: 0;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    /* Footer Mobile Improvements */
    .footer-top {
        flex-direction: column;
        gap: 25px;
        padding: 40px 0 30px 0;
        align-items: center;
    }

    .footer-logo-img {
        height: 70px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .footer-nav a {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .footer-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
    }

    .footer-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        padding: 20px 20px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        order: 3;
    }

    .footer-social {
        order: 1;
    }

    .footer-contact {
        flex-direction: column;
        gap: 8px;
        order: 2;
    }

    .footer-separator {
        display: none;
    }

    .footer-contact a {
        font-size: 0.85rem;
    }

    /* Map Container Mobile */
    .contact-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .map-container iframe {
        height: 400px;
    }

    /* Extra small screens for kontakt/blog pages */
    .page-hero {
        padding: 90px 15px 40px 15px;
    }

    .page-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .contact-info-card {
        padding: 25px 15px;
    }

    .contact-info-card h3 {
        font-size: 1.1rem;
    }

    .contact-info-card p {
        font-size: 0.9rem;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-content {
        padding: 18px;
    }

    .static-nav .booking-buttons .booking-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .back-button-nav {
        width: 38px;
        height: 38px;
    }

    /* Contact hero small screens */
    .contact-hero-image {
        height: 40vh;
        min-height: 250px;
    }

    .contact-hero-image .page-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    /* Contact form small screens */
    .contact-form-content .section-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .contact-form-container {
        padding: 25px 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .contact-form .btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* Performance Optimizations */
.gallery-item img {
    will-change: transform;
}

.btn {
    will-change: transform;
}

/* Page Hero Section (for contact and blog pages) */
.page-hero {
    background: #14342b;
    color: var(--white);
    padding: 140px 0 80px 0;
    text-align: center;
    position: relative;
}

/* Contact Page Hero with Image */
.contact-hero-image {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/IMG_7789.jpg') center bottom/cover no-repeat;
    background-position: center bottom;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.contact-hero-image .container {
    position: relative;
    z-index: 1;
}

.contact-hero-image .page-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Back Button in Navbar */
.back-button-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    margin-right: 2rem;
}

.back-button-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateX(-3px);
}

.back-button-nav svg {
    flex-shrink: 0;
}

/* Back button when navbar is scrolled */
.navbar.scrolled .back-button-nav,
.navbar.static-nav.scrolled .back-button-nav {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.navbar.scrolled .back-button-nav:hover,
.navbar.static-nav.scrolled .back-button-nav:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #14342b;
}

/* Back button on static nav (before scroll) */
.navbar.static-nav .back-button-nav {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Active nav link styling */
.nav-link.active {
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
}

.navbar.scrolled .nav-link.active::after {
    background: var(--text-dark);
}

/* Contact Info Section */
.contact-info-section {
    background: var(--white);
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: #14342b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #14342b;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: #14342b;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding-top: 80px;
    padding-bottom: 100px;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-content .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
    text-align: left;
    color: #14342b;
}

.contact-form-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-form-container {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #14342b;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Blog Section */
.blog-section {
    background: var(--white);
    padding-top: 80px;
    padding-bottom: 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: #14342b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #14342b;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: #60935d;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 20px 50px 20px;
    }

    .page-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        padding: 0 10px;
    }

    /* Mobile back button in navbar */
    .back-button-nav {
        padding: 8px 12px;
        margin-right: 0.5rem;
        font-size: 0.85rem;
    }

    .back-button-nav span {
        display: none;
    }

    .back-button-nav {
        width: 40px;
        height: 40px;
        padding: 8px;
        border-radius: 50%;
        justify-content: center;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon svg {
        width: 30px;
        height: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .blog-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.3rem;
    }

    /* Contact map on mobile */
    .contact-map-section .map-container iframe {
        height: 400px;
    }

    /* Section padding adjustments on mobile */
    .contact-info-section,
    .blog-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact-form-section {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    /* Contact hero image mobile */
    .contact-hero-image {
        height: 50vh;
        min-height: 300px;
        background-attachment: scroll;
        background-position: center bottom;
    }

    .contact-hero-image .page-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    /* Contact form mobile */
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .contact-form-content .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
    }

    .contact-form-description {
        text-align: center;
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}

/* Blog Post Full Page */
.blog-post-full {
    background: var(--white);
    min-height: 100vh;
}

.blog-post-header {
    background: #f8f9fa;
    padding: 120px 20px 60px 20px;
    text-align: center;
}

.blog-post-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-post-title-main {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-featured-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.blog-post-content-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 80px 20px;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 300;
}

.blog-post-content-full h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.blog-post-content-full h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-post-content-full p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}

.blog-post-content-full ul,
.blog-post-content-full ol {
    margin: 25px 0;
    padding-left: 30px;
}

.blog-post-content-full li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.blog-post-content-full strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-post-content-full blockquote {
    border-left: 4px solid #14342b;
    padding: 20px 30px;
    margin: 40px 0;
    background: #f8f9fa;
    font-style: italic;
    font-size: 1.2rem;
    color: #2c3e50;
}

.full-width-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.blog-image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.closing-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.blog-cta {
    background: linear-gradient(135deg, #14342b 0%, #60935d 100%);
    padding: 50px 40px;
    text-align: center;
    margin: 60px 0;
    color: var(--white);
}

.blog-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.blog-cta p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--white);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    color: var(--white);
}

.cta-btn-booking {
    background: #003580;
}

.cta-btn-booking:hover {
    background: #00244d;
    transform: translateY(-2px);
}

.cta-btn-airbnb {
    background: #FF5A5F;
}

.cta-btn-airbnb:hover {
    background: #e04e52;
    transform: translateY(-2px);
}

.blog-author {
    background: #f8f9fa;
    padding: 30px;
    margin-top: 60px;
    border-left: 4px solid #14342b;
}

.blog-author p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Mobile Responsive for Blog Posts */
@media (max-width: 768px) {
    .blog-post-header {
        padding: 100px 15px 40px 15px;
    }

    .blog-post-title-main {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .blog-post-content-full {
        padding: 40px 15px 60px 15px;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .blog-post-content-full h2 {
        font-size: 1.6rem;
        margin-top: 35px;
    }

    .blog-post-content-full h3 {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .blog-post-content-full p,
    .blog-post-content-full li {
        font-size: 1rem;
    }

    .blog-post-content-full blockquote {
        padding: 15px 20px;
        font-size: 1.05rem;
        margin: 30px 0;
    }

    .blog-image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .blog-image-grid img {
        height: 200px;
    }

    .blog-cta {
        padding: 35px 20px;
        margin: 40px -15px;
    }

    .blog-cta h3 {
        font-size: 1.5rem;
    }

    .blog-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-btn {
        width: 100%;
        padding: 12px 25px;
    }

    .blog-author {
        padding: 20px;
        margin: 40px -15px 0 -15px;
    }

    .blog-author p {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .lightbox,
    .btn {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }
}
