/* ── Hero ── */
.bungalov-hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.bungalov-hero .hero-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.bungalov-hero .hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bungalov-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.52));
    z-index: 1;
}
.bungalov-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}
.bungalov-hero .hero-content span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}
.bungalov-hero .hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}
.bungalov-hero .hero-btns {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

/* ── Gallery 4-col grid ── */
.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.gallery-grid-4 .g-item {
    overflow: hidden;
}
.gallery-grid-4 .g-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-grid-4 .g-item:hover img {
    transform: scale(1.06);
}

/* ── Pool full-width ── */
.pool-section {
    padding: 0;
    position: relative;
    height: 600px;
    overflow: hidden;
}
.pool-section .pool-swiper {
    height: 100%;
}
.pool-section .pool-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pool-section .pool-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, rgba(20,20,20,0.65) 0%, transparent 60%);
    display: flex;
    align-items: center;
}
.pool-section .pool-text {
    color: #fff;
    padding: 0 5%;
    max-width: 500px;
}
.pool-section .pool-text span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.pool-section .pool-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
}
.pool-section .pool-text p {
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ── Breakfast 2x2 grid ── */
.breakfast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    border-radius: 4px;
    overflow: hidden;
}
.breakfast-grid .bk-item { overflow: hidden; }
.breakfast-grid .bk-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.breakfast-grid .bk-item:hover img { transform: scale(1.05); }

/* ── CTA dark band ── */
.cta-dark {
    background: var(--secondary);
    padding: 90px 0;
    text-align: center;
    color: #fff;
}
.cta-dark h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 16px; }
.cta-dark p  { opacity: 0.65; font-size: 15px; max-width: 500px; margin: 0 auto 40px; }
.cta-dark .hero-btns { justify-content: center; }

@media(max-width: 900px) {
    .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pool-section   { height: 420px; }
    .breakfast-grid .bk-item img { height: 200px; }
}
@media(max-width: 500px) {
    .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
    .gallery-grid-4 .g-item img { height: 180px; }
    .bungalov-hero .hero-btns { flex-direction: column; }
}
