/* =========================================================
   SALY NAILS
   PREMIUM WEBSITE DESIGN
========================================================= */


/* =========================================================
   FONTS
========================================================= */

@import url(
    'https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@400;500&display=swap'
);


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --cream: #fbf6f2;

    --cream-soft: #fffaf7;

    --cream-dark: #f2e4de;

    --rose: #bd726a;

    --rose-dark: #94524c;

    --rose-light: #d99b93;

    --brown: #493532;

    --brown-light: #7b625d;

    --white: #ffffff;

    --border: #e7d7d1;

    --shadow:
        0 20px 60px rgba(73, 53, 50, 0.08);

    --container: 1200px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 30px;

}


body {

    font-family:
        "DM Sans",
        sans-serif;

    background:
        var(--cream);

    color:
        var(--brown);

    line-height: 1.6;

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


img {

    display: block;

    max-width: 100%;

}


button,
input,
select,
textarea {

    font: inherit;

}


button {

    color: inherit;

}


a {

    color: inherit;

}


::selection {

    background:
        var(--rose);

    color:
        var(--white);

}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {

    position: relative;

    z-index: 1000;

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin:
        auto;

    padding:
        30px 0;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    border-bottom:
        1px solid var(--border);

}


.logo {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        34px;

    font-weight:
        400;

    color:
        var(--rose-dark);

    text-decoration:
        none;

    letter-spacing:
        -1px;

}


nav {

    display:
        flex;

    align-items:
        center;

    gap:
        34px;

}


nav a {

    position:
        relative;

    text-decoration:
        none;

    font-size:
        14px;

    color:
        var(--brown);

    transition:
        color 0.3s ease;

}


nav a::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        -7px;

    width:
        0;

    height:
        1px;

    background:
        var(--rose);

    transition:
        width 0.3s ease;

}


nav a:hover {

    color:
        var(--rose-dark);

}


nav a:hover::after {

    width:
        100%;

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display:
        none;

    width:
        46px;

    height:
        46px;

    border:
        1px solid var(--border);

    background:
        transparent;

    cursor:
        pointer;

    align-items:
        center;

    justify-content:
        center;

    flex-direction:
        column;

    gap:
        5px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;

}


.menu-toggle span {

    width:
        20px;

    height:
        1.5px;

    background:
        var(--brown);

    transition:
        transform 0.35s ease,
        opacity 0.25s ease;

}


.menu-toggle.active {

    background:
        var(--cream-dark);

    border-color:
        var(--rose);

}


.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(6.5px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity:
        0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-6.5px)
        rotate(-45deg);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    min-height:
        760px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        0.9fr 1.1fr;

    align-items:
        center;

    gap:
        90px;

    padding:
        75px 0;

}


.hero-content {

    max-width:
        560px;

}


.small-title,
.eyebrow {

    color:
        var(--rose);

    font-size:
        12px;

    font-weight:
        500;

    letter-spacing:
        5px;

}


.small-title {

    margin-bottom:
        28px;

}


.hero h1 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            58px,
            6vw,
            88px
        );

    font-weight:
        400;

    line-height:
        0.98;

    letter-spacing:
        -3px;

    margin-bottom:
        32px;

}


.hero-text {

    max-width:
        480px;

    color:
        var(--brown-light);

    font-size:
        17px;

    line-height:
        1.85;

    margin-bottom:
        38px;

}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-button {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        17px 30px;

    border-radius:
        50px;

    background:
        var(--rose);

    color:
        var(--white);

    text-decoration:
        none;

    font-size:
        14px;

    box-shadow:
        0 12px 30px
        rgba(189, 114, 106, 0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

}


.hero-button:hover {

    background:
        var(--rose-dark);

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 35px
        rgba(189, 114, 106, 0.25);

}


.calendar-icon {

    font-size:
        18px;

}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {

    position:
        relative;

}


.hero-image::before {

    content:
        "";

    position:
        absolute;

    inset:
        -15px;

    border:
        1px solid var(--border);

    z-index:
        -1;

}


.hero-image img {

    width:
        100%;

    height:
        650px;

    object-fit:
        cover;

}


.image-decoration {

    position:
        absolute;

    right:
        -20px;

    bottom:
        -20px;

    width:
        70px;

    height:
        70px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid var(--border);

    background:
        var(--cream);

    color:
        var(--rose);

    font-size:
        20px;

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin:
        auto;

    padding:
        130px 0;

}


.section-heading {

    max-width:
        700px;

    margin-bottom:
        60px;

}


.section-heading h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    font-weight:
        400;

    line-height:
        1.05;

    letter-spacing:
        -2px;

    margin-top:
        15px;

}


.heading-description {

    max-width:
        550px;

    margin-top:
        25px;

    color:
        var(--brown-light);

    line-height:
        1.8;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    padding-top:
        80px;

}


.services-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        15px;

}


.service-card {

    position:
        relative;

    min-height:
        350px;

    padding:
        32px;

    background:
        var(--cream-dark);

    border:
        1px solid transparent;

    overflow:
        hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--border);

    box-shadow:
        var(--shadow);

}


.service-number {

    color:
        var(--rose);

    font-size:
        12px;

    letter-spacing:
        2px;

}


.service-icon {

    position:
        absolute;

    right:
        28px;

    top:
        28px;

    color:
        var(--rose-light);

    font-size:
        23px;

}


.service-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        31px;

    font-weight:
        400;

    margin-top:
        100px;

    margin-bottom:
        18px;

}


.service-card p {

    color:
        var(--brown-light);

    font-size:
        14px;

    line-height:
        1.8;

}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {

    padding-top:
        80px;

}


.gallery-heading {

    display:
        flex;

    flex-direction:
        column;

}


.gallery-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows:
        280px;

    gap:
        15px;

}


.gallery-item {

    position:
        relative;

    padding:
        0;

    border:
        0;

    background:
        none;

    overflow:
        hidden;

    cursor:
        pointer;

}


.gallery-item.gallery-large {

    grid-row:
        span 2;

}


.gallery-item img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 0.6s ease;

}


.gallery-item:hover img {

    transform:
        scale(1.05);

}


.gallery-overlay {

    position:
        absolute;

    inset:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(
            73,
            53,
            50,
            0.28
        );

    color:
        white;

    font-size:
        13px;

    letter-spacing:
        2px;

    opacity:
        0;

    transition:
        opacity 0.35s ease;

}


.gallery-item:hover
.gallery-overlay {

    opacity:
        1;

}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {

    position:
        fixed;

    inset:
        0;

    z-index:
        5000;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        40px 90px;

    background:
        rgba(
            38,
            28,
            27,
            0.94
        );

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.lightbox.active {

    opacity:
        1;

    visibility:
        visible;

    pointer-events:
        auto;

}


.lightbox-content {

    max-width:
        900px;

    max-height:
        90vh;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        15px;

}


.lightbox-content img {

    max-width:
        100%;

    max-height:
        82vh;

    object-fit:
        contain;

    box-shadow:
        0 20px 80px
        rgba(0, 0, 0, 0.25);

}


.lightbox-counter {

    color:
        rgba(255,255,255,0.75);

    font-size:
        12px;

    letter-spacing:
        3px;

}


.lightbox-close {

    position:
        absolute;

    top:
        25px;

    right:
        30px;

    width:
        50px;

    height:
        50px;

    border:
        1px solid
        rgba(255,255,255,0.35);

    background:
        transparent;

    color:
        white;

    font-size:
        30px;

    font-weight:
        300;

    cursor:
        pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;

}


.lightbox-close:hover {

    background:
        rgba(255,255,255,0.1);

    border-color:
        white;

}


.lightbox-arrow {

    position:
        absolute;

    top:
        50%;

    transform:
        translateY(-50%);

    width:
        55px;

    height:
        55px;

    border:
        1px solid
        rgba(255,255,255,0.35);

    background:
        transparent;

    color:
        white;

    font-size:
        22px;

    cursor:
        pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;

}


.lightbox-arrow:hover {

    background:
        rgba(255,255,255,0.12);

    border-color:
        white;

}


.lightbox-prev {

    left:
        25px;

}


.lightbox-next {

    right:
        25px;

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin:
        auto;

    padding:
        130px 0;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    align-items:
        center;

    gap:
        100px;

}


.about-image {

    position:
        relative;

}


.about-image::after {

    content:
        "";

    position:
        absolute;

    right:
        -20px;

    bottom:
        -20px;

    width:
        80%;

    height:
        80%;

    border:
        1px solid var(--border);

    z-index:
        -1;

}


.about-image img {

    width:
        100%;

    height:
        600px;

    object-fit:
        cover;

}


.about-content {

    max-width:
        520px;

}


.about-content h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    font-weight:
        400;

    line-height:
        1.05;

    letter-spacing:
        -2px;

    margin:
        18px 0 30px;

}


.about-content p {

    color:
        var(--brown-light);

    line-height:
        1.9;

    margin-bottom:
        18px;

}


.text-link {

    display:
        inline-flex;

    gap:
        15px;

    margin-top:
        15px;

    color:
        var(--rose-dark);

    text-decoration:
        none;

    font-size:
        14px;

    border-bottom:
        1px solid var(--rose);

    padding-bottom:
        5px;

}


.text-link span {

    transition:
        transform 0.3s ease;

}


.text-link:hover span {

    transform:
        translateX(5px);

}


/* =========================================================
   RESERVATION
========================================================= */

.reservation-section {

    max-width:
        1000px;

}


.reservation-box {

    padding:
        70px;

    background:
        var(--cream-dark);

    border:
        1px solid var(--border);

}


.reservation-form {

    display:
        flex;

    flex-direction:
        column;

    gap:
        22px;

}


.form-group {

    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;

}


.form-group label {

    font-size:
        13px;

    color:
        var(--brown-light);

}


.form-row {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        20px;

}


input,
select,
textarea {

    width:
        100%;

    padding:
        16px 18px;

    background:
        var(--white);

    color:
        var(--brown);

    border:
        1px solid var(--border);

    outline:
        none;

    border-radius:
        0;

    font-size:
        14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


input:focus,
select:focus,
textarea:focus {

    border-color:
        var(--rose);

    box-shadow:
        0 0 0 3px
        rgba(
            189,
            114,
            106,
            0.08
        );

}


textarea {

    min-height:
        140px;

    resize:
        vertical;

}


.submit-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    align-self:
        flex-start;

    padding:
        17px 28px;

    border:
        none;

    background:
        var(--rose);

    color:
        white;

    cursor:
        pointer;

    font-size:
        14px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.submit-button:hover {

    background:
        var(--rose-dark);

    transform:
        translateY(-3px);

}


.whatsapp-mini {

    font-size:
        17px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    padding:
        130px 40px;

    background:
        var(--cream-soft);

    border-top:
        1px solid var(--border);

}


.contact-inner {

    max-width:
        var(--container);

    margin:
        auto;

    text-align:
        center;

}


.contact-inner h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            50px,
            6vw,
            75px
        );

    font-weight:
        400;

    line-height:
        1;

    margin:
        15px 0 25px;

}


.contact-description {

    max-width:
        550px;

    margin:
        auto auto 55px;

    color:
        var(--brown-light);

}


.contact-cards {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        15px;

    max-width:
        950px;

    margin:
        auto;

}


.contact-card {

    display:
        flex;

    align-items:
        center;

    gap:
        17px;

    padding:
        22px;

    text-align:
        left;

    background:
        var(--cream);

    border:
        1px solid var(--border);

    text-decoration:
        none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


.contact-card:hover {

    transform:
        translateY(-5px);

    border-color:
        var(--rose-light);

    box-shadow:
        var(--shadow);

}


.contact-icon {

    flex:
        0 0 48px;

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        var(--cream-dark);

}


.contact-icon svg {

    width:
        23px;

    height:
        23px;

    fill:
        none;

    stroke:
        var(--rose-dark);

    stroke-width:
        1.6;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


.contact-icon .icon-fill {

    fill:
        var(--rose-dark);

    stroke:
        none;

}


.contact-card strong {

    display:
        block;

    font-size:
        14px;

    margin-bottom:
        3px;

}


.contact-card span:not(.contact-arrow) {

    display:
        block;

    color:
        var(--brown-light);

    font-size:
        12px;

}


.contact-arrow {

    margin-left:
        auto;

    color:
        var(--rose);

    font-size:
        18px;

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding:
        40px 20px;

    text-align:
        center;

    border-top:
        1px solid var(--border);

}


.footer-logo {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        25px;

    color:
        var(--rose-dark);

}


footer p {

    color:
        var(--brown-light);

    font-size:
        12px;

}


.copyright {

    margin-top:
        15px;

    opacity:
        0.7;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {


    .hero {

        gap:
            45px;

    }


    .hero h1 {

        font-size:
            65px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-cards {

        grid-template-columns:
            1fr;

        max-width:
            600px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {


    /* ---------- NAV ---------- */

    .navbar {

        width:
            calc(100% - 40px);

        min-height:
            80px;

        padding:
            20px 0;

    }


    .logo {

        font-size:
            30px;

    }


    .menu-toggle {

        display:
            flex;

    }


    nav {

        position:
            absolute;

        top:
            calc(100% + 1px);

        left:
            0;

        width:
            100%;

        display:
            flex;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            0;

        padding:
            0 25px;

        background:
            rgba(
                251,
                246,
                242,
                0.98
            );

        backdrop-filter:
            blur(14px);

        -webkit-backdrop-filter:
            blur(14px);

        border:
            1px solid var(--border);

        max-height:
            0;

        overflow:
            hidden;

        opacity:
            0;

        visibility:
            hidden;

        transform:
            translateY(-10px);

        transition:
            max-height 0.45s ease,
            opacity 0.3s ease,
            transform 0.35s ease,
            visibility 0.35s ease;

    }


    nav.active {

        max-height:
            500px;

        padding-top:
            10px;

        padding-bottom:
            10px;

        opacity:
            1;

        visibility:
            visible;

        transform:
            translateY(0);

        box-shadow:
            0 20px 50px
            rgba(
                73,
                53,
                50,
                0.1
            );

    }


    nav a {

        padding:
            16px 5px;

        border-bottom:
            1px solid var(--border);

        font-size:
            15px;

    }


    nav a:last-child {

        border-bottom:
            none;

    }


    nav a::after {

        display:
            none;

    }


    /* ---------- HERO ---------- */

    .hero {

        width:
            calc(100% - 40px);

        grid-template-columns:
            1fr;

        gap:
            60px;

        min-height:
            auto;

        padding:
            70px 0 90px;

    }


    .hero h1 {

        font-size:
            57px;

        letter-spacing:
            -2px;

    }


    .hero-text {

        font-size:
            15px;

    }


    .hero-button {

        width:
            100%;

    }


    .hero-image img {

        height:
            500px;

    }


    .image-decoration {

        width:
            55px;

        height:
            55px;

    }


    /* ---------- SECTIONS ---------- */

    .section {

        width:
            calc(100% - 40px);

        padding:
            90px 0;

    }


    .section-heading {

        margin-bottom:
            45px;

    }


    .section-heading h2 {

        font-size:
            45px;

    }


    /* ---------- SERVICES ---------- */

    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height:
            280px;

    }


    /* ---------- GALLERY ---------- */

    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

        grid-auto-rows:
            240px;

        gap:
            10px;

    }


    .gallery-item.gallery-large {

        grid-row:
            span 2;

    }


    .gallery-overlay {

        display:
            none;

    }


    /* ---------- LIGHTBOX ---------- */

    .lightbox {

        padding:
            70px 55px;

    }


    .lightbox-content {

        max-width:
            100%;

    }


    .lightbox-content img {

        max-height:
            72vh;

    }


    .lightbox-close {

        top:
            15px;

        right:
            15px;

        width:
            45px;

        height:
            45px;

    }


    .lightbox-arrow {

        width:
            42px;

        height:
            42px;

        font-size:
            17px;

    }


    .lightbox-prev {

        left:
            8px;

    }


    .lightbox-next {

        right:
            8px;

    }


    /* ---------- ABOUT ---------- */

    .about {

        width:
            calc(100% - 40px);

        grid-template-columns:
            1fr;

        gap:
            60px;

        padding:
            90px 0;

    }


    .about-image img {

        height:
            500px;

    }


    .about-content h2 {

        font-size:
            47px;

    }


    /* ---------- RESERVATION ---------- */

    .reservation-box {

        padding:
            40px 25px;

    }


    .form-row {

        grid-template-columns:
            1fr;

    }


    .submit-button {

        width:
            100%;

    }


    /* ---------- CONTACT ---------- */

    .contact-section {

        padding:
            90px 20px;

    }


    .contact-inner h2 {

        font-size:
            48px;

    }


    .contact-cards {

        grid-template-columns:
            1fr;

    }


}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {


    .hero h1 {

        font-size:
            50px;

    }


    .hero-image img {

        height:
            430px;

    }


    .gallery-grid {

        grid-template-columns:
            1fr;

        grid-auto-rows:
            430px;

    }


    .gallery-item.gallery-large {

        grid-row:
            span 1;

    }


    .about-content h2 {

        font-size:
            43px;

    }


    .reservation-box {

        padding:
            35px 20px;

    }


}