/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header styles */
header {
    height: 452px;
    background-color: #816e7c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.homescreen_clicker {
    cursor: pointer;
    position: absolute;
    left: calc(50% - 550px);
}

.homescreen_clicker img {
    width: 75px;
    height: 75px;
    transition: transform 0.2s;
}

.header-content {
    color: #fbecfb;
    text-align: center;
    max-width: 900px;
    position: relative;
}

.header-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.description {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.notice {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Navigation tabs */
.nav-tabs {
    height: 40px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.nav-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-tabs a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-tabs a:hover {
    color: #816e7c;
}

.nav-active {
    color: #816e7c !important;
    font-weight: 600;
}

.nav-email,
.nav-phone {
    font-size: 0.85rem;
}

.nav-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

/* Social icons (Instagram, Facebook) smaller than avatar */
.nav-icon img[alt="Instagram"] {
    width: 22px;
    height: 22px;
}
.nav-icon img[alt="Facebook"] {
    width: 20px;
    height: 20px;
}

/* Profile photo (only when a real photo is loaded) */
.nav-user-avatar .nav-icon.has-photo {
    width: 22px;
    height: 22px;
    margin: 3px; /* 22 + 3+3 = 28px slot — same as avatar, keeps chevron gap identical */
}

.nav-icon:has(img[alt="Avatar"]) {
    margin-right: -10px;
}

.nav-login {
    font-size: 0.9rem;
}

/* ── Auth-aware nav user widget ──────────────────── */
.nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-user-avatar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 20px;
    transition: background 0.2s;
}
.nav-user-avatar:hover {
    background: rgba(129,110,124,0.12);
}

.nav-user-avatar .nav-icon {
    width: 28px;
    height: 28px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.nav-avatar-chevron {
    font-size: 1.2rem;
    color: #816e7c;
    line-height: 1;
    user-select: none;
}

.nav-user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid #e8d8f0;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    z-index: 2000;
    overflow: hidden;
    flex-direction: column;
}
.nav-user-dropdown.open {
    display: flex;
}

.nav-dd-item {
    display: block;
    padding: 11px 18px;
    color: #444;
    text-decoration: none;
    font-size: 0.88rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}
.nav-dd-item:hover {
    background: #f8f0fc;
    color: #816e7c;
}
.nav-dd-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
}

.nav-dd-divider {
    height: 1px;
    background: #e8d8f0;
    margin: 4px 0;
}

.nav-dd-signout {
    color: #c0392b;
}
.nav-dd-signout:hover {
    background: #fff0f0 !important;
    color: #c0392b !important;
}
/* ─────────────────────────────────────────────── */

.nav-border {
    height: 2px;
    background-color: #816e7c;
}

/* Hero section with parallax effect */
.hero-section {
    height: 720px;
    background-image: url('img/background.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: #816e7c;
    z-index: 1;
    position: relative;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: #000;
}

/* Pricing section */
.pricing-section {
    background-color: #fbecfb;
    padding: 60px 40px;
    color: #816e7c;
    text-align: center;
}

.pricing-header {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.service-category {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #000;
}

.category-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 40px;
}

.service-item {
    background-color: #816e7c;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.services-grid:first-of-type .service-item:last-child {
    grid-column: 1 / -1;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-title {
    font-size: 1.2rem;
    padding: 20px 20px 10px 20px;
    color: #fbecfb;
    font-weight: 500;
}

.service-price {
    font-size: 1.5rem;
    padding: 0 20px 20px 20px;
    color: #fbecfb;
    font-weight: 600;
}

.service-footer-text {
    margin-top: 50px;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}

/* Gallery section */
.gallery-section {
    padding: 60px 40px;
    background-color: #fbecfb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(528px, 1fr));
    row-gap: 20px;
    column-gap: 0px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    width: 528px;
    height: 352px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    margin: 0 auto;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.gallery-text {
    color: #fbecfb;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* Cancellation Policy Section */
.cancellation-section {
    padding: 40px 40px 60px 40px;
    background-color: #fbecfb;
    text-align: center;
}

.cancellation-header {
    font-size: 3rem;
    color: #816e7c;
    margin-bottom: 20px;
    font-weight: 400;
}

.cancellation-subtitle {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 30px;
    font-weight: 500;
}

.cancellation-content {
    max-width: 900px;
    margin: 0 auto;
}

.cancellation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.cancellation-subheading {
    font-size: 1.4rem;
    color: #816e7c;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cancellation-emphasis {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 30px;
}

/* Location Section */
.location-section {
    padding: 80px 20px;
    background-color: #816e7c;
}

.location-header {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

.location-address {
    text-align: center;
    font-size: 1.5rem;
    color: #fbecfb;
    margin-bottom: 40px;
    font-weight: 500;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(0.85);
}

/* Prevent double inversion of map controls */
.map-container iframe img {
    filter: invert(100%) hue-rotate(180deg);
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section .footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 15px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.footer-section .footer-brand:hover {
    transform: scale(1.05);
}

.footer-brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #816e7c;
    margin-bottom: 0;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: #fbecfb;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 10px;
}

.footer-section a {
    color: #fbecfb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #816e7c;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.footer-social a img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design - Mobile */
@media screen and (max-width: 768px) {
    /* Global overflow prevention */
    html {
        overflow-x: hidden;
    }
    body {
        width: 100%;
        max-width: 100%;
    }
    
    *, *::before, *::after {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    section, div, header, nav, footer {
        max-width: 100%;
    }
    
    /* Header */
    header {
        height: auto;
        min-height: 250px;
        padding: 15px 12px;
        position: relative;
    }
    
    .homescreen_clicker {
        left: 10px;
        top: 45px;
    }
    
    .homescreen_clicker img {
        width: 38px;
        height: 38px;
    }
    
    .header-content {
        padding-top: 15px;
        max-width: 100%;
    }
    
    .header-content h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .subtitle {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .description {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }
    
    .notice {
        font-size: 0.65rem;
    }
    
    /* Navigation - scrollable single row */
    .nav-tabs {
        height: auto;
        min-height: 35px;
        padding: 6px 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
    }
    
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .nav-left {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 2px;
        flex-shrink: 0;
        padding-left: 6px;
        padding-right: 15px;
        border-right: 1px solid #ccc;
        margin-right: 15px;
    }
    
    .nav-right {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 5px;
        flex-shrink: 0;
        margin-left: 6px;
        padding-left: 4px;
    }

    /* Real flex-item spacer — the only thing browsers respect at scroll end */
    .nav-right::after {
        content: none;
    }
    
    .nav-tabs a {
        font-size: 0.48rem;
        padding: 3px 3px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .nav-email, .nav-phone {
        font-size: 0.44rem;
        padding: 3px 3px;
    }
    
    .nav-icon {
        padding: 3px 2px;
        flex-shrink: 0;
    }
    
    .nav-icon img {
        width: 22px;
        height: 22px;
    }

    .nav-icon img[alt="Instagram"] {
        width: 18px;
        height: 18px;
    }
    .nav-icon img[alt="Facebook"] {
        width: 16px;
        height: 16px;
    }
    
    .nav-login {
        font-size: 0.48rem;
        padding: 3px 4px;
        margin-right: 20px;
    }
    
    .nav-border {
        height: 2px;
    }

    .nav-user {
        gap: 3px;
    }

    .nav-icon:has(img[alt="Avatar"]) {
        margin-right: -5px;
    }

    .nav-user-dropdown {
        left: auto;
    }

    .nav-user-avatar {
        gap: 1px;
        padding: 2px 5px;
        border-radius: 12px;
        background: rgba(129,110,124,0.1);
    }

    .nav-user-avatar .nav-icon {
        width: 28px;
        height: 28px;
    }

    .nav-user-avatar .nav-icon.has-photo {
        width: 22px;
        height: 22px;
        margin: 3px;
    }

    .nav-avatar-chevron {
        font-size: 1rem;
    }
    
    /* Separator Wall */
    .separator-wall {
        height: 25px;
    }
    
    /* Hero Section */
    .hero-section {
        height: 420px;
        background-attachment: scroll;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    /* About Section */
    .about-section {
        padding: 22px 12px;
        background-attachment: scroll;
    }
    
    .about-content {
        padding: 0 8px;
        max-width: 100%;
    }
    
    .about-content h2 {
        font-size: 1.4rem;
    }
    
    .about-content h3 {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .about-content p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .about-contact {
        font-size: 0.85rem;
    }
    
    /* Pricing Section */
    .pricing-section {
        padding: 30px 10px;
    }
    
    .pricing-header {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .category-title {
        font-size: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .category-description {
        font-size: 0.75rem;
        padding: 0 5px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 15px;
    }
    
    .service-item {
        max-width: 100%;
        width: 100%;
    }
    
    .services-grid:first-of-type .service-item:last-child {
        max-width: 100%;
    }
    
    .service-image {
        height: 120px;
    }
    
    .service-title {
        font-size: 0.65rem;
        padding: 6px 6px 4px 6px;
    }
    
    .service-price {
        font-size: 0.65rem;
        padding: 0 6px 6px 6px;
    }
    
    .service-footer-text {
        font-size: 0.8rem;
        margin-top: 20px;
        padding: 0 5px;
    }
    
    /* Gallery */
    .gallery-section {
        padding: 30px 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 100%;
        height: 150px;
    }
    
    .gallery-text {
        font-size: 0.8rem;
    }
    
    /* Booking Section */
    .booking-section {
        padding: 6px 10px 8px;
    }
    
    .booking-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-width: 100% !important;
    }
    
    .booking-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .booking-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .booking-text {
        flex: 0 0 auto;
        width: 100%;
        padding: 0 8px;
        text-align: center;
    }
    
    .booking-text h2 {
        font-size: 1.3rem;
        font-weight: 400;
        color: #816e7c;
        margin-bottom: 10px;
    }
    
    .booking-instruction {
        font-size: 0.75rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    .booking-hours, .booking-availability {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    
    /* Cancellation Section */
    .cancellation-section {
        padding: 10px 10px 30px;
    }
    
    .cancellation-header {
        font-size: 1.3rem;
    }
    
    .cancellation-subtitle {
        font-size: 0.85rem;
    }
    
    .cancellation-subheading {
        font-size: 0.9rem;
    }
    
    .cancellation-content {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .cancellation-content p {
        font-size: 0.75rem;
    }
    
    .cancellation-emphasis {
        font-size: 0.85rem;
    }
    
    /* Split Wall Section */
    .split-wall-section {
        width: 100%;
        overflow: hidden;
    }
    
    .split-wall-section img {
        max-height: 200px;
        object-fit: cover;
        width: 100%;
    }
    
    /* Terms Section */
    .terms-section {
        padding: 30px 10px;
    }
    
    .terms-header {
        font-size: 1.1rem;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 5px;
    }
    
    .terms-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .terms-subheading {
        font-size: 0.9rem;
    }
    
    .terms-content {
        padding: 0 5px;
        max-width: 100%;
    }
    
    .terms-content p {
        font-size: 0.75rem;
    }
    
    .terms-contact {
        font-size: 0.75rem;
    }
    
    .terms-emphasis {
        font-size: 0.8rem;
    }
    
    /* Location Section */
    .location-section {
        padding: 30px 10px;
    }
    
    .location-header {
        font-size: 1.3rem;
    }
    
    .location-address {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .map-container {
        margin: 0;
        border-radius: 6px;
        width: 100%;
    }
    
    .map-container iframe {
        height: 280px;
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 36px 16px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 24px;
        text-align: center;
    }

    .footer-section .footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }

    .footer-brand-logo {
        width: 44px;
        height: 44px;
    }

    .footer-section h3 {
        font-size: 1.05rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.82rem;
        margin-bottom: 6px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a img {
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 16px;
        word-wrap: break-word;
    }
    
    /* Lightbox */
    .lightbox {
        padding-top: 30px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .lightbox-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .lightbox-prev, .lightbox-next {
        font-size: 24px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-close {
        right: 10px;
        top: 5px;
        font-size: 30px;
    }

    /* Contact Page */
    .contact-section {
        padding: 36px 16px 50px;
    }

    .contact-header {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .contact-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .contact-container {
        max-width: 100%;
    }

    .contact-form {
        gap: 16px;
    }

    .cf-name-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-field label {
        font-size: 0.84rem;
    }

    .contact-field input,
    .contact-field textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .cf-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: 0.95rem;
    }

    .cf-success-msg {
        font-size: 0.86rem;
    }

    .cf-error-msg {
        font-size: 0.84rem;
    }
}

/* Split Wall Section */
.split-wall-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.split-wall-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Separator Wall */
.separator-wall {
    width: 100%;
    height: 40px;
    background-color: #fbecfb;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background-image: url('img/about_me.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.about-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-content h3 {
    font-size: 1.8rem;
    color: #fbecfb;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 25px;
}

.about-contact {
    margin-top: 30px;
    font-weight: 500;
    color: #fbecfb;
    font-size: 1.4rem;
}

/* Terms Section */
.terms-section {
    padding: 80px 20px;
    background-color: #fbecfb;
}

.terms-header {
    text-align: center;
    font-size: 2.5rem;
    color: #816e7c;
    margin-bottom: 20px;
    font-weight: 400;
}

.terms-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 50px;
    font-weight: 500;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 25px;
}

.terms-subheading {
    font-size: 1.5rem;
    color: #816e7c;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 500;
}

.terms-content p strong {
    color: #816e7c;
    font-weight: 600;
}

.terms-contact {
    margin-top: 40px;
    font-style: italic;
}

.terms-emphasis {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 40px;
    text-align: center;
    color: #816e7c;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-title {
    text-align: center;
    color: #fbecfb;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    margin-top: 20px;
}

.slide-in-right {
    animation: slideInRight 0.4s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.4s ease-out;
}

.slide-out-left {
    animation: slideOutLeft 0.4s ease-out;
}

.slide-out-right {
    animation: slideOutRight 0.4s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(50%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(50%);
        opacity: 0;
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: fixed;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    touch-action: manipulation;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Booking Section */
.booking-section {
    padding: 80px 20px;
    background-color: #fbecfb;
}

.booking-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.booking-image {
    flex: 1.3;
}

.booking-image img {
    width: 100%;
    height: auto;
    display: block;
}

.booking-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.booking-text h2 {
    font-size: 2.7rem;
    color: #816e7c;
    margin-bottom: 30px;
}

.booking-instruction {
    font-size: 1.6rem;
    color: #e74c3c;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-highlight {
    font-style: italic;
    font-weight: bold;
}

.booking-hours {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
}

.booking-availability {
    font-size: 1.3rem;
    color: #000;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-header {
    text-align: center;
    font-size: 2.5rem;
    color: #816e7c;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #a08090;
    margin-bottom: 50px;
    font-weight: 400;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cf-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .cf-name-row {
        grid-template-columns: 1fr;
    }
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5a4a56;
}

.cf-required {
    color: #e74c3c;
}

.contact-field input,
.contact-field textarea {
    padding: 12px 16px;
    border: 1.5px solid #ddd0dd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
    color: #333;
    background: #fdf8fd;
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #816e7c;
    background: #fff;
}

.cf-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cf-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: #816e7c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.cf-submit-btn:hover {
    background: #6d5a69;
}

.cf-success-msg {
    color: #27ae60;
    font-size: 0.95rem;
    font-weight: 600;
}

.cf-error-msg {
    color: #e74c3c;
    font-size: 0.9rem;
}

/* =====================================================
   PAGE TRANSITION
   ===================================================== */
#page-content {
    transition: opacity 0.4s ease;
}

.zn-entering #page-content {
    opacity: 0;
}

/* Booking mobile overrides — must come after desktop booking styles */
@media screen and (max-width: 768px) {
    .booking-section {
        padding: 6px 10px 8px;
    }

    .booking-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-width: 100% !important;
        margin: 0;
    }

    .booking-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .booking-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .booking-text {
        flex: 0 0 auto;
        width: 100%;
        padding: 24px 8px 0;
        text-align: center;
        display: block;
    }

    .booking-text h2 {
        font-size: 1.3rem;
        font-weight: 400;
        color: #816e7c;
        margin-bottom: 10px;
    }

    .booking-instruction {
        font-size: 0.75rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .booking-hours,
    .booking-availability {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    /* Terms section — match cancellation section sizes */
    .terms-section {
        padding: 30px 10px;
    }

    .terms-header {
        font-size: 1.3rem;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 5px;
    }

    .terms-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .terms-subheading {
        font-size: 0.9rem;
    }

    .terms-content {
        padding: 0 5px;
        max-width: 100%;
    }

    .terms-content p {
        font-size: 0.75rem;
    }

    .terms-contact {
        font-size: 0.75rem;
    }

    .terms-emphasis {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .homescreen_clicker {
        left: 10px;
        top: 60px;
    }

    .homescreen_clicker img {
        width: 32px;
        height: 32px;
    }
}