/* Základní styly pro tělo stránky a font */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
    background-image: url('Photos/pozadi.png'); /* Globální pozadí */
    background-size: cover;      
    background-position: center; 
    background-attachment: fixed;
    position: relative;          
    z-index: 0;
}

/* Překrytí pro zjemnění obrázku na pozadí */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Světlejší překrytí (původně 0.6) */
    z-index: -1;
}


/* Navigační lišta */
.navbar {
    background-color: #1e3932;
    color: white;
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar .title {
    margin: 0;
    line-height: 0;
}

.navbar .title img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.navbar .title img:hover {
    transform: scale(1.05);
}


.navbar nav a {
    color: white;
    text-decoration: none;
    margin: 0 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}
.navbar nav a:hover {
    color: #FFB74D; 
    border-bottom-color: #FFB74D; 
    transform: translateY(-2px);
}

.header-social-icons {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header-social-icons a {
    color: white;
    font-size: 1.8em;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.header-social-icons a:hover {
    color: #FFB74D; 
    transform: translateY(-3px) scale(1.1);
}


/* Hlavní obsah stránky */
main {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Hero sekce na úvodní stránce */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    background-image: url('Photos/zahori_otevreno.png'); /* Fotka za nápisem */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Tmavé překrytí pro čitelnost textu */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 0.2em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 1.5em;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.button-primary {
    display: inline-block;
    background-color: #FFB74D; 
    color: #1e3932;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px; 
    font-size: 1.1em;
    font-weight: 700; 
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.button-primary:hover {
    background-color: #ffca7a; 
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}


/* Sekce s obsahem (O nás, Služby, Provozovny) */
.about-section, .services-section {
    padding: 50px 40px;
    max-width: 1000px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(5px); 
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-section.visible, .services-section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Nadpisy a text */
.heading-green-dark {
    color: #184b2d;
    font-size: 2.5em; 
    margin-bottom: 0.8em;
    font-weight: 700;
    text-align: center;
    position: relative;
}
/* Podtržení nadpisu */
.heading-green-dark::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFB74D;
    margin: 20px auto 0;
    border-radius: 2px;
}

.text-green {
    color: #2f7141;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 1em;
}
.text-green a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    font-weight: 700;
}
.text-green a:hover {
    color: #FFB74D;
}

/* Obsah + obrázky */
.content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px; 
}

.services-section .content-block:not(:last-child) {
    border-bottom: 2px dashed #ddd; 
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.text-content-block {
    flex: 1;
    min-width: 300px;
}

.text-content-block h3 {
    color: #184b2d;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 0.8em;
    font-weight: 600;
}

.text-content-block p {
    color: #2f7141;
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Styly pro obrázky */
.image-content-block {
    flex: 0 0 40%;
    max-width: 40%;
    box-sizing: border-box;
}

.image-content-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease-in-out;
}

.image-content-block img:hover {
    transform: scale(1.05);
}

/* KULATÉ OBRÁZKY pro Služby - UPRAVENO PRO LEPŠÍ ZOBRAZENÍ */
.services-section .image-content-block {
    flex-basis: 300px; 
    height: 300px; 
    max-width: 300px;
    min-width: 300px;
    margin: 0 auto; 
    border-radius: 50%; 
    overflow: hidden; 
    border: 6px solid #FFB74D; 
    box-shadow: 0 0 10px rgba(255, 183, 77, 0.7), 0 5px 15px rgba(0,0,0,0.2);
}

.services-section .image-content-block img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center 20%; /* UPRAVENO PRO LEPŠÍ POZICOVÁNÍ OBSAHU */
    border-radius: 0; 
    box-shadow: none; 
}

.services-section .text-content-block {
    flex-basis: 55%; 
}


/* STYLY PRO PROVOZOVNY */
.provozovna-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    background-color: #f7fcf9;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.info-and-map-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    align-items: stretch;
}

.opening-hours-wrapper {
    flex: 1;
    min-width: 280px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.map-content-block {
    flex: 1;
    min-width: 300px;
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.opening-hours {
    width: 100%;
    border-collapse: collapse; 
    font-size: 1em;
    color: #2f7141;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    flex-grow: 1; 
}

.opening-hours th, .opening-hours td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0; 
}

.opening-hours thead {
    background-color: #2f7141;
    color: white;
}

.opening-hours tbody tr {
    background-color: #f7fcf9;
    transition: background-color 0.3s ease;
}

.opening-hours tbody tr:last-child td {
    border-bottom: none;
}

.opening-hours tbody tr:hover {
    background-color: #eaf5ec;
}

.opening-hours td:first-child {
    font-weight: bold;
}

.provozovna-item iframe {
    border: 0;
    width: 100%; 
    height: 100%;
    border-radius: 8px;
    display: block; 
}

.green-separator {
    border: none;
    height: 3px;
    background: linear-gradient(to right, transparent, #FFB74D, transparent); 
    width: 80%;
    margin: 60px auto;
}


/* Patička */
footer {
    background-color: #1e3932;
    color: white;
    text-align: center;
    padding: 1.5rem 20px;
    margin-top: auto;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 4px solid #FFB74D;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    color: white;
    font-size: 1.8em;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
    color: #FFB74D;
    transform: translateY(-3px) scale(1.1);
}


/* STYLY PRO KONTAKT */
.contact-info-block-single {
    max-width: 600px;
    margin: 30px auto 0 auto;
    background-color: #f7fcf9;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 30px;
    box-sizing: border-box;
    text-align: left;
    border-top: 5px solid #FFB74D; 
}

.contact-info-block-single h3 {
    color: #184b2d;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.contact-details-list {
    line-height: 2.2; 
}

.contact-icon {
    color: #1e3932;
    margin-right: 15px;
    font-size: 1.3em;
    vertical-align: middle;
    width: 25px;
    text-align: center;
}

/* Responsivní úpravy */
@media (max-width: 768px) {
    /* --- ZMĚNA PRO MOBILNÍ NAVIGACI --- */
    .navbar {
        flex-direction: row; /* Zajištění, že položky zůstanou v řadě */
        padding: 0.5rem 1rem; /* Zmenšení odsazení pro kompaktnější vzhled */
    }
    .navbar nav {
        margin-top: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .navbar nav a {
        margin: 0 0.4rem; /* Zmenšení mezer mezi odkazy */
        font-size: 0.85em; /* Zmenšení písma */
    }
    .navbar .title img {
        height: 45px; /* Zmenšení loga */
    }
    .header-social-icons {
        margin-left: 0.5rem; /* Přepsání 'auto' pro udržení ikon u navigace */
        margin-top: 0;
    }
     .header-social-icons a {
        font-size: 1.5em; /* Zmenšení sociálních ikon */
        margin: 0 5px; /* Zmenšení mezer mezi ikonami */
    }
    /* --- KONEC ZMĚNY --- */
    
    .hero-section {
        height: 50vh;
    }
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .button-primary {
        padding: 12px 24px;
        font-size: 1em;
    }

    .about-section, .services-section {
        padding: 30px 20px;
        margin: 20px auto;
    }

    .heading-green-dark {
        font-size: 2em;
    }

    .services-section .content-block, .content-block.reverse {
        flex-direction: column; 
    }
    .services-section .text-content-block {
        text-align: center; 
    }
    .services-section .image-content-block {
        width: 250px; 
        height: 250px;
        min-width: 250px;
        max-width: 250px;
    }

    .info-and-map-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .provozovna-item iframe {
        height: 300px;
    }
}
