/*
Theme Name: Pocestuj Child
Theme URI: https://pocestuj.cz
Description: Child theme pro Pocestuj.cz
Author: Pocestuj
Template: generatepress
Version: 1.0.0
Text Domain: pocestuj-child
*/

/* Vlastní styly budou zde */
/* Hero sekce */

.hero-section {
    margin-top: -20px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(135deg, #0077B6, #005F96);
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-button {
    background: #FF6B35;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.hero-button:hover {
    background: #E55A25;
    color: white;
}

/* Sekce kategorií */
.categories-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}
.category-card {
    border: 1px solid #E8ECEF;
}
.category-card {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1A1A2E;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.category-card a {
    color: #0077B6;
    font-weight: 600;
    text-decoration: none;
}

.category-card a:hover {
    color: #FF6B35;
}
/* Aktivní a hover položka menu */
.main-navigation ul li a:hover {
    color: #FF6B35 !important;
    border-bottom: 2px solid #FF6B35;
}

.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a,
.main-navigation ul li.current-menu-ancestor > a,
.main-navigation ul li.current-menu-parent > a {
    color: #FF6B35 !important;
    border-bottom: 2px solid #FF6B35;
}

/* Mobilní responzivita */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .hero-button {
        font-size: 16px;
        padding: 14px 30px;
    }

    .categories-section {
        grid-template-columns: 1fr;
        padding: 0 20px;
        margin: 40px auto;
    }
}




