/*
Theme Name: Filmová Produkce
Theme URI: https://vase-domena.cz
Author: Název Produkce
Author URI: https://vase-domena.cz
Description: Profesionální WordPress téma pro filmovou produkci s custom post type pro projekty
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: filmova-produkce
*/

:root {
    --bg-dark: #000000;
    --bg-light: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #999999;
    --accent: #c9a772;
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Crimson Pro', serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 20px;
    font-weight: 400;
}

/* Smooth scroll bez JavaScriptu */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset pro fixed header */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', serif;
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%;
    height: auto;
}

/* Footer Styles */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding: 4rem 4% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.1em;
}

.footer-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.contact-value {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact-value a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--accent);
}

.footer-social {
    text-align: center;
    padding: 1rem 0;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    letter-spacing: 0.1em;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* About Page Styles */
.about-page {
    padding: 6rem 4% 4rem;
    min-height: 100vh;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Crimson Pro', serif;
    font-size: 45px;
    font-weight: 300;
    margin: 0 0 0.25rem;
    letter-spacing: 0.02em;
    text-align: center;
}

/* Sekce: O produkci */
.about-production {
    max-width: 900px;
    margin: 0 auto 5.33rem;
    padding: 0 1rem;
}

.production-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

.production-text p {
    font-size: 20px;
    line-height: 1.9;
    margin: 0 0 1.5rem;
    text-align: justify;
}

.production-text p:last-child {
    margin-bottom: 0;
}

.production-icon {
    position: sticky;
    top: 8rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

.rose-icon {
    font-size: 120px;
    line-height: 1;
    opacity: 0.3;
}

/* Sekce: Citát */
.about-quote {
    max-width: 640px;
    margin: 0 auto 0.5rem;
    padding: 0 1rem;
}

.quote-text {
    background: var(--color-background-secondary);
    border-radius: var(--border-radius-lg);
    padding: 2rem 3rem;
    text-align: center;
    font-family: 'Crimson Pro', serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0;
    font-style: italic;
}

/* Sekce: O producentce */
.about-producer {
    max-width: 900px;
    margin: 5.33rem auto 0;
    padding: 0 1rem;
}

.producer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2.5rem;
    align-items: start;
}

.producer-image {
    position: sticky;
    top: 8rem;
}

.producer-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    display: block;
}

.image-placeholder {
    background: var(--color-background-secondary);
    border-radius: var(--border-radius-lg);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
}

.image-placeholder i {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.producer-text p {
    font-size: 20px;
    line-height: 1.9;
    margin: 0 0 1.5rem;
    text-align: justify;
}

.producer-text p:last-child {
    margin-bottom: 0;
}

/* Responzivní */
@media (max-width: 768px) {
    .about-page {
        padding: 4rem 4% 3rem;
    }
    
    .about-title {
        font-size: 35px;
        margin-bottom: 0.25rem;
    }
    
    .about-production,
    .about-quote,
    .about-producer {
        padding: 0;
    }
    
    .production-content,
    .producer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .production-icon,
    .producer-image {
        position: static;
    }
    
    .rose-icon {
        font-size: 80px;
    }
    
    .quote-text {
        font-size: 24px;
        padding: 1.5rem 2rem;
        line-height: 1.3;
    }
}
