/* =========================================================
   LEO LUXURY SPA
   PREMIUM SINGLE PAGE WEBSITE
========================================================= */

:root {

    --black: #11100e;
    --black-soft: #181613;
    --cream: #f4efe6;
    --cream-dark: #e9e0d2;

    --gold: #c7a66a;
    --gold-light: #e0c28a;

    --text: #24211d;
    --text-light: #777168;

    --white: #ffffff;

    --border: rgba(199, 166, 106, .25);

    --serif: "Cormorant Garamond", serif;
    --sans: "DM Sans", sans-serif;

    --container: 1240px;

    --transition: all .35s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 80px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.05;
}

h2 {
    font-size: clamp(48px, 5vw, 76px);
}

h2 span {
    color: var(--gold);
    display: block;
}

.section-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading.center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    margin-top: 15px;
}

.section-heading p {
    color: var(--text-light);
    margin-top: 22px;
    font-size: 16px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 56px;
    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    border: 1px solid transparent;

    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.45);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline-dark {
    border-color: var(--border);
    color: var(--black);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;

    padding: 25px 0;

    color: var(--white);

    transition: var(--transition);
}

.header.scrolled {
    background: rgba(17,16,14,.97);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-family: var(--serif);
    font-size: 32px;
    letter-spacing: 7px;
}

.logo small {
    font-size: 7px;
    letter-spacing: 4px;
    margin-top: 5px;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 32px;
    margin-left: auto;
    margin-right: 35px;
}

.nav-menu a {
    position: relative;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    opacity: .8;

    transition: var(--transition);
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-btn {
    padding: 13px 22px;

    background: var(--gold);
    color: var(--black);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--gold-light);
}

.menu-toggle {
    display: none;

    background: none;
    border: 0;

    width: 40px;
    height: 40px;

    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    width: 26px;
    height: 1px;
    background: white;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    color: var(--white);

    background:
        url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=2200&q=90")
        center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,9,7,.90),
            rgba(10,9,7,.55),
            rgba(10,9,7,.25)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;

    max-width: 900px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-label span {
    width: 35px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    margin-top: 25px;

    font-size: clamp(65px, 8vw, 115px);

    letter-spacing: -3px;
}

.hero h1 em {
    color: var(--gold);
    font-weight: 400;
}

.hero p {
    max-width: 540px;

    margin: 30px 0;

    color: rgba(255,255,255,.75);

    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero-phone {
    margin-top: 45px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-phone span {
    color: rgba(255,255,255,.5);

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-phone a {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 25px;
}

.scroll-down {
    position: absolute;
    z-index: 2;

    right: 60px;
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 15px;

    color: rgba(255,255,255,.6);

    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;

    writing-mode: vertical-rl;
}

.scroll-down div {
    width: 1px;
    height: 55px;

    background: var(--gold);
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 650px;
    object-fit: cover;
}

.image-badge {
    position: absolute;

    right: -30px;
    bottom: 35px;

    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: var(--black);
    color: var(--white);

    border: 1px solid var(--gold);
}

.image-badge strong {
    font-family: var(--serif);
    font-size: 32px;
    letter-spacing: 4px;
}

.image-badge span {
    color: var(--gold);

    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    margin: 18px 0 25px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-content .lead {
    color: var(--text);
    font-family: var(--serif);
    font-size: 27px;
    line-height: 1.3;
}

.text-link {
    display: inline-flex;
    gap: 15px;

    margin-top: 20px;

    color: var(--black);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 7px;
}

.text-link span {
    color: var(--gold);
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: var(--black);
    color: var(--white);
}

.services .section-heading p {
    color: rgba(255,255,255,.55);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;

    background: var(--border);

    border: 1px solid var(--border);
}

.service-card {
    position: relative;

    min-height: 330px;

    padding: 40px;

    background: var(--black-soft);

    transition: var(--transition);
}

.service-card:hover {
    background: #211e19;
    transform: translateY(-5px);
    z-index: 2;
}

.service-card.featured {
    background:
        linear-gradient(
            145deg,
            #272219,
            #171512
        );
}

.service-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: rgba(255,255,255,.2);

    font-family: var(--serif);
    font-size: 28px;
}

.service-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 40px;

    border: 1px solid var(--border);

    color: var(--gold);

    font-size: 21px;
}

.service-card h3 {
    margin-bottom: 15px;

    font-size: 32px;
}

.service-card p {
    max-width: 320px;

    color: rgba(255,255,255,.55);

    font-size: 14px;
}

.service-card a {
    position: absolute;
    bottom: 35px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    color: var(--white);

    background:
        url("https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=2200&q=90")
        center/cover no-repeat;
}

.experience-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,9,7,.90),
            rgba(10,9,7,.40)
        );
}

.experience-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
}

.experience h2 {
    margin: 20px 0;

    font-size: clamp(55px, 7vw, 95px);
}

.experience h2 em {
    display: block;

    color: var(--gold);

    font-weight: 400;
}

.experience p {
    max-width: 480px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.7);
}


/* =========================================================
   WHY LEO
========================================================= */

.why {
    background: var(--cream-dark);
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.feature {
    padding: 45px 35px;

    border-right: 1px solid var(--border);
}

.feature:last-child {
    border-right: 0;
}

.feature-icon {
    width: 55px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 25px;

    color: var(--gold);

    border: 1px solid var(--border);
}

.feature h3 {
    margin-bottom: 12px;

    font-size: 28px;
}

.feature p {
    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   JOURNEY
========================================================= */

.journey {
    background: var(--cream);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.journey-item {
    position: relative;

    padding: 40px;

    border-top: 1px solid var(--border);
}

.journey-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.journey-item > span {
    color: var(--gold);

    font-family: var(--serif);
    font-size: 25px;
}

.journey-item h3 {
    margin: 25px 0 10px;

    font-size: 35px;
}

.journey-item p {
    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    background: var(--black);
    color: var(--white);
}

.gallery .section-heading {
    max-width: 650px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    grid-template-rows: 280px 280px;

    gap: 10px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-large {
    grid-row: span 2;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
    background: var(--cream-dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial {
    padding: 45px;

    background: var(--cream);

    border: 1px solid rgba(0,0,0,.06);
}

.stars {
    margin-bottom: 25px;

    color: var(--gold);

    letter-spacing: 4px;
}

.testimonial p {
    margin-bottom: 30px;

    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.35;
}

.testimonial strong {
    color: var(--text-light);

    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   BOOKING
========================================================= */

.booking {
    background: var(--black);
    color: var(--white);
}

.booking-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;

    align-items: center;
}

.booking-content h2 {
    margin: 20px 0 25px;
}

.booking-content > p {
    max-width: 500px;

    color: rgba(255,255,255,.6);
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 50px;
}

.contact-details span {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-details a {
    font-family: var(--serif);
    font-size: 25px;
}

.contact-details p {
    color: rgba(255,255,255,.6);

    font-size: 13px;
}

.booking-form {
    padding: 50px;

    background: #1b1916;

    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,.6);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    color: white;

    background: transparent;

    border: 1px solid rgba(255,255,255,.12);

    outline: none;

    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select option {
    color: black;
}

.form-group textarea {
    resize: vertical;
}

.form-btn {
    width: 100%;

    border: 0;
}


/* =========================================================
   LOCATION
========================================================= */

.location {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 550px;
}

.location-map iframe {
    width: 100%;
    height: 100%;

    min-height: 550px;

    border: 0;

    filter: grayscale(100%);
}

.location-content {
    padding: 100px 10%;

    background: var(--cream-dark);
}

.location-content h2 {
    margin: 20px 0;
}

.location-content > p {
    max-width: 450px;

    color: var(--text-light);
}

.address {
    margin: 35px 0;

    padding-left: 25px;

    border-left: 1px solid var(--gold);
}

.address strong {
    font-family: var(--serif);
    font-size: 25px;
}

.address p {
    margin-top: 8px;

    color: var(--text-light);

    font-size: 14px;
}

.location-buttons {
    display: flex;
    gap: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 80px 0 25px;

    background: #0c0b0a;

    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 80px;

    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 25px;

    color: rgba(255,255,255,.45);

    font-size: 13px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer h4 {
    margin-bottom: 20px;

    color: var(--gold);

    font-family: var(--sans);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links a {
    margin-bottom: 8px;

    color: rgba(255,255,255,.55);

    font-size: 13px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact a {
    color: var(--gold);

    font-family: var(--serif);

    font-size: 24px;
}

.footer-contact p {
    margin-top: 10px;

    color: rgba(255,255,255,.45);

    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.3);

    font-size: 10px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp {
    position: fixed;

    z-index: 900;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    border-radius: 50%;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    transition: var(--transition);
}

.whatsapp:hover {
    transform: scale(1.08);
}

.whatsapp svg {
    width: 27px;
    height: 27px;

    fill: white;
}

.whatsapp span {
    position: absolute;

    right: 70px;

    padding: 7px 12px;

    background: var(--black);
    color: white;

    font-size: 10px;

    opacity: 0;

    pointer-events: none;

    transition: var(--transition);
}

.whatsapp:hover span {
    opacity: 1;
}


/* =========================================================
   MOBILE BAR
========================================================= */

.mobile-bar {
    display: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 50px, var(--container));
    }

    .nav-menu {
        gap: 18px;
        margin-right: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature:nth-child(2) {
        border-right: 0;
    }

    .feature:nth-child(1),
    .feature:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .booking-grid {
        gap: 50px;
    }

}


@media (max-width: 800px) {

    body {
        padding-bottom: 65px;
    }

    .container {
        width: min(100% - 35px, var(--container));
    }

    .section {
        padding: 80px 0;
    }


    /* Header */

    .header {
        padding: 18px 0;
    }

    .nav-menu {
        position: fixed;

        top: 0;
        right: -100%;

        width: 80%;
        max-width: 350px;
        height: 100vh;

        margin: 0;

        padding: 110px 35px 40px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;

        background: #11100e;

        transition: right .4s ease;

        box-shadow: -20px 0 50px rgba(0,0,0,.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 1001;

        display: flex;
    }


    /* Hero */

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: clamp(55px, 16vw, 90px);

        letter-spacing: -2px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .scroll-down {
        display: none;
    }


    /* About */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-image img {
        height: 500px;
    }

    .image-badge {
        right: 15px;
    }


    /* Services */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 300px;
    }


    /* Experience */

    .experience {
        min-height: 600px;
    }


    /* Features */

    .features {
        grid-template-columns: 1fr;
    }

    .feature {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .feature:last-child {
        border-bottom: 0;
    }


    /* Journey */

    .journey-grid {
        grid-template-columns: 1fr 1fr;
    }

    .journey-item:nth-child(2) {
        border-right: 0;
    }

    .journey-item:nth-child(1),
    .journey-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }


    /* Gallery */

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 250px 250px 250px;
    }

    .gallery-large {
        grid-row: span 2;
    }


    /* Testimonials */

    .testimonial-grid {
        grid-template-columns: 1fr;
    }


    /* Booking */

    .booking-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }


    /* Location */

    .location {
        grid-template-columns: 1fr;
    }

    .location-map iframe {
        min-height: 400px;
    }

    .location-content {
        padding: 70px 35px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }


    /* WhatsApp */

    .whatsapp {
        display: none;
    }


    /* Mobile Bottom Bar */

    .mobile-bar {
        position: fixed;

        z-index: 1200;

        left: 0;
        bottom: 0;

        width: 100%;
        height: 65px;

        display: grid;
        grid-template-columns: repeat(3, 1fr);

        background: #11100e;

        border-top: 1px solid var(--border);
    }

    .mobile-bar a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2px;

        color: rgba(255,255,255,.7);

        font-size: 9px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .mobile-bar a:nth-child(2) {
        color: #25d366;
    }

    .mobile-bar a:last-child {
        color: var(--gold);
    }

    .mobile-bar span {
        font-size: 17px;
    }

}


@media (max-width: 500px) {

    .logo span {
        font-size: 27px;
    }

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-phone {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    h2 {
        font-size: 48px;
    }

    .about-image img {
        height: 420px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-item {
        border-right: 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .journey-item:last-child {
        border-bottom: 0;
    }

    .gallery-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(5, 300px);
    }

    .gallery-large {
        grid-row: auto;
    }

    .location-buttons {
        flex-direction: column;
    }

    .location-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}