/**
 * eLfilms.cz - Styly pro stránku Podmínky použití
 *
 * @package    eLfilms
 * @subpackage Frontend
 * @file       css/podminky.css
 * @version    2.0 - oddělení CSS z podminky.html → podminky.php
 * @datum      Duben 2026
 * @author     eLfilms Team
 * @copyright  2009-2026 eLfilms.cz
 *
 * STYLUJE:
 * - Stránka Podmínky použití (podminky.php)
 * - Textový obsah, highlight boxy, kontaktní sekce
 *
 * NOTE: Responsive styly jsou v podminky-responsive.css
 */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #3b82c4 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    position: relative;
    padding-top: 64px;
}

body::before { display: none; }

.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
    background: #EEB500;
    color: #0b334f;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.skip-to-content:focus { left: 10px; top: 10px; }

.seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 94px 40px 40px 40px;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.back-btn {
    position: fixed;
    top: 74px;
    left: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 200;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.header { text-align: center; margin-bottom: 60px; }

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.logo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 42px;
    font-weight: bold;
    color: #1e3a5f;
}

.logo-text {
    font-size: 40px;
    font-weight: 600;
    color: white;
}

.title {
    font-size: 36px;
    font-weight: 700;
    color: #EEB500;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.meta-info {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.seo-intro {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.seo-intro h2 {
    color: #EEB500;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.seo-intro p {
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

/* Textový obsah */
h2 {
    font-size: 24px;
    font-weight: 700;
    color: #EEB500;
    margin-top: 40px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

ul {
    margin: 20px 0;
    padding-left: 20px;
}

li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
}

strong { color: #EEB500; }

.highlight-box {
    background: rgba(238, 181, 0, 0.15);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #EEB500;
}

.contact-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer-links { margin-bottom: 25px; font-size: 14px; }
.footer-links a { color: #EEB500; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: rgba(238, 181, 0, 0.8); }
.footer p { margin-bottom: 10px; }
.footer .copyright { font-weight: bold; }

.seo-keywords {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 20px;
    line-height: 1.4;
}

.fade-in { animation: fadeIn 0.8s ease-in-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
