/**
 * eLfilms.cz - Styly pro stránku Kontakt
 *
 * @package    eLfilms
 * @subpackage Frontend
 * @file       css/kontakt.css
 * @version    2.0 - oddělení CSS z kontakt.html → kontakt.php
 * @datum      Duben 2026
 * @author     eLfilms Team
 * @copyright  2009-2026 eLfilms.cz
 *
 * STYLUJE:
 * - Stránka Kontakt (kontakt.php)
 * - Kontaktní formulář, info grid, SEO sekce
 *
 * NOTE: Responsive styly jsou v kontakt-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;
    padding-top: 64px;
}

.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;
}

.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: 40px; }

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

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

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

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

.seo-intro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    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); }

.content-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: #EEB500;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form { max-width: 600px; margin: 0 auto; }

.form-group { margin-bottom: 20px; }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #EEB500;
    font-size: 16px;
}

select, input[type="email"], textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a5f;
    font-size: 16px;
    font-family: inherit;
}

select:focus, input[type="email"]:focus, textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(238, 181, 0, 0.3);
}

textarea { min-height: 120px; resize: vertical; }

.submit-btn {
    background: linear-gradient(145deg, #EEB500, #d4a000);
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    color: #1e3a5f;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(145deg, #d4a000, #b8910e);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 181, 0, 0.3);
}

.submit-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }

.response-info { text-align: center; margin-top: 20px; color: rgba(255, 255, 255, 0.8); }

.honeypot { position: absolute; left: -9999px; visibility: hidden; }

.info-section { margin-top: 40px; text-align: center; }

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

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.info-icon { font-size: 32px; margin-bottom: 15px; display: block; }
.info-title { font-size: 18px; font-weight: 600; color: #EEB500; margin-bottom: 10px; }
.info-text { color: rgba(255, 255, 255, 0.9); line-height: 1.5; font-size: 15px; }

.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; }
