/* Allow scrolling on mobile devices */

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    -webkit-overflow-scrolling: touch;
}

.main-center {
    min-height: calc(150vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    margin: 0 auto;
    display: flex;
}

main {
    margin-top: 40px;
}

html {
    background: url('../media/cleaning-team-pc.png') center center/cover no-repeat fixed;
}

body {
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: #2196f3;
    margin-right: 6px;
    font-size: 2rem;
}

.appointment-btn {
    background: #ffe600;
    color: #222;
    border: none;
    border-radius: 4px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 32px;
    transition: background 0.2s;
}

.appointment-btn:hover {
    background: #ffd600;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    box-shadow: none;
}

.hero-bubble {
    position: relative;
    background: #fff;
    border-radius: 48% 48% 60% 60%/40% 40% 80% 80%;
    box-shadow: 0 8px 32px rgba(34, 34, 34, 0.10);
    padding: 36px 36px 48px 36px;
    min-width: 320px;
    max-width: 100%;
    width: 100%;
    overflow: visible;
    opacity: 0.9;
}

.hero-bubble .subtitle {
    color: #2196f3;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-align: left;
}

h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.1;
    color: #111;
    text-align: left;
}

@media (max-width: 1000px) {
    html {
        width: 100%;
        min-height: 100vh;
        background: url('../media/cleaning-team.png') center top no-repeat fixed;
        background-size: contain;
        background-color: #000000;
    }
}