/**
 * eLfilms.cz - Styly pro stránku Kontakt
 * 
 * @package    eLfilms
 * @subpackage Frontend
 * @file       css/kontakt.css
 * @version    4.1 - Standards fix
 * @datum      Březen 2026
 * @author     eLfilms Team
 * @copyright  2009-2026 eLfilms.cz
 * 
 * STYLUJE:
 * - Grid layout (text vlevo, formulář vpravo)
 * - Kontaktní formulář (jméno, příjmení, email, zpráva)
 * - Success/Error hlášky
 * - Social media ikony (kulaté)
 * - Gradient tlačítko
 * - Skip to content (accessibility)
 * 
 * POUŽÍVÁ:
 * - kontakt.php
 * 
 * DESIGN:
 * - Barvy: tmavě modrá (#0d1b2a, #0b334f–#1a4f72), zlatá (#EEB500)
 * - Max šířka obsahu: 1200px
 * 
 * NOTE:
 * - Responsive styly jsou v kontakt-responsive.css
 */

/* ============================================
   RESET
   ============================================ */
* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #0d3552;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

/* ============================================
   ACCESSIBILITY - SKIP TO CONTENT
   ============================================ */
.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;
}

/* ============================================
   HLAVNÍ KONTAKT SEKCE
   ============================================ */
.contact-section {
    background-color: #0d3552;
    padding-top: 140px;
    padding-bottom: 140px;
}

/* ============================================
   OBSAH - GRID LAYOUT
   ============================================ */
.contact-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ============================================
   LEVÝ TEXT
   ============================================ */
.contact-left small {
    color: #f5b400;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.contact-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
}

/* ============================================
   SUCCESS/ERROR HLÁŠKY
   ============================================ */
.form-success {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ecc71;
    border-radius: 5px;
    color: #2ecc71;
}

.form-error {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(231, 76, 60, 0.2);
    border: 1px solid #e74c3c;
    border-radius: 5px;
    color: #e74c3c;
}

/* ============================================
   PRAVÁ STRANA - FORMULÁŘ
   ============================================ */
.contact-right h4 {
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: #35536d;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 14px;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f5b400;
}

.contact-form textarea {
    height: 140px;
    resize: none;
    font-family: Arial, Helvetica, sans-serif;
}

/* ============================================
   TLAČÍTKO ODESLAT
   ============================================ */
.contact-form button {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(90deg, #f5b400, #ff7a00);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 180, 0, 0.4);
}

.contact-form button:active {
    transform: translateY(0);
}

/* ============================================
   SOCIAL IKONY (KULATÉ)
   ============================================ */
.contact-social {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.contact-social a {
    width: 38px;
    height: 38px;
    background-color: #37556e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social a i {
    text-decoration: none;
}

.contact-social a:hover {
    background-color: #EEB500;
    color: #0b334f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(238, 181, 0, 0.3);
}

/* ============================================
   FOOTER FIX
   ============================================ */
footer {
    margin: 0;
    padding: 40px 0 20px;
    background-color: #0a2a40;
}