/* LIGHT THEME FOR PC */
html {
    background-color: #ffffff !important;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748 !important;
    background-color: #ffffff !important;
    overflow-x: hidden;
}

/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header a navigace */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2f855a;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: #2f855a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2f855a;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
}

/* Skrytí mobilního menu na PC */
.mobile-menu-overlay,
.nav-menu-close {
    display: none;
}

/* Zajištění, že desktop navigace je viditelná */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero sekce */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-placeholder-text {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tlačítka */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2f855a;
    color: white;
    box-shadow: 0 4px 15px rgba(47, 133, 90, 0.3);
}

.btn-primary:hover {
    background: #276749;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 133, 90, 0.4);
}

.btn-secondary {
    background: #68d391;
    color: white;
    box-shadow: 0 4px 15px rgba(104, 211, 145, 0.3);
}

.btn-secondary:hover {
    background: #48bb78;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(104, 211, 145, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: white;
    color: #2f855a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline .icon-download {
    margin-right: 8px;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .button-group .btn {
        width: auto;
        min-width: 200px;
    }
}

/* Sekce */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: #f7fafc;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
    text-align: center;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content.reverse .section-text {
    order: 2;
}

.section-content.reverse .section-image {
    order: 1;
}

/* Moderní zelené zvýrazňovací boxy - na přeskáčku */
.section:nth-child(odd) .section-text {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(47, 133, 90, 0.3);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    position: relative;
}

.section:nth-child(odd) .section-text:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 15px 40px rgba(47, 133, 90, 0.4);
}

.section:nth-child(even) .section-text {
    background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(104, 211, 145, 0.3);
    transform: rotate(1deg);
    transition: all 0.3s ease;
    position: relative;
}

.section:nth-child(even) .section-text:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 15px 40px rgba(104, 211, 145, 0.4);
}

/* Speciální styly pro různé sekce */
.section:nth-child(3) .section-text {
    background: linear-gradient(45deg, #2f855a 0%, #68d391 50%, #38a169 100%) !important;
    transform: rotate(0.5deg) !important;
}

.section:nth-child(3) .section-text::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #48bb78, #2f855a, #68d391);
    border-radius: 25px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.3;
}

.section:nth-child(5) .section-text {
    background: radial-gradient(circle at top left, #2f855a 0%, #38a169 100%) !important;
    transform: rotate(-0.8deg) !important;
    border: 2px solid rgba(104, 211, 145, 0.3);
}

.section:nth-child(7) .section-text {
    background: linear-gradient(225deg, #68d391 0%, #2f855a 100%) !important;
    transform: rotate(1.2deg) !important;
    overflow: hidden;
}

.section:nth-child(7) .section-text::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.section-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff !important;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.section-image img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #e2e8f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    border: 2px dashed #cbd5e0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Galerie */
.gallery-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-tab {
    padding: 12px 24px;
    background: #e2e8f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #4a5568;
    outline: none;
}

.category-tab:hover,
.category-tab.active {
    background: #2f855a;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    background: #ffffff;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
}

.gallery-item-info {
    padding: 1.5rem;
    background: #ffffff;
}

.gallery-item-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.gallery-item-info p {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Kontakt */
.contact-section {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    color: white;
}

.contact-section h2 {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 2;
}

.social-links {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.social-links h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: white;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 148, 51, 0.4);
}

.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Hero sociální tlačítka */
.hero-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.hero-social-links .social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-social-links .instagram-btn:hover,
.hero-social-links .facebook-btn:hover {
    transform: translateY(-2px) scale(1.1);
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #68d391;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #48bb78;
    text-decoration: underline;
}

.footer-credit {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.footer-credit a {
    font-weight: 600;
    color: #4fd1c7;
}

.footer-credit a:hover {
    color: #38b2ac;
    transform: scale(1.05);
    display: inline-block;
    transition: all 0.3s ease;
}

/* Admin access */
.admin-access {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.admin-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    color: #666 !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.admin-link:hover {
    background: rgba(79, 209, 199, 0.1);
    color: #4fd1c7 !important;
    opacity: 1;
    transform: translateY(-1px);
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Responsivní úpravy pro větší tablety */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-content {
        gap: 3rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .section-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-content.reverse .section-text,
    .section-content.reverse .section-image {
        order: unset;
    }
    
    .social-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-social-links .social-btn {
        width: 45px;
        height: 45px;
    }
}

/* Media query pro střední rozlišení - kompaktnější menu */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
}

@media (max-width: 1000px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
    }
}

/* COOKIE BANNER A GDPR STYLY */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.cookie-banner-visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e0;
}

.cookie-text a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #93c5fd;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn-necessary {
    background: #4a5568;
    color: white;
}

.cookie-btn-necessary:hover {
    background: #2d3748;
}

.cookie-btn-settings {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid #4a5568;
}

.cookie-btn-settings:hover {
    background: #4a5568;
    border-color: #2d3748;
}

.cookie-btn-accept {
    background: #3182ce;
    color: white;
}

.cookie-btn-accept:hover {
    background: #2c5282;
}

.cookie-btn-save {
    background: #38a169;
    color: white;
}

.cookie-btn-save:hover {
    background: #2f855a;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.cookie-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7fafc;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #2d3748;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
    padding: 5px;
    line-height: 1;
}

.cookie-close:hover {
    color: #2d3748;
}

.cookie-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2d3748;
}

.cookie-category p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.2s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #3182ce;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: #a0aec0;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    background: #f7fafc;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Privacy Policy Content */
.privacy-content h3 {
    color: #2d3748;
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
}

.privacy-content h4 {
    color: #4a5568;
    margin: 15px 0 8px 0;
    font-size: 1rem;
}

.privacy-content ul {
    margin: 10px 0 15px 20px;
    color: #4a5568;
}

.privacy-content li {
    margin-bottom: 5px;
}

/* Cookie Settings Link */
.cookie-settings-link {
    color: #3182ce !important;
    text-decoration: underline;
}

.cookie-settings-link:hover {
    color: #2c5282 !important;
}

/* Responsive pro cookie banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 20px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
