@import url(
    "https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@500;600&display=swap"
);

:root {
    --background: #f6f2eb;
    --surface: #ffffff;
    --text: #292a27;
    --muted: #696c64;
    --accent: #596653;
    --accent-dark: #414c3d;
    --border: #dcd6cc;
    --max-width: 1180px;
    --gold: #C9A227;
    --gold-light: #D9B95A;
    --gold-dark: #A88417;
    --gold: #d4b45a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: "Playfair Display", serif;
    line-height: 1.15;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

p {
    color: var(--muted);
}

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 24px 5%;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-image {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex-shrink: 0;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navigation a:not(.nav-button) {
    position: relative;
}

.navigation a:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navigation a:not(.nav-button):hover::after {
    width: 100%;
}

.nav-button,
.button {
    display: inline-block;
    padding: 14px 24px;
    border: 1px solid transparent;
    background: var(--accent);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-button {
    border-color: white;
    background: transparent;
}

.button:hover,
.nav-button:hover {
    transform: translateY(-2px);
}

.button:hover {
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--gold)
    );
}

button {
    font: inherit;
}

.booking-button {
    cursor: pointer;
}

.booking-modal {
    position: relative;
    width: min(90%, 560px);
    padding: 0;
    border: 1px solid var(--gold);
    border-radius: 18px;
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 24px 60px rgb(0 0 0 / 30%);
    overflow: hidden;
}

.booking-modal::backdrop {
    background: rgb(0 0 0 / 65%);
    backdrop-filter: blur(3px);
}

.floating-book-button {
    position: fixed;
    z-index: 20;
    right: 28px;
    bottom: 28px;
    padding: 15px 24px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 28px rgb(0 0 0 / 25%);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.floating-book-button.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-book-button:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgb(0 0 0 / 30%);
}

.floating-book-button:active {
    transform: translateY(0) scale(0.97);
}

.floating-book-button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.modal-content {
    padding: 55px 45px 45px;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.modal-content p {
    margin-right: auto;
    margin-left: auto;
    max-width: 440px;
}

.modal-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.modal-contact a {
    padding: 14px 18px;
    border: 1px solid var(--gold);
    color: var(--accent-dark);
    font-weight: 600;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.modal-contact a:hover {
    background: var(--gold);
    color: white;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--gold-dark);
}

/* Hero slideshow */

.hero {
    position: relative;
    display: flex;
    min-height: 92vh;
    align-items: flex-end;
    overflow: hidden;
    padding: 160px 7% 90px;
    color: white;
}

.button {
    border: 1px solid var(--gold);
}

.hero-slideshow {
    position: absolute;
    z-index: 0;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: hero-slideshow 36s linear infinite;
}

/* Six seconds between each image */
.slide-one {
    background-image: url("images/Anaeja16.jpeg");
    animation-delay: 0s;
}

.slide-two {
    background-image: url("images/Anaeja09.jpeg");
    animation-delay: 6s;
}

.slide-three {
    background-image: url("images/Anaeja15.jpeg");
    animation-delay: 12s;
}

.slide-four {
    background-image: url("images/Anaeja13.jpeg");
    animation-delay: 18s;
}

.slide-five {
    background-image: url("images/Anaeja12.jpeg");
    animation-delay: 24s;
}

.slide-six {
    background-image: url("images/Anaeja8.jpeg");
    animation-delay: 30s;
}

@keyframes hero-slideshow {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    3% {
        opacity: 1;
    }

    17% {
        opacity: 1;
    }

    20% {
        opacity: 0;
        transform: scale(1.04);
    }

    100% {
        opacity: 0;
        transform: scale(1.04);
    }
}

.hero-slideshow {
    background-image: url("images/Anaeja16.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgb(0 0 0 / 70%),
            rgb(0 0 0 / 20%)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content p {
    max-width: 620px;
    color: rgb(255 255 255 / 85%);
    font-size: 1.15rem;
}



.eyebrow {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 24px;
}

.add-ons-section {
    padding-top: 20px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin-top: 18px;
    background: var(--gold);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    min-height: 300px;
    padding: 36px;
    border: 1px solid var(--accent-dark);
    background: var(--accent);
    color: white;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card h3 {
    font-size: 1.8rem;
}

.service-card,
.add-on-card {
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.service-card:hover,
.add-on-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 28px rgb(0 0 0 / 10%);
}

.price {
    margin-top: 40px;
    color: var(--gold);
    font-weight: 700;
}

.service-card > p:not(.price) + .price,
.add-on-card > p:not(.price) + .price {
    margin-top: 32px;
}

.service-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height .35s ease,
        opacity .25s ease;
}

.service-description.visible {
    max-height: 300px;
    opacity: 1;
    margin-bottom: 18px;
}

.description-button {
    margin-top: 18px;
    padding: 10px 18px;
    border: 1px solid var(--gold);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    cursor: pointer;
    transition:
        background .2s ease,
        color .2s ease;
}

.description-button:hover {
    background: var(--gold);
    color: white;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    background: var(--surface);
}

.split-section img {
    height: 100%;
    object-fit: cover;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(20px, 5vw, 60px);
}

.offer-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 30px max(7%, calc((100% - var(--max-width)) / 2));
    background: var(--accent);
    color: white;
}

.offer-section p {
    max-width: 650px;
    color: rgb(255 255 255 / 80%);
}

.button-light {
    flex-shrink: 0;
    background: white;
    color: var(--accent-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

footer {
    padding: 28px 5%;
    border-top: 1px solid var(--border);
    text-align: center;
}

.add-on-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.add-on-card {
    min-height: 240px;
    padding: 36px;
    border: 1px solid var(--accent-dark);
    background: var(--accent);
    color: white;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.add-on-card h3 {
    font-size: 1.6rem;
}

.extra-service,
.extra-add-on {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.extra-service.visible,
.extra-add-on.visible {
    display: block;
    animation: reveal-card 0.45s ease forwards;
}

.service-card p,
.add-on-card p {
    color: rgba(255, 255, 255, 0.88);
}


@keyframes reveal-card {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.show-more-button {
    display: block;
    margin: 40px auto 0;
    padding: 14px 28px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent-dark);
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.show-more-button:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgb(0 0 0 / 15%);
}

.show-more-button:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 3px 8px rgb(0 0 0 / 12%);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.extra-service.visible:nth-child(4),
.extra-add-on.visible:nth-child(4) {
    animation-delay: 0.05s;
}

.extra-service.visible:nth-child(5),
.extra-add-on.visible:nth-child(5) {
    animation-delay: 0.1s;
}

.extra-service.visible:nth-child(6),
.extra-add-on.visible:nth-child(6) {
    animation-delay: 0.15s;
}

.extra-service.visible:nth-child(7) {
    animation-delay: 0.2s;
}

.extra-service.visible:nth-child(8) {
    animation-delay: 0.25s;
}

.policy-section {
    max-width: 900px;
    padding-bottom: 30px;
    padding-top: 10px;
}

.policy-card {
    padding: 40px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.policy-card p:first-child {
    margin-top: 0;
}

.policy-card p:last-child {
    margin-bottom: 0;
}

.contact-section {
    padding-top: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.reveal-left {
    transform: translateX(-35px);
}

.reveal.reveal-right {
    transform: translateX(35px);
}

.reveal.reveal-scale {
    transform: scale(0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

@media (max-width: 800px) {
    .navigation a:not(.nav-button) {
        display: none;
    }

    .floating-book-button {
    right: 18px;
    bottom: 18px;
    padding: 13px 20px;
    font-size: 0.95rem;
    }

    .modal-content {
    padding: 50px 24px 30px;
    }

    .site-header {
        padding: 18px 22px;
    }

    .hero {
    min-height: 100svh;
    padding: 140px 24px 64px;
    }

    .service-grid,
    .add-on-grid,
    .contact-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-section img {
        height: 480px;
    }

    .policy-card {
    padding: 28px 22px;
    }

    .offer-section {
        align-items: flex-start;
        flex-direction: column;
        padding: 70px 24px;
    }

    .section {
        padding: 75px 24px;
    }

    .policy-section {
        padding-top: 45px;
        padding-bottom: 25px;
    }

    .contact-section {
        padding-top: 45px;
    }

    .logo {
    gap: 10px;
    font-size: 1.15rem;
    }

    .logo-image {
        width: 50px;
        height: 50px;
        object-fit: contain;
        flex-shrink: 0;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

     *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-slide {
        animation: none;
        transform: none;
    }

    .slide-one {
        opacity: 1;
    }

    .slide-two,
    .slide-three {
        display: none;
    }

    .reveal,
    .reveal.reveal-left,
    .reveal.reveal-right,
    .reveal.reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }

}