/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip to content link (accessibility + SEO) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #4a7c59;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    overflow-x: hidden;
    background: #ffffff;
    width: 100%;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h2 {
    font-size: 3em;
    margin-bottom: 0px;
    color: #6b5344;
    text-align: center;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

h2::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #d4af37;
    border-radius: 50%;
}

#hero h2 {
    color: #f5e6d3;
}

#reservations h2, #about h2, #gallery h2 {
    color: #2a2622;
}

p {
    font-weight: 300;
    font-size: 1.05em;
    line-height: 1.8;
}

/* ===== LAYOUT ===== */
header {
    background: transparent;
    color: white;
    padding: 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

section {
    padding: 120px 60px;
    border-bottom: 1px solid #e0d5c8;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin-left: calc(-50vw + 50%);
}

@keyframes fadeInSectionSlow {
    from { opacity: 0; }
    to { opacity: 1; }
}

section:nth-child(even) {
    background: #fdf9f4;
}

section:nth-child(odd) {
    background: #ffffff;
}

/* ===== HERO SECTION ===== */
#hero {
    padding: 0 !important;
    border: none !important;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(135deg, #2a2622 0%, #3a322d 100%);
}

.slideshow-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.slide {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(42, 38, 34, 0.25) 0%, rgba(42, 38, 34, 0.45) 60%, rgba(42, 38, 34, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}

.hero-description {
    font-size: 1.2em;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    letter-spacing: 2px;
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.5em;
    opacity: 0.98;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    letter-spacing: 3px;
}

#hero p {
    color: #f5e6d3;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0;
    background-color: rgba(52, 43, 33, 0.4);
    user-select: none;
    z-index: 4;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(107, 83, 68, 0.7);
}

.dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.6s ease;
}

.dot.active {
    background-color: white;
    width: 30px;
    border-radius: 6px;
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounceDown 2s infinite;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8em;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.scroll-indicator .arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

/* ===== COTTAGE SECTION ===== */
#about {
    background: #fdf9f4;
    min-height: 100vh;
}

.about {
    background: white;
    padding: 50px;
    border-radius: 20px;
    line-height: 2;
    box-shadow: 0 15px 50px rgba(42, 38, 34, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #2a2622;
    font-weight: 300;
}

.cottage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cottage-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cottage-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(42, 38, 34, 0.15);
    object-fit: cover;
    transition: all 0.6s ease;
}

.cottage-images img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(42, 38, 34, 0.25);
}

.cottage-text {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(42, 38, 34, 0.1);
    border: 2px solid #e0d5c8;
    border-left: 5px solid #4a7c59;
    position: relative;
    overflow: hidden;
}

.cottage-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #d4af37, #6b5344);
}

.cottage-text p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #2a2622;
    font-weight: 300;
    line-height: 1.8;
}

/* ===== COTTAGE SLIDESHOW ===== */
.cottage-slideshow {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 50px;
}

.cottage-slide {
    display: none;
    animation: cottageFadeIn 0.6s ease-in-out;
}

.cottage-slide.active-cottage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@keyframes cottageFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cottage-slide-image img {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(42, 38, 34, 0.15);
    object-fit: cover;
}

.cottage-slide-text {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(42, 38, 34, 0.1);
    border: 2px solid #e0d5c8;
    border-left: 5px solid #4a7c59;
    position: relative;
    overflow-y: auto;
    max-height: 400px;
}

.cottage-slide-text::-webkit-scrollbar {
    width: 8px;
}

.cottage-slide-text::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.cottage-slide-text::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

.cottage-slide-text::-webkit-scrollbar-thumb:hover {
    background: #c09b2e;
}

.cottage-slide-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #d4af37, #6b5344);
}

.cottage-slide-text h3 {
    font-size: 1.5em;
    color: #6b5344;
    margin-bottom: 15px;
}

.cottage-slide-text p {
    margin-bottom: 14px;
    font-size: 1.02em;
    color: #2a2622;
    font-weight: 300;
    line-height: 1.8;
}

.cottage-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(107, 83, 68, 0.85);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.4em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cottage-arrow:hover {
    background: #4a7c59;
    transform: translateY(-50%) scale(1.1);
}

.cottage-arrow.prev-cottage {
    left: -60px;
}

.cottage-arrow.next-cottage {
    right: -60px;
}

.cottage-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.cottage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4ccc3;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cottage-dot.active-dot {
    background: #6b5344;
    transform: scale(1.3);
}

/* ===== RESERVATIONS SECTION ===== */
#reservations {
    background: #fdf9f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#reservations > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding: 40px;
    width: 100%;
    flex-wrap: wrap;
}

#reservations p, #reservations h3 {
    color: #2a2622;
}

.reservation-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px;
    background: white;
    border-radius: 16px;
    border: 2px solid #e8ddd0;
    box-shadow: 0 10px 40px rgba(107, 83, 68, 0.08);
    transition: all 0.6s ease;
    width: auto;
    height: auto;
    position: relative;
}

.reservation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #6b5344);
    border-radius: 16px 16px 0 0;
}

.reservation-card img {
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
}

.reservation-card h3 {
    font-size: 2em;
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.reservation-card p {
    margin: 0;
    color: #6b6b6b;
    font-size: 1.1em;
    text-align: center;
}

.reservation-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(107, 83, 68, 0.15);
    border-color: #d4af37;
}

.reservation-card:hover img {
    transform: scale(1.1);
    transition: transform 0.6s ease;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* ===== PRICING ===== */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.price-card {
    background: white;
    padding: 45px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #f5e6d3;
    box-shadow: 0 10px 40px rgba(107, 83, 68, 0.08);
    transition: all 0.8s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #d4af37 0%, #c49f2a 50%, #d4af37 100%);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 83, 68, 0.12);
}

.price-card h3 {
    color: #6b5344;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.price-card .amount {
    font-size: 2.5em;
    font-weight: 700;
    color: #8b7355;
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.price-card .per-night {
    color: #9b9b9b;
    font-size: 0.95em;
    margin-bottom: 25px;
    font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
    background: linear-gradient(135deg, #2a2622 0%, #3a322d 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.6s ease;
    display: inline-block;
    text-decoration: none;
    margin: 10px 4px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(42, 38, 34, 0.2);
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(42, 38, 34, 0.3);
}

.btn-paypal {
    background: #4a7c59;
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.2);
}

.btn-paypal:hover {
    background: #3d6347;
    box-shadow: 0 12px 30px rgba(74, 124, 89, 0.3);
}

.payment-options {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #ecf0f1;
}

.payment-options p {
    font-size: 0.9em;
    color: #9b9b9b;
    margin-bottom: 15px;
    font-weight: 600;
}

#paypal-button-container {
    margin: 20px 0;
}

/* ===== GALLERY SECTION ===== */
#gallery {
    background: #ffffff;
    min-height: 100vh;
}

#gallery p, #gallery h3 {
    color: #2a2622;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 60px;
}

.gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(107, 83, 68, 0.1);
    transition: all 0.8s ease;
    cursor: pointer;
    border: 2px solid #e8ddd0;
    position: relative;
    overflow: hidden;
}

.gallery img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(107, 83, 68, 0.2);
    border-color: #d4af37;
}

/* ===== LIGHTBOX ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    animation: fadeIn 0.4s ease-in-out;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-container {
    position: relative;
    width: 90%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: zoomIn 0.4s ease-in-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
    z-index: 1001;
    font-weight: bold;
    padding: 10px;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: #FF5A5F;
}

.lightbox-close:focus {
    outline: 3px solid #FF5A5F;
    outline-offset: 2px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    z-index: 1001;
    font-weight: bold;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:focus,
.lightbox-next:focus {
    outline: 3px solid #FF5A5F;
    outline-offset: 2px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===== OVERLAY WIPE TRANSITION ===== */
.overlay-wipe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2a2622;
    z-index: 999;
    pointer-events: none;
    transform: translateX(-100%);
}

.overlay-wipe.active {
    animation: wipeAndFade 0.8s ease-in-out forwards;
}

@keyframes wipeAndFade {
    0% {
        transform: translateX(-100%);
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    display: flex;
    background: white;
    border: 2px solid #2a2622;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-toggle button {
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    cursor: pointer;
    color: #6b5344;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.lang-toggle button.active-lang {
    background: #2a2622;
    color: white;
}

.lang-toggle button:hover:not(.active-lang) {
    background: #f5e6d3;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: white;
    border: 2px solid #2a2622;
    cursor: pointer;
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: #f5e6d3;
    transform: scale(1.05);
}

.hamburger span {
    width: 28px;
    height: 4px;
    background: #2a2622;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 38, 34, 0.98) 0%, rgba(58, 50, 45, 0.98) 100%);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.nav-menu.active {
    display: flex;
    animation: menuFadeIn 0.4s ease;
}

@keyframes menuFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 2em;
    font-family: 'Playfair Display', serif;
    transition: all 0.4s ease;
    padding: 10px 30px;
    position: relative;
    letter-spacing: 2px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.4s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: #d4af37;
    transform: translateX(10px);
}

.nav-menu-label {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* ===== FIND US / CONTACT ===== */
#find-us a {
    position: relative;
}

#find-us a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a7c59;
    transition: width 0.3s ease;
}

#find-us a:hover::after {
    width: 100%;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #3a302a 0%, #2a2622 50%, #3a302a 100%);
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #6b5344, #4a7c59, #6b5344, #d4af37);
}

footer h3 {
    margin-bottom: 25px;
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
}

footer p {
    opacity: 1;
    font-weight: 300;
    color: #ffffff;
}

.socials {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a7c59;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.6s;
    font-size: 1.3em;
    border: 2px solid #4a7c59;
    outline: none;
}

.socials a:hover {
    background: #8b7355;
    border-color: #8b7355;
    transform: translateY(-5px);
}

.socials a:focus {
    outline: 3px solid #FF5A5F;
    outline-offset: 2px;
}

.icon {
    font-size: 1.1em;
    margin-right: 8px;
}

/* ===== SECTION DIVIDER ORNAMENT ===== */
.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.section-ornament .line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37);
}

.section-ornament .line:last-child {
    background: linear-gradient(90deg, #d4af37, transparent);
}

.section-ornament .diamond {
    width: 8px;
    height: 8px;
    background: #d4af37;
    transform: rotate(45deg);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #6b5344;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(107, 83, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #4a7c59;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #find-us {
        min-height: auto !important;
        height: auto !important;
        padding: 40px 20px !important;
    }

    #find-us > div {
        flex-direction: column !important;
        width: 100% !important;
    }

    #find-us > div > div {
        flex: 1 !important;
        min-width: unset !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .hero-description {
        font-size: 0.95em;
    }

    h2 {
        font-size: 2em;
    }

    section {
        padding: 80px 30px;
    }

    .container {
        padding: 0 20px;
    }

    .cottage-content {
        grid-template-columns: 1fr;
    }

    .cottage-slide.active-cottage {
        grid-template-columns: 1fr;
    }

    .cottage-arrow.prev-cottage {
        left: 5px;
    }

    .cottage-arrow.next-cottage {
        right: 5px;
    }

    /* Gallery mobile fix — smaller images, single column, no lazy load issues */
    .gallery {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 15px;
    }

    .gallery img {
        height: 160px;
        border-radius: 8px;
    }

    /* Force gallery visible on mobile — reveal animations don't fire reliably */
    .reveal-scale {
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    #gallery {
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }

    .gallery img {
        height: 200px;
    }
}
