/* ==========================================
   GORYNIČOVÉ - GLOBÁLNÍ STYLY
   ========================================== */

/* CSS proměnné */
:root {
    --primary-color: #BF985C;
    --secondary-color: #AD8A54;
    --bg-color: #181818;
    --bg-alt-color: #1F1F1F;
    --bg-inv-color: #000000;
    --text-color: #FFFFFF;
    --text-alt-color: #FFFFFA;
    --text-muted: #B8B8B8;
    --text-accent: #E6D7C3;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--text-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-accent);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.8;
}

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

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.main-content {
    margin-top: 100px;
    padding: 0;
}

/* Tlačítka */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-alt-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(191, 152, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(191, 152, 92, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

/* Styly pro odkazy v main obsahu */
main a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

main a:hover {
    color: var(--text-accent);
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

/* Hero sekce - společné styly */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--text-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Responsive design - společné breakpointy */
@media (max-width: 767px) {
    .main-content {
        margin-top: 80px;
    }

    .hero-section {
        padding: 4rem 0;
        border-radius: 0 0 20px 20px;
    }

    .container {
        padding: 0 1.5rem;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1400px) {
    .container {
        padding: 0 4rem;
    }
} 