/**
 * TASEDAČKA - Nové styly pro úvodní stránku
 * Verze: 2.0
 * Datum: 2025-10-25
 */

/* ========================================
   HERO SECTION - Vylepšené tlačítka
   ======================================== */

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
}

/* Bílé secondary tlačítko pouze pro hero sekci (tmavé pozadí) */
.hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ========================================
   PRICE HIGHLIGHT - Cenová výhoda
   ======================================== */

.price-highlight-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
}

.price-highlight-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.price-highlight-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.4);
}

.price-highlight-content {
    flex: 1;
}

.price-highlight-content h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    color: #0d3d4d;
    text-align: left;
}

.price-highlight-content p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.price-highlight-box .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ========================================
   HOW IT WORKS - Jak to funguje
   ======================================== */

.how-it-works-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    background: linear-gradient(135deg, rgba(242, 121, 90, 0.1) 0%, rgba(242, 121, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2795a;
    font-size: 36px;
}

.step-card h3 {
    margin: 20px 0 15px;
    font-size: 20px;
    color: #0d3d4d;
}

.step-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* ========================================
   USE CASES - Pro koho je místnost
   ======================================== */

.use-cases-section {
    padding: 80px 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.use-case-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: #21758c;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(33, 117, 140, 0.15);
}

.use-case-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.3);
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1) rotate(5deg);
}

.use-case-card h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #0d3d4d;
}

.use-case-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* ========================================
   ABOUT SECTION - Vylepšený design
   ======================================== */

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.capacity-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.capacity-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.capacity-card:hover {
    border-color: #21758c;
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.15);
}

.capacity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f2795a 0%, #e65a3c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.capacity-details h4 {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: #0d3d4d;
}

.capacity-details p {
    margin: 0;
    font-size: 14px;
    color: #999;
}

/* ========================================
   EQUIPMENT SECTION - Vylepšený grid
   ======================================== */

.equipment-section {
    padding: 80px 0;
    background: white;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.equipment-item {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.equipment-icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f2795a 0%, #e65a3c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 4px 12px rgba(242, 121, 90, 0.3);
    transition: all 0.3s ease;
}

.equipment-item:hover .equipment-icon-circle {
    transform: scale(1.1);
}

.equipment-item h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #0d3d4d;
    font-weight: 600;
}

.equipment-item p {
    margin: 0;
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

/* ========================================
   GALLERY PREVIEW - Náhled galerie
   ======================================== */

.gallery-preview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-preview-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-preview-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

/* Tlačítko v galerii sekci - tyrkysové s bílým textem při hoveru */
.gallery-preview-section .btn-secondary {
    background: transparent;
    border: 2px solid #21758c;
    color: #21758c;
}

.gallery-preview-section .btn-secondary:hover {
    background: #21758c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.3);
}

/* ========================================
   FAQ - Časté otázky
   ======================================== */

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #21758c;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    color: #f2795a;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #0d3d4d;
    font-weight: 600;
}

.faq-answer {
    padding-left: 39px;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* ========================================
   CTA SECTION - Vylepšená závěrečná výzva
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin: 0 0 15px 0;
    font-size: 42px;
    color: white;
}

.cta-content p {
    margin: 0 0 40px 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #f2795a;
    border: 2px solid #f2795a;
}

.cta-buttons .btn-primary:hover {
    background: #e65a3c;
    border-color: #e65a3c;
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #21758c;
}

/* ========================================
   RESPONSIVE - Mobilní zařízení
   ======================================== */

@media (max-width: 768px) {
    /* Price Highlight */
    .price-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .price-highlight-content h2 {
        font-size: 22px;
        text-align: center;
    }

    .price-highlight-box .btn {
        width: 100%;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Use Cases */
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .capacity-cards {
        grid-template-columns: 1fr;
    }

    /* Gallery Preview */
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .price-highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .price-highlight-content h2 {
        font-size: 20px;
    }

    .step-icon,
    .use-case-icon,
    .equipment-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}
