:root {
    --background: #fbf7f5;
    --white: #ffffff;
    --text: #302527;
    --gray: #776c6e;
    --pink: #96636d;
    --pink-dark: #744953;
    --light-pink: #eadcdf;
    --border: #e8dedf;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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


/* NAVBAR */

.hero {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(234,220,223,.9),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fffaf8,
            #f6eded
        );
}

.navbar {
    width: min(1120px, calc(100% - 40px));

    margin: auto;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {
    display: flex;

    align-items: center;

    gap: 12px;
}

.logo-circle {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--pink);

    color: white;

    font-family: "Playfair Display", serif;

    font-size: 22px;
}

.logo strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 18px;
}

.logo span {
    display: block;

    color: var(--gray);

    font-size: 12px;
}

.nav-links {
    display: flex;

    align-items: center;

    gap: 25px;

    font-size: 14px;

    font-weight: 600;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-reserva {
    padding: 12px 20px;

    border-radius: 30px;

    background: var(--text);

    color: white !important;
}

.menu-button {
    display: none;

    border: none;

    background: transparent;

    font-size: 26px;

    cursor: pointer;
}


/* HERO */

.hero-content {
    width: min(1120px, calc(100% - 40px));

    min-height: calc(100vh - 90px);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.small-title {
    color: var(--pink);

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 15px;
}

.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 7vw, 90px);

    line-height: .95;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    color: var(--pink);

    font-style: italic;
}

.description {
    max-width: 500px;

    margin: 28px 0;

    color: var(--gray);

    font-size: 16px;
}

.buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.button {
    padding: 14px 22px;

    border-radius: 30px;

    font-weight: 700;

    transition: .2s;
}

.primary {
    background: var(--pink);

    color: white;
}

.primary:hover {
    background: var(--pink-dark);

    transform: translateY(-2px);
}

.secondary {
    border: 1px solid var(--border);

    background: white;
}

.location {
    margin-top: 20px;

    color: var(--gray);

    font-size: 13px;
}

.location:first-letter {
    color: var(--pink);
}


/* HERO IMAGE */

.hero-image {
    position: relative;
}

.hero-image img {
    height: 600px;

    object-fit: cover;

    border-radius: 190px 190px 25px 25px;

    box-shadow:
        0 30px 70px rgba(50, 30, 35, .13);
}

.floating-card {
    position: absolute;

    bottom: 25px;

    left: -35px;

    padding: 17px 22px;

    background: rgba(255,255,255,.95);

    border-radius: 15px;

    box-shadow:
        0 15px 40px rgba(50,30,35,.12);
}

.floating-card strong {
    display: block;

    font-size: 14px;
}

.floating-card span {
    display: block;

    color: var(--gray);

    font-size: 12px;
}


/* SECTIONS */

.section {
    width: min(1120px, calc(100% - 40px));

    margin: auto;

    padding: 110px 0;
}

.section-header {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: end;
}

.section-header > p {
    color: var(--gray);

    max-width: 500px;
}

h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.05;
}


/* SERVICES */

.services {
    background: var(--white);

    max-width: none;

    padding-left: max(20px, calc((100% - 1120px) / 2));

    padding-right: max(20px, calc((100% - 1120px) / 2));
}

.services-grid {
    margin-top: 55px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.service {
    min-height: 210px;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 24px;

    background: var(--background);

    transition: .25s;
}

.service:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(50,30,35,.1);
}

.service > span {
    color: var(--pink);

    font-size: 12px;

    font-weight: 700;
}

.service h3 {
    font-family: "Playfair Display", serif;

    font-size: 25px;

    margin-top: 28px;

    margin-bottom: 8px;
}

.service p {
    color: var(--gray);

    font-size: 14px;
}


/* GALLERY */

.gallery-grid {
    margin-top: 55px;

    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr;

    grid-auto-rows: 250px;

    gap: 15px;
}

.gallery-item {
    overflow: hidden;

    border-radius: 20px;

    background: var(--light-pink);
}

.gallery-item img {
    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.big {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}


/* ABOUT */

.about {
    max-width: none;

    background: white;

    padding-left: max(20px, calc((100% - 1120px) / 2));

    padding-right: max(20px, calc((100% - 1120px) / 2));
}

.about-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    height: 550px;

    overflow: hidden;

    border-radius: 150px 25px 25px 25px;
}

.about-image img {
    height: 100%;

    object-fit: cover;
}

.about-text p:not(.small-title) {
    color: var(--gray);

    margin-top: 22px;
}

.text-link {
    display: inline-block;

    margin-top: 28px;

    color: var(--pink-dark);

    font-weight: 700;
}


/* CONTACT */

.contact {
    background: var(--text);

    color: white;

    padding: 100px max(20px, calc((100% - 1120px) / 2));
}

.contact-container {
    max-width: 1120px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.contact .small-title {
    color: #d9aeb7;
}

.contact-container > div:first-child > p:last-child {
    margin-top: 20px;

    color: #c7bbbd;

    max-width: 500px;
}

.contact-info {
    display: grid;
}

.contact-info a,
.contact-info > div {
    padding: 20px 0;

    border-bottom: 1px solid rgba(255,255,255,.15);
}

.contact-info span {
    display: block;

    color: #bbaeb0;

    font-size: 12px;
}

.contact-info strong {
    display: block;

    margin-top: 4px;
}

.contact-info small {
    display: block;

    color: #bbaeb0;

    margin-top: 3px;
}


/* FOOTER */

footer {
    background: #21191b;

    color: #aaa0a2;

    padding: 28px max(20px, calc((100% - 1120px) / 2));

    display: flex;

    justify-content: space-between;

    align-items: center;
}

footer strong {
    display: block;

    color: white;

    font-family: "Playfair Display", serif;
}

footer span {
    font-size: 12px;
}


/* WHATSAPP */

.whatsapp {
    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #25d366;

    color: white;

    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(0,0,0,.2);

    z-index: 100;
}


/* MOBILE */

@media (max-width: 850px) {

    .menu-button {
        display: block;
    }

    .nav-links {
        display: none;

        position: absolute;

        top: 75px;

        left: 20px;

        right: 20px;

        padding: 20px;

        background: white;

        border-radius: 20px;

        box-shadow:
            0 20px 50px rgba(0,0,0,.12);

        flex-direction: column;

        align-items: stretch;

        z-index: 20;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-reserva {
        text-align: center;
    }

    .hero-content,
    .section-header,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-image {
        max-width: 650px;

        width: 100%;

        margin: auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 560px) {

    .navbar,
    .hero-content,
    .section {
        width: calc(100% - 28px);
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero-image img {
        height: 430px;

        border-radius: 120px 120px 20px 20px;
    }

    .floating-card {
        left: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 190px;
    }

    .gallery-item.big {
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .about-image {
        height: 400px;

        border-radius: 100px 20px 20px 20px;
    }

    footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }
}