/*
Theme Name: RC CARPATY Custom Theme
Theme URI: https://rccarpaty.sk
Author: Custom RC Carpaty Developer
Description: Bezpečná, ultra-rýchla a moderná šablóna pre klub RC expedícií a modelárov RC CARPATY.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: rccarpaty
*/

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #1e232a;
    --bg-card: #282e38;
    --bg-light: #f4f6f8;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --text-light: #f3f4f6;
    --primary-green: #2d5a27;
    --accent-orange: #e65100;
    --accent-hover: #f57c00;
    --border-color: #374151;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

/* --- HEADER & NAVIGATION --- */
.site-header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.site-title span {
    color: var(--accent-orange);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.main-navigation a {
    color: #e5e7eb;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-orange);
}

/* --- HERO SECTION --- */
.hero-logo-wrapper {
    margin-bottom: 20px !important;
    display: flex !important;
    justify-content: center;
    width: 100% !important;
}

.hero-logo {
    max-width: 200px !important; /* Nastavte požadovanú veľkosť loga */
    height: auto !important;
    display: block !important;
}
/*
.hero-section {
    background: linear-gradient(135deg, rgba(30, 35, 42, 0.9) 0%, rgba(45, 90, 39, 0.85) 100%), 
              /*  url('https://www.rccarpaty.sk/wp-content/uploads/2026/08/rccarpaty_pozadie_web-01.jpg') center/cover no-repeat;*/
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}*/

.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--bg-dark);
}

/* --- CONTAINER & LAYOUT --- */
.container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--bg-dark);
    text-transform: uppercase;
    border-left: 5px solid var(--accent-orange);
    padding-left: 1rem;
}

/* --- CARDS & GRID --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--bg-dark);
}

/* --- ABOUT & PAGE CONTENT STYLES --- */
.about-block {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.page-content h2 {
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin: 1.8rem 0 1rem 0;
}

.page-content h3 {
    font-size: 1.25rem;
    color: var(--bg-dark);
    margin: 1.5rem 0 0.8rem 0;
}

.page-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.page-content ul, .page-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--bg-dark);
    color: #9ca3af;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
    border-top: 4px solid var(--accent-orange);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.875rem;
}

/* --- RESPONSIVE MOBILE MENU --- */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
}
