/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Author: Ngoc Khai
Description: Child theme của Hello Elementor.
Version: 1.0
*/

@import url("../hello-elementor/style.css");
@import url("../hello-elementor-child/assets/css/book.css");
@import url("../hello-elementor-child/assets/css/home.css");
@import url("../hello-elementor-child/assets/css/service.css");
@import url("../hello-elementor-child/assets/css/blog.css");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-image: url('../hello-elementor-child/assets/img/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 50px;
}

.header-main {
    text-align: center;
    margin-bottom: 50px;
    /* padding: 30px 0; */
}

.header-main h2 {
    color: #000000;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.header-main p {
    color: #000000;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 14px;
}


.book-button, .button {
    width: 100%;
    padding: 15px;
    background: #3b7a53;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.book-button:hover, .button:hover {
    background: white;
    color: #3b7a53;
    transform: scale(1.05);
    box-shadow: 0 5px 20px #3b7a53;
}

.book-button:active, .button:active {
    transform: scale(0.98);
}
.chaty-widget {
    bottom: 265px !important;
}
@media (max-width: 768px) {
    .container {
        margin: 30px 30px 0 30px;
        padding: 0;
    }
    
    .header h2 {
        font-size: 30px;
    }
    .book-button, .button {
        font-size: 14px;
    }
    .header-main {
        margin-bottom: 0px;
    }
    .header-main h2 {
        font-size: 24px;
    }
    .header-main p {
        font-size: 12px;
    }
    .book-button, .button {
        font-size: 12px;
        padding: 10px;
        border-radius: 7px;
    }
    .divider-line {
        width: 15%;
    }
    .chaty-widget {
        bottom: 180px !important;
        z-index: 1 !important;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        margin: 30px 50px 0 50px;
        padding: 0;
    }
    .header-main {
        margin-bottom: 30px;
    }
}
.divider-line {
    width: 10%;
    margin: 0 auto;
    border-block-start: 4px solid #3b7a53;
    display: block;
    padding-bottom: 15px;
}

#float-button {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* #menu-mobile .elementor-button {
    padding: 10px 20px;
    width: 122px;
} */