/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #141414;
    color: #ffffff;
    font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

/* H1 in main content should be green */
main h1 {
    color: var(--primary-color);
}

/* CSS Variables */
:root {
    --primary-color: #75FB99;
    --background-color: #141414;
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --border-color: #333;
    --gradient-primary: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    --gradient-scrolled: linear-gradient(180deg, rgba(20,20,20,0.98) 0%, rgba(20,20,20,0.8) 50%, transparent 100%);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: rgba(109, 109, 110, 0.7);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: rgba(109, 109, 110, 0.4);
}

.btn-secondary {
    background-color: #ffffff;
    color: #000000;
}

.btn-secondary:hover {
    background-color: #e6e6e6;
}

.btn-primary::before {
    content: "▶";
    margin-right: 8px;
}


.btn-support {
    background-color: #75FB99;
    color: #000000;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    display: block;
    padding: 10px 30px;
}

.btn-support:hover {
    background-color: #5ee080;
}

/* Content Sections */
.content {
    padding: 0 60px;
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e5e5e5;
}

/* H1 with section-title class should be green */
main h1.section-title {
    color: var(--primary-color);
}

/* Mobile responsive - hide "Prehrať" button in hero section */
@media (max-width: 768px) {
    .hero-slide .btn-primary {
        display: none;
    }
}
