/* === Reset === */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9d7dd;
    color: #3d3d3d;
}

/* === Layout === */
main {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.layout-wrapper,
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.flex-fill {
    flex: 1;
}

/* === Header === */
header {
    background-color: #fff;
    border-bottom: 1px solid #e2e2e2;
    padding: 1rem 2rem;
}

/* === Navbar === */
.navbar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
    background-color: transparent;
}

    .navbar ul {
        list-style: none;
        display: flex;
        gap: 30px;
        margin: 0;
        padding: 0;
    }

    .navbar a {
        text-decoration: none;
        color: #3d3d3d;
        font-size: 18px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .navbar a:hover {
            color: #9c5c6c;
        }

/* === Hero === */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background-color: #fff;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

    .hero h1 {
        font-size: 2.5rem;
        font-weight: 400;
        margin-bottom: 1rem;
        color: #3d3d3d;
    }

    .hero .stiti {
        font-family: serif;
    }

    .hero .michaela {
        font-family: cursive;
        color: #5f5f5f;
    }

/* === CTA tlačítko === */
.cta,
.btn-lg,
.btn {
    background-color: #5f5f5f;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .cta:hover,
    .btn-lg:hover,
    .btn:hover {
        background-color: #444;
        transform: scale(1.05);
    }

/* === Hero images === */
.hero-images {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

    .hero-images img {
        max-width: 300px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/* === Cards (boxy služeb) === */
.card {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(156, 92, 108, 0.15);
    }

    .card h5 {
        transition: color 0.3s ease;
    }

    .card:hover h5 {
        color: #9c5c6c;
    }

/* === CTA tlačítka (efekt při kliknutí) === */
.btn-dark {
    position: relative;
    overflow: hidden;
    background-color: #3d3d3d;
    color: white;
}

    .btn-dark::after {
        content: "";
        position: absolute;
        background: rgba(255, 255, 255, 0.3);
        width: 100px;
        height: 100px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        border-radius: 50%;
        transition: transform 0.5s ease;
        pointer-events: none;
    }

    .btn-dark:active::after {
        transform: translate(-50%, -50%) scale(2.5);
    }

/* === Footer === */
footer {
    background-color: white;
    border-top: 1px solid #dee2e6;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* === Utility === */
.text-muted {
    color: #666 !important;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

