/* Global styling */
html, body {
    height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar styling */
.navbar {
    background: #111;
}

/* Logo hover */
.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}
.navbar-brand:hover {
    opacity: 0.7;
}

/* Navbar links hover */
.nav-link {
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover {
    color: #ffc107 !important;
}

/* Carousel caption overlay */
.carousel-caption {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 10px;
    padding: 1rem 1.5rem;
}

/* Footer */
footer {
    background: #111;
    margin-top: auto;
}

/* Bigger icons for cards */
.icon-green {
    font-size: 3.2rem;
    color:#169120;
}

.carousel-item img {
    height: 60vh;
    width: 100%;
    object-fit: cover;
}

/* Carousel caption with background blur */
.carousel-caption {
    backdrop-filter: blur(12px);        /* rozmazání */
    background: rgba(0, 0, 0, 0.35);    /* tmavý transparentní overlay pro lepší čitelnost */
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

h1, h2, h3 {
    font-family: "Playfair Display", serif;
    letter-spacing: 0.5px;
    
}

.btn, .small-title, .nav-link {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.navbar-brand {
    font-family: "Playfair Display", serif;
}




.feature-tile {
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
}

.feature-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.2rem;
    color: #169120;
}

.feature-link {
    color: #169120;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.feature-link:hover {
    color: #0e6c19;
    text-decoration: underline;
}

.section-spacing {
    padding-top: 6rem;  
    padding-bottom: 6rem;
}

.player-img {
    max-height: 450px;        /* jednotná výška */
    object-fit: cover;    
    width: 100%;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

