* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
       font-family: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    
    background: #0A0E17;
    color: #E8EDF5;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --red: #e0553c;
    --navy: #0F1A2E;
    --card: #111b2a;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* NAVBAR */
nav {
    position: fixed;
    width: 100%;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: "Space Grotesk", monospace;
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    position: relative;
    font-weight: 500;
    transition: 0.2s;
}
nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--red);
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}
nav a:hover::after {
    width: 100%;
}
nav a:hover {
    color: var(--red);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A0E17, #0F1A2E);
    position: relative;
}
.figures {
    
    font-size: 145px;
    scale: 250%;
    color: #aab6c5;
    opacity: 0.5;
    font-family: monospace;
    pointer-events: none;
    text-align: center;
}
.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero h1 span {
    color: var(--red);
}
.hero p {
    color: #aab6c5;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.5;
}
.btn {
    background: var(--red);
    padding: 12px 28px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: "Space Grotesk";
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(224, 85, 60, 0.3);
    background: #c44a33;
}

/* SECTIONS */
section {
    padding: 90px 0;
}
h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-family: "Space Grotesk", monospace;
}
h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--red);
    margin-top: 8px;
}
p.sub {
    color: #8fa3b8;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* GRID za kartice */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.card {
    background: var(--card);
    padding: 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    top: -100%;
    left: 0;
    transition: 0.5s;
}
.card:hover::before {
    top: 100%;
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}
.card i {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
    display: block;
}
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.card p {
    color: #b0c4de;
    line-height: 1.5;
}
.card img {
    width: 100%;
    height: auto;
}
/* AKTUELNOSTI (news section) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.news-card {
    background: var(--card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: 0.3s;
}
.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}
.news-card-content {
    padding: 24px;
}
.news-date {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.news-card p {
    color: #b0c4de;
    line-height: 1.5;
    margin-bottom: 20px;
}
.btn-small {
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}
.btn-small:hover {
    background: var(--red);
    color: white;
}

/* Facebook CTA */
.fb-card {
    background: linear-gradient(135deg, rgba(224,85,60,0.1), rgba(10,14,23,0.9));
    border: 1px solid rgba(224,85,60,0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}
.fb-card i {
    font-size: 3rem;
    color: #1877F2;
    margin-bottom: 15px;
}
.fb-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.fb-card .btn-fb {
    background: #1877F2;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.3s;
}
.fb-card .btn-fb:hover {
    background: #0d5bbf;
    transform: translateY(-3px);
}

/* KONTAKT */
.contact-box {
    background: var(--card);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}
.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}
.contact-info {
    flex: 1;
}
.contact-form {
    flex: 1;
}
input, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    background: #0A0E17;
    border: 1px solid #1f2c40;
    color: white;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--red);
}
.social-icons {
    margin-top: 1rem;
}
.social-icons i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--red);
    cursor: pointer;
    transition: 0.2s;
}
.social-icons i:hover {
    opacity: 0.7;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #1f2c40;
    color: #7e8c9e;
}

/* ANIMATIONS */
.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}
.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .figures {
        scale: 140%;
    }
    .hero h1 { font-size: 36px; }
    .nav-wrap { flex-direction: column; gap: 10px; }
    nav a { margin: 0 12px; }
    section { padding: 60px 0; }
    .contact-flex { flex-direction: column; }
}
H2, nav a, h1 {
    text-transform: uppercase;
}