/* sections.css - Sekce stránky (úvod, funkce, statistiky, patička) */

/* Úvodní sekce */
.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    height: auto;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dc2626" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content a {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-align: justify;
}

/* Sekce funkcí */
.features {
    padding: 25px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading--red {
    color: var(--primary-red);
}

.footer-note {
    border-top: 1px solid #333;
    color: var(--text-muted);
}

/* Sekce statistik */
.stats {
    padding: 50px 0;
    background: var(--dark-bg);
}

/* Sekce Johhny Wolf */
.Johhny-Wolf {
    padding: 50px 0;
    background: var(--dark-bg);
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Patička */
.footer {
    background: #0a0a0a;
    border-top: 2px solid var(--primary-red);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section div {
    padding: 0.5rem;
}

.footer-section h4 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h2 {
    color: var(--text-light);
    font-weight: 1000;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--hover-red);
    transform: translateY(-2px);
}

.col-4 div {
    margin-top: 0;
    margin-bottom: 0;
}

/* Pomocné třídy */
.center {
    align-items: center;
    justify-content: center;
}

.page-content {
    display: none;
    min-height: 80vh;
    padding: 100px 0 50px;
}

.page-content.active {
    display: block;
}
