@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background: #1b1b1b;
    height: 100%;
    max-width: 100%;
    color: white;
}

.navbar{
    background-color:   transparent;
    
}

.navdiv{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 20%;
    color: rgb(255, 255, 255);
}

ul{
    margin-top: 2%;
    margin-right: 20%;
    margin-bottom: 2%;
}

li{
    list-style: none;
    display: inline-block;
    padding-right: 30px;
}

li a{
    color: rgb(255, 255, 255);
    
}

.hero {
    background: url('obrazky/banner_bg.jpg') no-repeat center center/cover;
    height: 750px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    color: white;
    margin-top: 2%;
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-left: 30%;
    margin-right: 30%;
    padding-bottom: 15px;
}

.cta-btn {
    background: #ffffff;
    color: #1b1b1b;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}

.cta-btn-z{
    background: #42a4f3;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}

.cta-btn:hover{
    background: #e2e2e2;
}

.cta-btn-z:hover{
    background: #3895e0;
}

.features {
    padding-top: 85px;
    height: 400px;
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 40px auto;
}

.feature {
    text-align: center;
}

.feature .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.feature h2 {
    color: #ffcc00;
    padding-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
}

.feature p {
    padding-top: 10px;
    padding-bottom: 30px;
}

.feature a {

    color: #ffffff;
    text-decoration: none;
    padding: 7px 15px;
    background: #42a4f3;
    border-radius: 15px;
}

.feature a:hover {
    background: #3895e0;
}


.contact {
    height: 350px;
    text-align: center;
    padding: 40px 0;
    background: #1b1b1b;
    color: white;
}

.contact h2 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 28px;
}

.contact hr{
    margin-left: 30%;
    margin-right: 30%;
}

.contact p{
    padding-top: 20px;
    padding-bottom: 30px;
}

.contact a.cta-btn {
    margin-top: 20px;
}

.map {
    width: 100%;
    margin: 40px auto;
    text-align: center;
}

.map img {
    width: 100%;
    height: auto;
}

footer {
    background: #1b1b1b;
    color: white;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

footer h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 5px;
}

footer ul li a {
    color: #ffcc00;
    text-decoration: none;
}