:root {
    --primary-beige: #F5EFEB; /* Světlá béžová pro pozadí hlavičky */
    --dark-beige: #C5B097;    /* Tmavší béžová pro tlačítka a nadpisy */
    --text-dark: #333333;
}

body {
    background-color: #FFFFFF;
    color: var(--text-dark);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Navigace */
.custom-navbar {
    background-color: var(--primary-beige);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.custom-navbar .navbar-brand {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: var(--dark-beige);
    font-weight: bold;
}

/* Slider (Carousel) */
.carousel-item {
    height: 70vh;
    min-height: 400px;
    background: no-repeat center center scroll;
    background-size: cover;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.2); /* Jemné zesvětlení fotky */
}

.carousel-caption {
    bottom: 30%;
    background: rgba(245, 239, 235, 0.85); /* Béžový poloprůhledný box pod textem */
    padding: 2rem;
    border-radius: 8px;
    color: var(--text-dark);
}

.carousel-caption h2 {
    font-family: 'Georgia', serif;
    color: var(--dark-beige);
}

/* Galerie */
.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

/* Tlačítka */
.btn-custom {
    background-color: var(--dark-beige);
    color: white;
    border: none;
}

.btn-custom:hover {
    background-color: #A99279;
    color: white;
}