* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #b1f7b7;
    color: #333;
}

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.realizace-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.realizace-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

header .menu a {
    color: #2e7d32;
    font-weight: bold;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2e7d32;
    font-weight: bold;
}

.logo {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 30px; 
}

.logo img {
    height: 36px !important;
    display: flex;
    align-items: center; 
    gap: 10px;
    width: auto;
}

.dropdown {
    position: relative;
}

.dropdown-head {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-head a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
}

.dropdown-toggle {
    cursor: pointer;
    font-size: 15px;
}

.dropdown-toggle:hover {
    color: #1b5e20;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); 
    z-index: 1001; 
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown-content a {
    padding: 10px;
    color: #2e7d32;
    text-decoration: none;
}

.dropdown-content.show {
    display: flex;
}

#scrollTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background-color: #2e7d32; 
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTop svg {
    width: 24px;
    height: 24px;
    fill: white;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; 
}

@media (min-width: 768px) {
    .hero-logo {
        width: 60%;
        max-width: 1000px; 
        border-radius: 12px;
    }
}

.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.section h2 {
    margin-bottom: 20px;
}

.alt {
    background: #f1f8f4;
}

.product {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    align-items: center;
}

.product img {
    width: 300px;
    border-radius: 10px;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-link h3,
.product-link p {
    color: inherit; 
    text-decoration: none;
}


.product-link:hover .product {
    transform: scale(1.02);
    transition: 0.2s ease;
}

.kontakt {
    padding: 48px 24px;
    background-color: #e8f5e9;
    font-family: Arial, sans-serif;
}

.kontakt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 24px;
}

.kontakt-info,
.kontakt-form {
    background-color: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.kontakt-info h2,
.kontakt-form h2 {
    font-size: 16px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.kontakt-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.kontakt-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kontakt-icon svg {
    width: 15px;
    height: 15px;
    fill: #2e7d32;
}

.kontakt-label {
    font-size: 11px;
    color: #888;
    margin: 0 0 3px;
}

.kontakt-val {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.kontakt-val a {
    color: #2e7d32;
    text-decoration: none;
}

.kontakt-val a:hover {
    text-decoration: underline;
}

.provozni-wrapper {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.provozni-wrapper p {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.provozni {
    border-collapse: collapse;
    width: 100%;
}

.provozni td {
    font-size: 13px;
    padding: 5px 0;
    color: #333;
}

.provozni td:last-child {
    text-align: right;
    font-weight: 600;
}

.provozni .zavreno {
    color: #c0392b;
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 9px 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    border-color: #2e7d32;
    background-color: #fff;
}

.kontakt-form textarea {
    height: 100px;
    resize: vertical;
}

.kontakt-form .file-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.kontakt-form .file-row label {
    font-size: 12px;
    color: #888;
}

.kontakt-form input[type="file"] {
    font-size: 12px;
    padding: 5px;
    background: #fff;
    margin-bottom: 0;
}

.kontakt-form button {
    width: 100%;
    padding: 11px;
    background-color: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.kontakt-form button:hover {
    background-color: #1b5e20;
}

.kontakt-message {
    height: 150px; 
}

.map-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    display: block;
    border: none;
}

.map-wrapper .map-link {
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.map-wrapper .map-link a {
    font-size: 13px;
    color: #2e7d32;
    text-decoration: none;
}

.map-wrapper .map-link a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background: #2e7d32;
    color: white;
}

@media (max-width: 768px) {
    .product-link,
    .product-link h3,
    .product-link p {
        text-decoration: none;
        color: inherit;
    }

    nav {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .product {
        flex-direction: column;
    }

    .product img {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .kontakt-inner {
        grid-template-columns: 1fr;
    }
}