body {
    font-family: "Century Gothic", 'Lato', sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
}

.container img {
    object-fit: cover;
    margin: 10px;
    height: 300px;
    width: 300px;
    max-width: 100%;
}

p {
    line-height: 26px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #000;
}

.subheading {
    font-size: 30px;
}

.banner {
    background: url('/images/banner-image.jpg');  
    background-position: center center;
}

#about {
    background: rgb(169,251,217);
    background: linear-gradient(0deg, rgba(169,251,217,0.3) 0%, rgba(133,240,255,0.3) 30%, rgba(255,198,132,0.3) 100%);
}

#services {
    background: url('/images/background-image-1.jpg');  
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#contact {
    background: url('/images/background-image-2.jpg');  
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#about, #services, #gallery, #contact {
    padding: 2em 2em;    
}

.hero-tabs,
.slide,
.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    text-align: center;
    padding: 0 2em;
}

.hero-tabs h1,
.slide h1,
.gallery h1 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1rem;
}

.hero-tabs h3,
.slide h3,
.gallery h3 {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    opacity: 0.6;
}

.hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 10;
}

.hero-tabs-container.hero-tabs-container--top {
    position: fixed;
    top: 0;
}

.hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 0.8rem;
}

.hero-tab:hover {
    color: #000;
    background: rgba(0, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: #00FFFF;
    transition: left 0.3s ease;
}

@media (min-width: 800px) {
    .hero-tabs h1,
    .slide h1,
    .gallery h1 {
        font-size: 3rem;
    }
    
    .hero-tabs h3,
    .slide h3,
    .gallery h3 {
        font-size: 1rem;
    }

    .hero-tab {
        font-size: 1rem;
    }
}
