*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Nunito', sans-serif;
    color: #2C2C2C;
    background: #FFF9E6;
    line-height: 1.6;
}

/* SKIP NAV (accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--pink);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 800;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* FOCUS STYLES (accessibility) */
*:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 2px;
    border-radius: 4px;
}

/* REDUCED MOTION (accessibility) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in { opacity: 1; transform: none; }
    .parallax-divider, .hero-bg { background-attachment: scroll; }
}

:root {
    --yellow: #F0D21E;
    --pink: #D20078;
    --green: #4CAF50;
    --blue: #1EB4F0;
    --dark: #2C2C2C;
    --cream: #FFF9E6;
    --white: #ffffff;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    border-top: 3px solid;
    border-image: linear-gradient(to right, var(--yellow), var(--pink), var(--blue), var(--green)) 1;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-logo { display: flex; align-items: center; margin-right: 1.2rem; }
.nav-logo img { display: block; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a.active { color: var(--yellow); }
.btn-book {
    background: var(--pink);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 0, 120, 0.4);
}
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; background: none; border: none; color: var(--white); }

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-pool.webp') center/cover no-repeat;
    background-attachment: fixed;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 1.5rem;
}
.hero-content img { width: 300px; margin-bottom: 1rem; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5)); }
.hero-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.hero-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
.hero-cta {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}
.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 0, 120, 0.5);
}

section { padding: 5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}
.color-bar {
    width: 80px;
    height: 4px;
    margin: 0.8rem auto 1.5rem;
    border-radius: 2px;
}

/* PARALLAX DIVIDERS */
.parallax-divider {
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.parallax-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.parallax-divider .divider-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 1.5rem;
}
.parallax-divider .divider-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.about { background: var(--white); border-top: 4px solid var(--yellow); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-img { border-radius: 24px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); border: 3px solid rgba(255,255,255,0.9); transition: border-color 0.4s; }
.about-img:hover { border-color: var(--yellow); }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text p { margin-bottom: 1rem; font-size: 1.05rem; color: #444; }
.about-text p:first-child::first-letter {
    font-size: 2.5rem;
    font-family: 'Fredoka One', cursive;
    color: var(--pink);
    float: left;
    margin-right: 0.3rem;
    line-height: 1;
}

.feature { background: var(--white); overflow: hidden; padding: 4rem 1.5rem !important; }
.feature.accent-pink { border-left: 5px solid var(--pink); }
.feature.accent-blue { border-left: 5px solid var(--blue); }
.feature.accent-green { border-left: 5px solid var(--green); }
.feature.accent-yellow { border-left: 5px solid var(--yellow); }
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    min-height: 400px;
}
.feature-grid.reversed .feature-photo { order: 2; }
.feature-grid.reversed .feature-text { order: 1; }
.feature-photo {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    border: 3px solid rgba(255,255,255,0.9);
    transition: border-color 0.4s;
}
.accent-pink .feature-photo:hover { border-color: var(--pink); }
.accent-green .feature-photo:hover { border-color: var(--green); }
.accent-blue .feature-photo:hover { border-color: var(--blue); }
.accent-yellow .feature-photo:hover { border-color: var(--blue); }
.feature-photo img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 17px;
    transition: transform 0.5s;
}
.feature-photo:hover img { transform: scale(1.03); }
.feature-text {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: none;
}
.feature-text h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.feature-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.8rem;
}
.feature-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}
.feature-list li {
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
    color: #444;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    margin-bottom: 0.4rem;
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
}
.feature-list li:hover { border-left-color: var(--pink); }
.feature-list li:last-child { border-bottom: none; }
.feature-list .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rooms { background: var(--white); border-top: 4px solid var(--pink); }
.room-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.room-photos {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.room-photos .room-photo {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    border: 3px solid rgba(255,255,255,0.9);
    transition: border-color 0.4s;
}
.room-photos .room-photo:first-child:hover { border-color: var(--yellow); }
.room-photos .room-photo:last-child:hover { border-color: var(--yellow); }
.room-photos .room-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 17px;
    transition: transform 0.5s;
}
.room-photos .room-photo:hover img { transform: scale(1.03); }
.room-details {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.room-details h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.room-price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 1rem;
}
.room-price-tag .currency {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-right: 0.2rem;
}
.room-price-tag .amount {
    font-family: 'Fredoka One', cursive;
    font-size: 2.4rem;
    color: var(--pink);
    letter-spacing: 1px;
}
.room-price-tag .per {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    margin-left: 0.4rem;
}
.room-details p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.room-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}
.room-list li {
    padding: 0.55rem 0.9rem;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    margin-bottom: 0.4rem;
    border-left: 3px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}
.room-list li:hover { border-left-color: var(--blue); background: rgba(255,255,255,0.9); }
.room-list .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gallery { background: var(--white); border-top: 4px solid var(--green); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 0.8rem;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s, box-shadow 0.3s, border-color 0.4s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 3px solid rgba(255,255,255,0.9);
}
.gallery-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.gallery-item:nth-child(1):hover { border-color: var(--green); }
.gallery-item:nth-child(2):hover { border-color: var(--pink); }
.gallery-item:nth-child(3):hover { border-color: var(--blue); }
.gallery-item:nth-child(4):hover { border-color: var(--yellow); }
.gallery-item:nth-child(5):hover { border-color: var(--pink); }
.gallery-item:nth-child(6):hover { border-color: var(--green); }
.gallery-item:nth-child(7):hover { border-color: var(--blue); }
.gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.gallery-item img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(30, 180, 240, 0.92);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 0 60px rgba(0,0,0,0.3), 0 0 0 4px var(--yellow);
}
.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    background: var(--pink);
    border: none;
    line-height: 1;
    z-index: 10000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover { background: var(--yellow); color: var(--dark); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background 0.3s, border-color 0.3s;
    line-height: 1;
}
.lightbox-nav:hover { background: var(--pink); border-color: var(--pink); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.explore {
    background: #FAFAFA;
    border-top: none;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.explore .section-title {
    font-size: 1.5rem;
    color: #666;
    letter-spacing: 0.04em;
}
.explore .section-subtitle {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    margin-bottom: 2.5rem;
}
.explore-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.explore-column h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 1.2rem;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    display: inline-block;
}
.explore-column:nth-child(1) h3 { background: var(--green); }
.explore-column:nth-child(2) h3 { background: var(--blue); }
.explore-column:nth-child(3) h3 { background: var(--pink); }
.explore-place {
    padding: 0.6rem 0;
    border-bottom: 1px solid #EBEBEB;
}
.explore-place:last-child { border-bottom: none; }
.explore-place h4 {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.explore-place p {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.45;
}

.location { background: var(--white); border-top: 4px solid var(--blue); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 3px solid rgba(255,255,255,0.9);
    transition: border-color 0.4s;
}
.location-map:hover { border-color: var(--blue); }
.location-map iframe { width: 100%; height: 350px; border: none; }
.location-details h3 { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--dark); margin-bottom: 0.8rem; }
.location-details p { font-size: 0.95rem; color: #555; margin-bottom: 0.5rem; }
.transport-tag {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0.2rem 0.3rem 0.2rem 0;
}

.contact { background: var(--dark); color: var(--white); padding: 4rem 1.5rem; }
.contact .section-title { color: var(--white); }
.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.contact-item h3 { font-family: 'Fredoka One', cursive; color: var(--white); font-size: 1rem; margin-bottom: 0.8rem; border-bottom: 2px solid var(--yellow); display: inline-block; padding-bottom: 0.3rem; }
.contact-item a { color: var(--white); text-decoration: none; font-weight: 600; }
.contact-item a:hover { color: var(--yellow); text-decoration: underline; }
.contact-item p { margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--white); }
.social-links { display: flex; gap: 1rem; margin-top: 0.5rem; justify-content: center; }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.15);
}
.social-links a:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }

footer {
    text-align: center;
    padding: 1.5rem;
    background: #1a1a1a;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.floating-book {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--pink);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(210, 0, 120, 0.5);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    display: none;
}
.floating-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 0, 120, 0.6);
}

.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #25D366;
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}
.floating-whatsapp.visible { display: flex; }
.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover {
    transform: translateY(-50%) scale(1.1);
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); padding: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-content h1 { font-size: 2rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-content img { width: 220px; }
    .about-grid, .location-grid, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
    .room-layout { grid-template-columns: 1fr; }
    .feature-grid.reversed .feature-photo { order: 0; }
    .feature-grid.reversed .feature-text { order: 0; }
    .feature-text { padding: 1.5rem 0; }
    .feature-photo img { height: 280px; }
    .room-photos .room-photo img { height: 200px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
    .section-title { font-size: 1.8rem; }
    .floating-book { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
    .explore-columns { grid-template-columns: 1fr; gap: 2rem; }
    .parallax-divider, .hero-bg { background-attachment: scroll; }
    .parallax-divider { height: 200px; }
    .feature.accent-pink, .feature.accent-blue, .feature.accent-green, .feature.accent-yellow { border-left: none; border-top: 4px solid; }
    .feature.accent-pink { border-top-color: var(--pink); }
    .feature.accent-blue { border-top-color: var(--blue); }
    .feature.accent-green { border-top-color: var(--green); }
    .feature.accent-yellow { border-top-color: var(--yellow); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* IMAGE LOADING SHIMMER */
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.gallery-item,
.feature-photo,
.room-photo,
.about-img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite linear;
}
.gallery-item img,
.feature-photo img,
.room-photo img,
.about-img img {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item img.loaded,
.feature-photo img.loaded,
.room-photo img.loaded,
.about-img img.loaded {
    opacity: 1;
}
.gallery-item.img-loaded,
.feature-photo.img-loaded,
.room-photo.img-loaded,
.about-img.img-loaded {
    background: none;
    animation: none;
}

@media print {
    nav, .floating-book, .floating-whatsapp, .back-to-top,
    .lightbox, .hero, .parallax-divider, .gallery, .skip-link { display: none !important; }
    body { background: #fff; color: #000; font-size: 12pt; line-height: 1.5; }
    * { box-shadow: none !important; border-radius: 0 !important; }
    section { border-top: 1px solid #ccc; padding: 1.5rem 0; page-break-inside: avoid; }
    .feature-grid, .about-grid, .room-layout, .location-grid, .contact-grid, .explore-columns {
        grid-template-columns: 1fr; gap: 1rem;
    }
    .feature-photo, .room-photos, .about-img { max-width: 300px; }
    img { max-width: 100%; height: auto; }
    a { color: #000; text-decoration: underline; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
    .contact { background: #fff !important; color: #000 !important; }
    .contact a { color: #000 !important; }
    .contact h3 { color: #000 !important; }
    .section-title { color: #000 !important; font-size: 1.3rem; }
    .fade-in { opacity: 1 !important; transform: none !important; }
}
