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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5F1EB;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 85px;
    width: auto;
    max-width: 240px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #9B8B78;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #9B8B78;
    transition: width 0.3s ease;
}

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

.social-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #9B8B78;
    color: white;
    transform: translateY(-2px);
}

.social-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(155, 139, 120, 0.4), rgba(155, 139, 120, 0.6));
    z-index: -1;
}

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



.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(10px);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    animation: titleGlow 6s ease-in-out infinite;
    letter-spacing: 0.02em;
}

@keyframes titleGlow {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
                    0 0 60px rgba(196, 164, 132, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 
                    0 0 80px rgba(196, 164, 132, 0.4);
        transform: scale(1.02);
    }
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #C4A484 0%, #9B8B78 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
                0 4px 10px rgba(196, 164, 132, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 
                0 6px 15px rgba(196, 164, 132, 0.6);
    background: linear-gradient(135deg, #D4B494 0%, #AB9B88 100%);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.hero-video {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.video-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-placeholder i {
    font-size: 2rem;
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #9B8B78;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C4A484, #9B8B78);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 400px;
    overflow: hidden;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.learn-more-btn {
    background: #9B8B78;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.learn-more-btn:hover {
    background: #C4A484;
    transform: translateY(-1px);
}

.about-image {
    text-align: center;
    overflow: hidden;
    flex-shrink: 0;
}

.about-img {
    width: 100%;
    max-width: 480px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 0 auto;
    flex-shrink: 0;
    min-width: 280px;
    /* Optymalizacja dla dużych zdjęć */
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    loading: lazy;
}

.about-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    background: linear-gradient(135deg, #F5F1EB 0%, #E8D8C4 100%);
    border-radius: 25px;
    padding: 3rem;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.image-placeholder:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder:hover::before {
    transform: translateX(100%);
}

.image-placeholder i {
    font-size: 3rem;
    color: #9B8B78;
}

.image-placeholder p {
    color: #666;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C4A484, #9B8B78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #9B8B78;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
}

/* Glamping Section */
.glamping {
    padding: 100px 0;
    background: #f8f9fa;
}

.glamping-description {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.glamping-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.glamping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.glamping-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glamping-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.glamping-image {
    height: 200px;
    background: linear-gradient(135deg, #C4A484, #9B8B78);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glamping-image .image-placeholder {
    background: transparent;
    color: white;
    padding: 0;
    height: auto;
}

.glamping-image .image-placeholder i {
    color: white;
    font-size: 4rem;
}

.glamping-image .image-placeholder p {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.glamping-info {
    padding: 1.5rem;
}

.glamping-info h3 {
    font-size: 1.5rem;
    color: #9B8B78;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.glamping-type {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.glamping-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.glamping-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.glamping-details i {
    color: #2d5016;
}

.glamping-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5016;
}

/* Owners Section */
.owners {
    padding: 100px 0;
    background: white;
}

.owners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.owners-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.owners-image {
    text-align: center;
}

.owners-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.image-placeholder {
    background: linear-gradient(135deg, #F5F1EB 0%, #E8D8C4 100%);
    border-radius: 25px;
    padding: 3rem;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.image-placeholder:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder:hover::before {
    transform: translateX(100%);
}

.image-placeholder i {
    font-size: 3rem;
    color: #9B8B78;
}

.image-placeholder p {
    color: #666;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.testimonial-item::before {
    content: '"';
    font-size: 4rem;
    color: #2d5016;
    position: absolute;
    top: -10px;
    left: 20px;
    font-weight: bold;
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #555;
}

.testimonial-author {
    color: #2d5016;
    font-weight: 600;
}

/* Attractions Section */
.attractions {
    padding: 100px 0;
    background: #f8f9fa;
}

.attractions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.attractions-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.attractions-map {
    text-align: center;
}

.map-placeholder {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 20px;
    padding: 3rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 3rem;
    color: #1976d2;
}

.map-placeholder p {
    color: #666;
    font-weight: 500;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2d5016;
    font-size: 0.9rem;
}

.map-address i {
    color: #e74c3c;
    font-size: 1.1rem;
}

.location-distances {
    margin-top: 2rem;
    text-align: left;
}

.location-distances h4 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.location-distances ul {
    list-style: none;
    padding: 0;
}

.location-distances li {
    margin-bottom: 0.5rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-distances i {
    color: #2d5016;
    width: 16px;
}

/* Pricing Info */
.pricing-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #2d5016;
}

.pricing-info h4 {
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-item .platform {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.price-item .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d5016;
    margin: 0 1rem;
}

.price-item .benefit {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* News Section */
.news {
    padding: 100px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.news-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image .image-placeholder {
    background: transparent;
    color: white;
    padding: 0;
    height: auto;
}

.news-image .image-placeholder i {
    color: white;
    font-size: 3rem;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1a3009;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F1EB 0%, #E8D8C4 100%);
    text-align: center;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    color: #9B8B78;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-phone {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-top: 1rem;
}

.booking-phone h3 {
    color: #9B8B78;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.phone-link {
    color: #C4A484;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.phone-link:hover {
    color: #9B8B78;
}

.booking-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Booking Widget */
.booking-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.booking-widget h3 {
    color: #9B8B78;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.booking-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-form .form-group {
    flex: 1;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #9B8B78;
}

.booking-form input[type="date"],
.booking-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E8D8C4;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input[type="date"]:focus,
.booking-form select:focus {
    outline: none;
    border-color: #C4A484;
}

.check-availability-btn {
    background: #C4A484;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.check-availability-btn:hover {
    background: #9B8B78;
    transform: translateY(-2px);
}

.check-availability-btn i {
    margin-right: 0.5rem;
}

.availability-result {
    background: #e8f5e8;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.availability-result h4 {
    color: #155724;
    margin-bottom: 1rem;
}

.booking-summary {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.booking-summary p {
    margin: 0.5rem 0;
    display: flex;
    justify-content: space-between;
}

.booking-summary .price {
    font-size: 1.2rem;
    border-top: 2px solid #C4A484;
    padding-top: 0.5rem;
    color: #C4A484;
    font-weight: 600;
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
}

.book-now-btn {
    background: #C4A484;
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.book-now-btn:hover {
    background: #9B8B78;
    transform: translateY(-2px);
}

.contact-btn {
    background: #e74c3c;
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.contact-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.booking-actions button i {
    margin-right: 0.5rem;
}

.booking-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.booking-platforms h3 {
    color: #9B8B78;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.platform-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
}

.platform-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.platform-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.platform-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #C4A484;
}

.platform-card h4 {
    color: #9B8B78;
    font-weight: 600;
    margin: 0;
}

.booking-card .platform-icon {
    background: #003B95;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.booking-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.booking-logo {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin: 0 auto;
    display: block;
}

.airbnb-card .platform-icon {
    color: #FF5A5F;
}

.slowhop-card .platform-icon {
    color: #2E7D32;
}

.naodludziu-card .platform-icon {
    color: #8BC34A;
}

.booking-form-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-form-section h3 {
    color: #9B8B78;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.contact-booking-form .form-group {
    margin-bottom: 1rem;
}

.contact-booking-form input,
.contact-booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
}

.terms-link {
    color: #C4A484;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #C4A484;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #9B8B78;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2d5016;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    color: #2d5016;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #2d5016;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1a3009;
    transform: translateY(-2px);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background: #2d5016;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-button:hover {
    background: #1a3009;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.second-location {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.second-location h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.second-location p {
    font-size: 0.9rem;
}

.footer-booking-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-platform-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-platform-link:hover {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
}

.footer-platform-link i {
    width: 16px;
    color: inherit;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

.footer-address {
    margin-bottom: 1rem;
}

.footer-address p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-address strong {
    color: #4CAF50;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
        padding: 10px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
        height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger .bar {
        pointer-events: none;
    }

    .social-nav {
        justify-content: center;
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }
    
    .hero-video {
        object-position: center;
    }

    .about-content,
    .owners-content,
    .attractions-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-img {
        height: 220px;
        max-width: 100%;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

    .platform-grid {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0;
    }

    .booking-card .platform-icon {
        width: 70px;
        height: 70px;
    }

    .booking-card {
        min-height: 100px;
    }

    .booking-phone {
        padding: 1.5rem;
    }

    .logo-img {
        height: 70px;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .price-item .price {
        margin: 0;
    }

    /* Mobile Booking Widget */
    .booking-widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }220px;
        max-width: 100%;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

    .platform-grid {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0;
    }

    .booking-card .platform-icon {
        width: 70px;
        height: 70px;
    }

    .booking-card {
        min-height: 100px;
    }

    .booking-phone {
        padding: 1.5rem;
    }

    .logo-img {
        height: 70px;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .price-item .price {
        margin: 0;
    }

    /* Mobile Booking Widget */
    .booking-widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
        max-width: 100%;
        min-width: 250px;
        object-fit: cover;
        object-position: center;
        /* Dodatkowa optymalizacja na mobilnych */
        max-height: 220px;
        width: auto;
        height: auto;
        aspect-ratio: 16/9;
    }

    .owners-logo {
        max-width: 200px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .booking-content {
        gap: 2rem;
    }

    .platform-grid {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0;
    }

    .booking-card .platform-icon {
        width: 70px;
        height: 70px;
    }

    .booking-card {
        min-height: 100px;
    }

    .booking-phone {
        padding: 1.5rem;
    }

    .logo-img {
        height: 70px;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .price-item .price {
        margin: 0;
    }

    /* Mobile Booking Widget */
    .booking-widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
        padding: 0.6rem 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
    }
    
    .hero-video {
        object-fit: cover;
        object-position: center center;
    }

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

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

    .booking-card,
    .contact-form {
        padding: 1.5rem;
    }

    .logo-img {
        height: 60px;
    }

    .nav-container {
        height: 80px;
    }

    /* Small Mobile Booking Widget */
    .booking-widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .booking-widget h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .booking-form input[type="date"],
    .booking-form select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .check-availability-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .booking-actions button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .booking-summary {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Performance and Visual Enhancements */

/* Smooth scrolling improvements */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced testimonials */
.testimonial-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(196, 164, 132, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(196, 164, 132, 0.3);
}

/* Enhanced news cards */
.news-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Enhanced feature icons with pulse effect */
.feature-icon {
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.feature-item:hover .feature-icon::before {
    width: 100px;
    height: 100px;
}

/* Enhanced booking widget */
.booking-widget {
    position: relative;
    overflow: hidden;
}

.booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C4A484, #9B8B78, #C4A484);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Enhanced form inputs */
.booking-form input[type="date"],
.booking-form select,
.contact-form input,
.contact-form textarea {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-form input[type="date"]:focus,
.booking-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.2);
}

/* Enhanced platform cards with brand colors */
.booking-card {
    border-left: 4px solid #003580;
}

.airbnb-card {
    border-left: 4px solid #FF5A5F;
}

.slowhop-card {
    border-left: 4px solid #2E7D32;
}

.naodludziu-card {
    border-left: 4px solid #8BC34A;
}

/* Enhanced map container */
.map-container iframe {
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Enhanced pricing cards */
.price-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 164, 132, 0.1), transparent);
    transition: left 0.6s;
}

.price-item:hover::before {
    left: 100%;
}

.price-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Enhanced navigation with better mobile experience */
.nav-menu a {
    padding: 0.5rem 0;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .nav-menu a {
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        border-radius: 10px;
    }
    
    .nav-menu a:hover {
        background: rgba(196, 164, 132, 0.1);
        transform: translateX(10px);
    }
}

/* Enhanced hero video overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Enhanced section transitions */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 164, 132, 0.3), transparent);
}

/* Enhanced footer */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C4A484, #9B8B78, #C4A484);
}

/* Performance optimizations */
* {
    will-change: auto;
}

.hero-video {
    will-change: transform;
}

.glamping-item,
.feature-item,
.testimonial-item,
.news-item,
.platform-card {
    will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus improvements for keyboard navigation */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #C4A484;
    outline-offset: 2px;
}

/* Enhanced loading states */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.loading:nth-child(1) { animation-delay: 0.1s; }
.loading:nth-child(2) { animation-delay: 0.2s; }
.loading:nth-child(3) { animation-delay: 0.3s; }
.loading:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced mobile experience */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-video,
    .booking-widget,
    .platform-grid {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        height: auto;
        background: none;
        color: black;
    }
}

/* Privacy Policy Modal */
.modal {
    display: none !important;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    display: block !important;
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #F9F6F0, #F5F1EB);
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: #9B8B78;
    font-size: 1.8rem;
}

.close {
    color: #9B8B78;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #C4A484;
}

.modal-body {
    padding: 2rem;
    line-height: 1.6;
    color: #333;
}

.modal-body h3 {
    color: #9B8B78;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.modal-body p {
    margin-bottom: 1rem;
    text-align: justify;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-body strong {
    color: #9B8B78;
}

.modal-body em {
    color: #666;
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .close {
        font-size: 1.5rem;
    }
}/* Ga
llery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #E8D8C4;
    color: #9B8B78;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 164, 132, 0.2), transparent);
    transition: left 0.6s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: #C4A484;
    color: #C4A484;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #C4A484, #9B8B78);
    border-color: #C4A484;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.4);
}

.filter-btn i {
    font-size: 1rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.gallery-item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C4A484 0%, #9B8B78 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-image .image-placeholder i {
    font-size: 3rem;
    opacity: 0.9;
}

.gallery-image .image-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-zoom {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    transform: scale(0.8);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-zoom:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-zoom i {
    font-size: 1.2rem;
}

/* Gallery Stats */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C4A484;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #C4A484, #9B8B78);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 70vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 70vh;
}

.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.lightbox-image-container:hover .lightbox-info {
    transform: translateY(0);
}

.lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.lightbox-info p {
    opacity: 0.9;
    font-size: 1rem;
}

.lightbox-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.5rem;
}

.lightbox-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.lightbox-thumbnail:hover,
.lightbox-thumbnail.active {
    opacity: 1;
    border-color: #C4A484;
    transform: scale(1.1);
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .gallery-stats {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
    
    .lightbox-close {
        top: -50px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        justify-content: center;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-info {
        padding: 1rem;
    }
    
    .lightbox-thumbnails {
        display: none;
    }
}

/* Gallery loading animation */
.gallery-item {
    animation: galleryItemLoad 0.6s ease forwards;
}

@keyframes galleryItemLoad {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Staggered animation delays */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }/* Cotta
ge Amenities - Compact Version */
.cottage-amenities {
    margin-top: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #C4A484;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-left-color: #9B8B78;
}

.amenity-item i {
    font-size: 1.5rem;
    color: #C4A484;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.amenity-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .amenity-item {
        padding: 0.8rem;
    }
    
    .amenity-item i {
        font-size: 1.3rem;
    }
    
    .amenity-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}/
* Safari-specific fixes */
@supports (-webkit-appearance: none) {
    /* Gallery fixes for Safari */
    .gallery-item {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .gallery-overlay {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Amenity items fixes for Safari */
    .amenity-item {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
    }
    
    .amenity-item:hover {
        -webkit-transform: translateY(-5px) translateZ(0);
        transform: translateY(-5px) translateZ(0);
    }
    
    /* Lightbox fixes for Safari */
    .lightbox {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .lightbox-image-container img {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        max-width: 100%;
        height: auto;
    }
}

/* Image optimization for high-resolution displays */
.gallery-item img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

/* Force hardware acceleration for better performance */
.gallery-item,
.amenity-item,
.lightbox {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix for Safari flexbox issues */
.amenity-item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

/* Safari grid fallback */
@supports not (display: grid) {
    .amenities-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .amenity-item {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 200px;
        -ms-flex: 1 1 200px;
        flex: 1 1 200px;
        margin: 0.75rem;
    }
}

/* Image loading optimization */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Prevent layout shift during image loading */
.gallery-image {
    position: relative;
    min-height: 250px;
    background: #f0f0f0;
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}/* Simpli
fied Safari fixes - override complex styles */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Safari-only styles */
    
    /* Fix amenity items for Safari */
    .amenity-item {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 1rem !important;
        background: white !important;
        border-radius: 15px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        border-left: 4px solid #C4A484 !important;
        -webkit-transition: all 0.3s ease !important;
        transition: all 0.3s ease !important;
    }
    
    .amenity-item i {
        font-size: 1.5rem !important;
        color: #C4A484 !important;
        width: 30px !important;
        text-align: center !important;
        -webkit-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .amenity-item span {
        font-weight: 600 !important;
        color: #333 !important;
        font-size: 0.95rem !important;
    }
    
    /* Fix gallery for Safari */
    .gallery-item {
        display: block !important;
        opacity: 1 !important;
        -webkit-transition: all 0.3s ease !important;
        transition: all 0.3s ease !important;
    }
    
    .gallery-item img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
        border-radius: 20px !important;
    }
    
    .gallery-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.5) !important;
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        align-items: center !important;
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        justify-content: center !important;
        opacity: 0 !important;
        -webkit-transition: opacity 0.3s ease !important;
        transition: opacity 0.3s ease !important;
        border-radius: 20px !important;
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 1 !important;
    }
    
    .gallery-zoom {
        background: rgba(255, 255, 255, 0.9) !important;
        border: none !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        align-items: center !important;
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        -webkit-transition: all 0.3s ease !important;
        transition: all 0.3s ease !important;
    }
    
    .gallery-zoom:hover {
        background: white !important;
        -webkit-transform: scale(1.1) !important;
        transform: scale(1.1) !important;
    }
    
    .gallery-zoom i {
        font-size: 1.2rem !important;
        color: #333 !important;
    }
    
    /* Fix lightbox for Safari */
    .lightbox {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.9) !important;
        z-index: 10000 !important;
        display: none !important;
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        align-items: center !important;
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        justify-content: center !important;
    }
    
    .lightbox.active {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: flex !important;
    }
    
    .lightbox-image-container img {
        max-width: 90vw !important;
        max-height: 90vh !important;
        width: auto !important;
        height: auto !important;
        border-radius: 10px !important;
    }
    
    /* Fix filter buttons for Safari */
    .filter-btn {
        background: white !important;
        border: 2px solid #E8D8C4 !important;
        color: #9B8B78 !important;
        padding: 12px 24px !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        -webkit-transition: all 0.3s ease !important;
        transition: all 0.3s ease !important;
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: inline-flex !important;
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .filter-btn.active {
        background: #C4A484 !important;
        border-color: #C4A484 !important;
        color: white !important;
    }
    
    .filter-btn:hover {
        border-color: #C4A484 !important;
        color: #C4A484 !important;
    }
}

/* Force hardware acceleration for Safari */
.amenity-item,
.gallery-item,
.lightbox {
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
}

/* Ensure images load properly in Safari */
img {
    -webkit-user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Fix for Safari flexbox issues */
.amenities-grid {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.amenity-item {
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 1 200px !important;
    -ms-flex: 0 1 200px !important;
    flex: 0 1 200px !important;
    min-width: 200px !important;
}

@media (max-width: 768px) {
    .amenity-item {
        -webkit-flex: 0 1 180px !important;
        -ms-flex: 0 1 180px !important;
        flex: 0 1 180px !important;
        min-width: 180px !important;
    }
}

@media (max-width: 480px) {
    .amenity-item {
        -webkit-flex: 1 1 100% !important;
        -ms-flex: 1 1 100% !important;
        flex: 1 1 100% !important;
        min-width: auto !important;
    }
}220px;

        max-width: 100%;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

    .platform-grid {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0;
    }

    .booking-card .platform-icon {
        width: 70px;
        height: 70px;
    }

    .booking-card {
        min-height: 100px;
    }

    .booking-phone {
        padding: 1.5rem;
    }

    .logo-img {
        height: 70px;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .price-item .price {
        margin: 0;
    }

    /* Mobile Booking Widget */
    .booking-widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
        padding: 0.6rem 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
    }
    
    .hero-video {
        object-fit: cover;
        object-position: center center;
    }

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

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

    .booking-card,
    .contact-form {
        padding: 1.5rem;
    }

    .logo-img {
        height: 60px;
    }

    .nav-container {
        height: 80px;
    }

    /* Small Mobile Booking Widget */
    .booking-widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .booking-widget h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .booking-form input[type="date"],
    .booking-form select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .check-availability-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .booking-actions button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .booking-summary {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Performance and Visual Enhancements */

/* Smooth scrolling improvements */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to elements */
.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* Enhanced hover effects */
.enhanced-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Gallery enhancements */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.filter-btn:hover {
    background: #e9ecef;
    border-color: #C4A484;
    color: #333;
}

.filter-btn.active {
    background: #C4A484;
    border-color: #C4A484;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    transform: scale(1.1);
    background: #C4A484;
    color: white;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #C4A484;
    color: white;
    transform: scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.lightbox-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.lightbox-thumbnail.active {
    opacity: 1;
    border-color: #C4A484;
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cottage amenities */
.cottage-amenities {
    margin-top: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.amenity-item i {
    font-size: 1.5rem;
    color: #C4A484;
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.amenity-item span {
    font-weight: 500;
    color: #333;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

/* Modal styles */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: #9B8B78;
    margin: 0;
}

.close {
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-body {
    line-height: 1.6;
    color: #555;
}

.modal-body h3 {
    color: #9B8B78;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* Enhanced mobile experience */
@media (max-width: 768px) {
    .nav-menu a {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }

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

    .gallery-filters {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .amenity-item {
        padding: 0.8rem;
    }

    .modal-content {
        margin: 10px;
        padding: 1.5rem;
        max-height: 90vh;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #C4A484;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero::after {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .cta-button {
        border: 2px solid currentColor;
    }
}

/* Enhanced mobile experience */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text,
    .owners-text,
    .attractions-text {
        text-align: left;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-video,
    .lightbox,
    .modal,
    .cta-button,
    .booking-widget,
    .social-links {
        display: none !important;
    }

    .hero {
        height: auto;
        background: #f8f9fa;
        color: #333;
        padding: 2rem 0;
    }

    .hero-content h1 {
        color: #333;
        background: none;
        text-shadow: none;
        border: none;
        padding: 0;
    }

    .hero-content p {
        color: #666;
        background: none;
        border: none;
        padding: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .section-header h2 {
        color: #333;
        font-size: 18pt;
    }

    .gallery-item,
    .testimonial-item,
    .news-item {
        break-inside: avoid;
        margin-bottom: 1rem;
    }

    .footer {
        background: white;
        color: #333;
        border-top: 1px solid #ccc;
    }

    .footer-section h3,
    .footer-section h4 {
        color: #333;
    }

    .footer-section p,
    .footer-section a {
        color: #666;
    }
}

/* Safari-specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .gallery-item {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .amenity-item {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .hero-video {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
        max-height: 85vh;
    }

    .modal-header {
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .close {
        font-size: 1.5rem;
    }

    .modal-body {
        font-size: 0.9rem;
    }

    .modal-body h3 {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-image-container {
        max-height: 70vh;
    }

    .lightbox-thumbnails {
        gap: 5px;
        margin-top: 10px;
    }

    .lightbox-thumbnail {
        width: 50px;
        height: 50px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item img {
        height: 180px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .gallery-filters {
        gap: 0.3rem;
    }

    .lightbox-image-container {
        max-height: 60vh;
    }

    .lightbox-thumbnails {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .amenity-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .amenity-item i {
        font-size: 1.3rem;
        width: 25px;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .amenity-item {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .amenity-item i {
        font-size: 1.2rem;
        width: 20px;
    }
}

/* Simplified Safari fixes - override complex styles */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Safari-only styles */
    
    .gallery-item {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    .gallery-item:hover {
        -webkit-transform: translate3d(0, -8px, 0) !important;
        transform: translate3d(0, -8px, 0) !important;
    }
    
    .amenity-item {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        /* Fix Safari width issues */
        max-width: calc(50% - 0.75rem) !important;
        width: auto !important;
        -webkit-box-sizing: border-box !important;
        box-sizing: border-box !important;
    }
    
    .amenity-item:hover {
        -webkit-transform: translate3d(0, -3px, 0) !important;
        transform: translate3d(0, -3px, 0) !important;
    }
    
    .amenity-item i {
        -webkit-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
        width: 30px !important;
        min-width: 30px !important;
        max-width: 30px !important;
    }
    
    .amenity-item span {
        -webkit-flex: 1 !important;
        flex: 1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Fix for Safari flexbox issues */
    .amenities-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 1.5rem !important;
    }
    
    .amenity-item {
        -webkit-flex: 0 1 calc(50% - 0.75rem);
        -ms-flex: 0 1 calc(50% - 0.75rem);
        flex: 0 1 calc(50% - 0.75rem);
        min-width: 180px;
        max-width: calc(50% - 0.75rem);
        margin-bottom: 0 !important;
        overflow: hidden;
        width: calc(50% - 0.75rem) !important;
        -webkit-box-sizing: border-box !important;
        box-sizing: border-box !important;
    }
    
    /* Safari video fixes */
    .hero-video {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Safari image loading fixes */
    .gallery-item img,
    .about-img,
    .owners-logo {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .amenity-item {
        -webkit-flex: 0 1 180px !important;
        -ms-flex: 0 1 180px !important;
        flex: 0 1 180px !important;
        min-width: 180px !important;
    }
}

@media (max-width: 480px) {
    .amenity-item {
        -webkit-flex: 1 1 100% !important;
        -ms-flex: 1 1 100% !important;
        flex: 1 1 100% !important;
        min-width: auto !important;
    }
}220
px;
        max-width: 100%;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

    .platform-grid {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0;
    }

    .booking-card .platform-icon {
        width: 70px;
        height: 70px;
    }

    .booking-card {
        min-height: 100px;
    }

    .booking-phone {
        padding: 1.5rem;
    }

    .logo-img {
        height: 70px;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .price-item .price {
        margin: 0;
    }

    /* Mobile Booking Widget */
    .booking-widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-actions button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Fix amenities width in Safari mobile */
    .amenities-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .amenity-item {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        flex: none !important;
        -webkit-flex: none !important;
        -ms-flex: none !important;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
        padding: 0.6rem 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
    }
    
    .hero-video {
        object-fit: cover;
        object-position: center center;
    }

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

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

    .booking-card,
    .contact-form {
        padding: 1.5rem;
    }

    .logo-img {
        height: 60px;
    }

    .nav-container {
        height: 80px;
    }

    /* Small Mobile Booking Widget */
    .booking-widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .booking-widget h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .booking-form input[type="date"],
    .booking-form select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .check-availability-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .booking-actions button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .booking-summary {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Force single column for amenities on small screens */
    .amenities-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    .amenity-item {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        flex: none !important;
        -webkit-flex: none !important;
        -ms-flex: none !important;
        padding: 0.8rem !important;
    }
}

/* Performance and Visual Enhancements */

/* Smooth scrolling improvements */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to elements */
.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* Enhanced hover effects */
.enhanced-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Gallery enhancements */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.filter-btn:hover {
    background: #e9ecef;
    border-color: #C4A484;
    color: #333;
}

.filter-btn.active {
    background: #C4A484;
    border-color: #C4A484;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    transform: scale(1.1);
    background: #C4A484;
    color: white;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #C4A484;
    color: white;
    transform: scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.lightbox-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.lightbox-thumbnail.active {
    opacity: 1;
    border-color: #C4A484;
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cottage amenities - Enhanced Safari fixes */
.cottage-amenities {
    margin-top: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.amenity-item i {
    font-size: 1.5rem;
    color: #C4A484;
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.amenity-item span {
    font-weight: 500;
    color: #333;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

/* Safari-specific amenities fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .amenities-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 1.5rem;
    }
    
    .amenity-item {
        -webkit-flex: 0 1 calc(50% - 0.75rem);
        -ms-flex: 0 1 calc(50% - 0.75rem);
        flex: 0 1 calc(50% - 0.75rem);
        min-width: 180px;
        max-width: calc(50% - 0.75rem);
        width: calc(50% - 0.75rem);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .amenity-item i {
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        width: 30px;
        min-width: 30px;
        max-width: 30px;
    }
    
    .amenity-item span {
        -webkit-flex: 1;
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 0;
    }
}

/* Mobile responsive amenities */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .amenity-item {
        padding: 0.8rem;
        font-size: 0.9rem;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        flex: none !important;
        -webkit-flex: none !important;
        -ms-flex: none !important;
    }

    .amenity-item i {
        font-size: 1.3rem;
        width: 25px;
        min-width: 25px;
        max-width: 25px;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    .amenity-item {
        padding: 0.7rem;
        font-size: 0.85rem;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        flex: none !important;
        -webkit-flex: none !important;
        -ms-flex: none !important;
    }

    .amenity-item i {
        font-size: 1.2rem;
        width: 20px;
        min-width: 20px;
        max-width: 20px;
    }
}

/* Enhanced mobile experience */
@media (max-width: 768px) {
    .nav-menu a {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }

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

    .gallery-filters {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #C4A484;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero::after {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .cta-button {
        border: 2px solid currentColor;
    }
}

/* Enhanced mobile experience */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text,
    .owners-text,
    .attractions-text {
        text-align: left;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-video,
    .lightbox,
    .modal,
    .cta-button,
    .booking-widget,
    .social-links {
        display: none !important;
    }

    .hero {
        height: auto;
        background: #f8f9fa;
        color: #333;
        padding: 2rem 0;
    }

    .hero-content h1 {
        color: #333;
        background: none;
        text-shadow: none;
        border: none;
        padding: 0;
    }

    .hero-content p {
        color: #666;
        background: none;
        border: none;
        padding: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .section-header h2 {
        color: #333;
        font-size: 18pt;
    }

    .gallery-item,
    .testimonial-item,
    .news-item {
        break-inside: avoid;
        margin-bottom: 1rem;
    }

    .footer {
        background: white;
        color: #333;
        border-top: 1px solid #ccc;
    }

    .footer-section h3,
    .footer-section h4 {
        color: #333;
    }

    .footer-section p,
    .footer-section a {
        color: #666;
    }
}

/* Safari-specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .gallery-item {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .gallery-item:hover {
        -webkit-transform: translate3d(0, -8px, 0) scale(1.02);
        transform: translate3d(0, -8px, 0) scale(1.02);
    }

    .hero-video {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .gallery-item img,
    .about-img,
    .owners-logo {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        max-width: 100%;
        height: auto;
    }
}