/* =========================================
   HOME SECTION
========================================= */

.home-section {
    position: relative;

    width: 100%;
    height: calc(100vh - 100px);
    min-height: 700px;

    overflow: hidden;

    background: #171819;

    color: #ffffff;
}


/* =========================================
   BACKGROUND PATTERN
========================================= */

.home-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        repeating-linear-gradient(45deg,
            transparent 0,
            transparent 11px,
            rgba(255, 255, 255, 0.035) 12px,
            transparent 13px),
        repeating-linear-gradient(-45deg,
            transparent 0,
            transparent 11px,
            rgba(255, 255, 255, 0.035) 12px,
            transparent 13px);

    background-size: 105px 105px;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.home-container {
    position: relative;

    width: 100%;
    max-width: 1450px;

    height: 100%;

    margin: auto;

    z-index: 5;
}


/* =========================================
   CONTENT
========================================= */

.home-content {
    position: absolute;

    left: 180px;
    top: 180px;
}


.home-content h1 {
    margin: 0;

    color: #ffffff;

    font-size: 47px;
    line-height: 1.13;

    font-weight: 700;

    letter-spacing: -1.2px;
}


.home-content p {
    margin: 10px 0 0;

    color: #a9a9a9;

    font-size: 18px;
    line-height: 1.55;

    font-weight: 600;
}


/* =========================================
   APPOINTMENT
========================================= */

.home-appointment {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 38px;

    color: #ffffff;

    text-decoration: none;

    font-size: 20px;
    font-weight: 500;
}


.home-arrow {
    width: 65px;
    height: 69px;

    border: 1px solid #a97c25;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e5b457;

    font-size: 30px;

    font-weight: 800;

    transition: 0.3s ease;
}


.home-appointment:hover .home-arrow {
    background: #e5b457;

    color: #171819;

    transform: translate(4px, -4px);
}


/* =========================================
   HANGING LIGHTS
========================================= */

.home-lights {
    position: absolute;

    top: 0;
    left: 40px;

    width: 230px;
    height: 300px;

    z-index: 10;
}


.home-light {
    position: absolute;

    top: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.light-wire {
    width: 2px;

    background: #080808;
}


.lamp {
    position: relative;

    width: 30px;
    height: 66px;

    border-radius: 4px 4px 12px 12px;

    background:
        linear-gradient(90deg,
            #161616,
            #555555,
            #777777,
            #181818);

    box-shadow:
        0 4px 7px rgba(0, 0, 0, 0.8);
}


.lamp::after {
    content: "";

    position: absolute;

    left: 5px;
    right: 5px;

    bottom: -5px;

    height: 8px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.5);
}


.home-light-1 {
    left: 35px;
}

.home-light-1 .light-wire {
    height: 72px;
}


.home-light-2 {
    left: 105px;
}

.home-light-2 .light-wire {
    height: 130px;
}


.home-light-3 {
    left: 170px;
}

.home-light-3 .light-wire {
    height: 35px;
}


/* =========================================
   FACEBOOK
========================================= */

.home-facebook {
    position: absolute;

    left: 58px;
    top: 345px;

    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 18px;

    text-decoration: none;

    z-index: 20;
}


/* =========================================
   CHAT BUTTON
========================================= */

.home-chat {
    position: absolute;

    right: 25px;
    bottom: 20px;

    width: 66px;
    height: 66px;

    border-radius: 50%;

    background: #e5b457;

    color: #111111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    text-decoration: none;

    z-index: 50;

    transition: 0.3s ease;
}


.home-chat:hover {
    transform: scale(1.08);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .home-section {
        height: calc(100vh - 90px);
        min-height: 650px;
    }


    .home-container {
        max-width: 100%;
    }


    /* -----------------------------
       CONTENT
    ----------------------------- */

    .home-content {

        left: 90px;

        top: 160px;

    }


    .home-content h1 {

        font-size: 42px;

        line-height: 1.15;

    }


    .home-content p {

        font-size: 17px;

    }


    /* -----------------------------
       LIGHTS
    ----------------------------- */

    .home-lights {

        left: 25px;

        transform: scale(0.90);

        transform-origin: top left;

    }


    /* -----------------------------
       FACEBOOK
    ----------------------------- */

    .home-facebook {

        left: 43px;

        top: 330px;

    }


    /* -----------------------------
       CHAT
    ----------------------------- */

    .home-chat {

        right: 22px;

        bottom: 20px;

        width: 62px;

        height: 62px;

        font-size: 22px;

    }

}



/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 900px) {

    .home-section {

        height: calc(100vh - 80px);

        min-height: 620px;

    }


    .home-content {

        left: 70px;

        top: 145px;

    }


    .home-content h1 {

        font-size: 38px;

    }


    .home-content p {

        font-size: 16px;

        max-width: 500px;

    }


    .home-lights {

        left: 15px;

        transform: scale(0.82);

    }


    .home-facebook {

        left: 33px;

        top: 315px;

    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .home-section {

        width: 100%;

        height: calc(100svh - 75px);

        min-height: 560px;

        max-height: 660px;

        overflow: hidden;

    }


    /* =====================================
       BACKGROUND PATTERN
    ===================================== */

    .home-section::before {

        background-size: 85px 85px;

        opacity: 0.9;

    }


    /* =====================================
       CONTAINER
    ===================================== */

    .home-container {

        width: 100%;

        height: 100%;

        margin: 0;

        padding: 0;

    }


    /* =====================================
       CONTENT
    ===================================== */

    .home-content {

        position: absolute;

        left: 0;

        top: 0;

        width: 100%;

        height: 100%;

        padding:

            0 25px 100px;

        box-sizing: border-box;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        text-align: left;

    }


    /* =====================================
       HEADING
    ===================================== */

    .home-content h1 {

        width: 100%;

        max-width: 560px;

        margin: 0;

        font-size: clamp(30px,
                7vw,
                40px);

        line-height: 1.16;

        letter-spacing: -0.8px;

    }


    /* =====================================
       DESCRIPTION
    ===================================== */

    .home-content p {

        width: 100%;

        max-width: 520px;

        margin:

            12px 0 0;

        color: #a9a9a9;

        font-size: 14px;

        line-height: 1.6;

        font-weight: 500;

    }


    .home-content p br {

        display: none;

    }


    /* =====================================
       APPOINTMENT
    ===================================== */

    .home-appointment {

        margin-top: 28px;

        gap: 17px;

        font-size: 15px;

        line-height: 1.3;

    }


    .home-arrow {

        width: 54px;

        height: 54px;

        flex-shrink: 0;

        font-size: 17px;

    }


    /* =====================================
       HANGING LIGHTS
    ===================================== */

    .home-lights {

        position: absolute;

        top: 0;

        left: auto;

        right: -18px;

        width: 230px;

        height: 300px;

        transform: scale(0.68);

        transform-origin: top right;

        z-index: 10;

    }


    /* Keep original light positions */

    .home-light-1 {

        left: 35px;

    }


    .home-light-2 {

        left: 105px;

    }


    .home-light-3 {

        left: 170px;

    }


    /* =====================================
       FACEBOOK
    ===================================== */

    .home-facebook {

        display: none !important;

    }

}



/* =========================================
   MOBILE — 600px
========================================= */

@media (max-width: 600px) {

    .home-section {

        height: calc(100svh - 70px);

        min-height: 500px;

    }


    /* =====================================
       CONTENT
    ===================================== */

    .home-content {

        padding:

            0 22px 75px;

    }


    .home-content h1 {

        font-size: clamp(28px,
                7.5vw,
                36px);

        line-height: 1.17;

        letter-spacing: -0.7px;

    }


    .home-content p {

        margin-top: 11px;

        font-size: 13.5px;

        line-height: 1.55;

        max-width: 430px;

    }


    /* =====================================
       APPOINTMENT
    ===================================== */

    .home-appointment {

        margin-top: 25px;

        gap: 15px;

        font-size: 14px;

    }


    .home-arrow {

        width: 52px;

        height: 52px;

        font-size: 16px;

    }


    /* =====================================
       LIGHTS
    ===================================== */

    .home-lights {

        right: -25px;

        transform: scale(0.60);

    }


    /* =====================================
       FACEBOOK
    ===================================== */

    .home-facebook {

        left: 22px;

        bottom: 91px;

        font-size: 16px;

    }


    /* =====================================
       CHAT
    ===================================== */

    .home-chat {

        right: 16px;

        bottom: 16px;

        width: 55px;

        height: 55px;

        font-size: 20px;

    }

}
