/* Reset stylů */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tělo stránky */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Hlavička */
header {
    background-color: #0A5C5A;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFC107;
}

.hamburger {
    display: none;
}

/* Hero sekce */
.hero {
    background: linear-gradient(rgba(10, 92, 90, 0.7), rgba(10, 92, 90, 0.7)), url('images/finance-hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.btn-primary {
    background-color: #FFC107;
    border: none;
    color: #0A5C5A;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin-top: 2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e0a800;
}

/* Sekce O nás */
.about {
    padding: 4rem 2rem;
    background-color: #eef2f7;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.about p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Sekce služeb */
.services {
    padding: 4rem 2rem;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2rem;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    padding: 2rem;
    border-radius: 8px;
    width: 300px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    color: #0A5C5A;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* Sekce Obchodní partneři */
.partners {
    padding: 4rem 2rem;
    text-align: center;
}

.partners h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2rem;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-card {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    padding: 2rem;
    border-radius: 8px;
    width: 300px;
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-card i {
    color: #0A5C5A;
    margin-bottom: 1rem;
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.partner-card p {
    font-size: 1rem;
    color: #666;
}

/* Sekce kontakt */
.contact {
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact form input,
.contact form textarea,
.contact form button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form button {
    background-color: #0A5C5A;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact form button:hover {
    background-color: #066d68;
}

/* Mapa */
.map {
    margin-top: 2rem;
}

/* Paticka */
footer {
    background-color: #0A5C5A;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.social-media {
    margin-top: 1rem;
}

.social-media a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #FFC107;
}

/* Responzivní design */
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #0A5C5A;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
    }

    nav ul li {
        margin: 1rem 0;
    }

    nav ul li a {
        color: white;
    }

    .hamburger {
        display: block;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .services-container,
    .partners-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Další nastavení pro mobily */
@media screen and (max-width: 480px) {
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}