@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap'); /* font na nadpisy */
@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&display=swap'); /* font na texty */

/* zakladni nastaveni pro celou stranku */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Caudex", serif;
}

/* font a barva pro nadpisy */
* h1, h2, h3, .gold-title{
font-family: "Cinzel", serif;
    color: #cd9948;
}


html {
    scroll-behavior: smooth;
}

body {
    background: #0b0f1a;
    color: #fff;
    font-family: "Caudex", serif;
    overflow-x: hidden;
}




/* header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 20px 40px;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(10px);
}

.logo img { height: 40px; }

/* horni menu */
nav {
    display: flex;
    gap: 30px;
    margin-left: auto; 
    margin-right: 40px;
}
nav a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav a:hover { color: #cd9948; }

nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #cd9948;
    transition: 0.3s;
}

nav a:hover::after { width: 100%; }

/* hero sekce */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(11, 15, 26, 0.6), rgba(11, 15, 26, 0.6)), 
                url("obrázky/hlavniobrazek.png") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 { font-size: 5.5rem; }
.hero p { font-size: 1.5rem; margin-top: 20px; }

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #cd9948;
}
/* sipka na scrollnuti dolu */
.arrow {
    width: 25px;
    height: 25px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}
/* animace sipky */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-12px) rotate(45deg); }
    60% { transform: translateY(-6px) rotate(45deg); }
}

/* sekce kdo jsme */
.microsite-sekce {
    max-width: 900px;
    margin: 0 auto 70px auto;
    padding: 100px 20px 0;
    text-align: center;
}

.microsite-sekce p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}
/* sekce s kartami grafik/koder */
.nabor-sekce {
    padding: 100px 40px;
    text-align: center;
}

.gold-title {
    font-size: 3rem;
    margin-bottom: 50px;
}

.nabor-kontejner {
    display: flex;
    justify-content: center;
    gap: 200px; 
    flex-wrap: wrap;
}

.nabor-karta {
    width: 320px;
    transition: 0.4s ease-in-out;
}

.nabor-karta img { width: 100%; }

.nabor-karta:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(205, 153, 72, 0.4));
}
/* footer */
footer {
    text-align: center;
    padding: 40px;
    color: #777;
    font-size: 14px;
    border-top: 1px solid #1f2937;
    background: rgba(0, 0, 0, 0.12);
}

/* responzivita */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    .nabor-kontejner { gap: 40px; }
    .nabor-karta { width: 100%; max-width: 300px; }
}

/* responzivita */
@media (max-width: 768px) {

/* hamburger menu */

@media (max-width: 768px) {
    header {
        padding: 15px 25px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1100;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        background: #cd9948;
        border-radius: 3px;
        transition: 0.3s ease-in-out;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;  
        height: 100vh;
        background: rgba(10, 15, 26, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin: 0;
        transition: 0.4s ease-in-out;
        z-index: 1050;
    }

    nav.active {
        right: 0; 
    }

    nav a {
        font-size: 1.5rem;
        font-family: "Cinzel", serif;
    }

    /* skryti hamburger na pc */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

}}