/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    background: linear-gradient(
        180deg,
        #0b1a2b 0%,
        #050d18 100%
    );

    color: #ffffff;
}


/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 40px;

    background-color: rgba(10, 26, 47, 0.95);

    border-bottom: 1px solid rgba(242, 202, 80, 0.4);

    backdrop-filter: blur(6px);

    z-index: 1000;
}


/* LOGO */

.logo img {
    height: 80px;
    width: auto;
    display: block;

    transform: scale(2.5);
    transform-origin: left center;
    margin-left: -40px;

    filter: drop-shadow(
        0 0 6px rgba(242, 202, 80, 0.4)
    );
}


/* MENU */

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;

    color: #ffffff;

    font-size: 15px;
    font-weight: bold;

    letter-spacing: 1px;
    text-transform: uppercase;

    position: relative;

    transition: 0.3s;
}


/* underline efekt */

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: linear-gradient(
        90deg,
        #F2CA50,
        #FFD700
    );

    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #FFD700;
}


/* HERO */

.hero {

    padding: 100px 20px 70px;

    text-align: center;

    background: linear-gradient(
        180deg,
        #0b1a2b 0%,
        #081321 100%
    );
}


/* NADPIS */


/* NADPIS */

/* NADPIS */

.hero h1 {

    font-family: "Archivo Black", sans-serif;

    font-size: 58px;

    font-weight: 400;

    text-transform: uppercase;

    letter-spacing: 1px;

    line-height: 1.1;

    text-align: center;

    margin-bottom: 20px;

    background: linear-gradient(
    180deg,
    #FFF2A6 0%,
    #FFD700 45%,
    #F2CA50 100%
);
    
    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

    text-shadow:
    0 0 8px rgba(255,215,0,.35),
    0 0 18px rgba(255,215,0,.15),
    0 3px 8px rgba(0,0,0,.45);
}


/* LINKA */

.hero h1::after {

    content: "";

    display: block;

    width: 180px;

    height: 2px;

    margin: 22px auto 0;

    background: linear-gradient(
        90deg,
        transparent,
        #f0b608,
        #FFD700,
        #F2CA50,
        transparent
    );

    box-shadow: 0 0 12px rgba(255,215,0,.4);
}


/* ZLATÁ LINKA POD NADPISEM */

.hero h1::after {

    content: "";

    display: block;

    width: 180px;

    height: 2px;

    margin: 22px auto 0;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        transparent,
        #F2CA50,
        #FFD700,
        #F2CA50,
        transparent
    );

    box-shadow:
        0 0 10px rgba(242,202,80,.35);
}
/* ADRESA */

.hero-address {

    font-size: 18px;

    color: #bbbbbb;

    margin-bottom: 45px;

    line-height: 1.6;
}
/* SOCIÁLNÍ TLAČÍTKA */

/* SOCIÁLNÍ IKONY */

.hero-social {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-bottom: 45px;
}

.hero-social a {

    width: 64px;
    height: 64px;

    display: flex;

    justify-content: center;
    align-items: center;

    border: 2px solid #F2CA50;

    border-radius: 50%;

    color: #F2CA50;

    font-size: 30px;

    text-decoration: none;

    transition: .3s;
}

.hero-social a:hover {

    background: rgba(242,202,80,.12);

    transform: translateY(-5px);

    box-shadow:
        0 0 18px rgba(242,202,80,.45);
}

.btn {

    text-decoration: none;

    padding: 13px 28px;

    border-radius: 10px;

    border: 1px solid #F2CA50;

    color: #FFD700;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 1px;

    transition: .3s;

    background: rgba(255,255,255,.03);
}

.btn:hover {

    transform: translateY(-3px);

    background: rgba(242,202,80,.12);

    box-shadow:
        0 0 18px rgba(242,202,80,.35);
}

.btn-instagram,
.btn-facebook {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 170px;
}


/* PRICE BOXY */

.price-boxes {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}


.price-box {

    background: linear-gradient(
        180deg,
        #081321 0%,
        #050d18 100%
    );

    border: 1px solid rgba(242, 202, 80, 0.4);

    border-radius: 12px;

    padding: 28px;

    width: 280px;

    transition: 0.3s;
}


/* HOVER */

.price-box:hover {

    transform: translateY(-8px);

    border-color: #FFD700;

    box-shadow:
        0 0 25px rgba(242, 202, 80, 0.25),
        inset 0 0 10px rgba(242, 202, 80, 0.08);
}


.price-box h2 {

    font-size: 21px;

    margin-bottom: 10px;

    color: #FFD700;

    letter-spacing: .5px;
}

.desc {

    font-size: 14px;

    color: #b8c2cc;

    margin-bottom: 15px;

    line-height: 1.5;
}

.price {

    font-size: 26px;

    font-weight: bold;

    color: #ffffff;

    letter-spacing: 1px;
}


/* ÚROKY */

.uroky {

    padding: 90px 20px;

    text-align: center;
}

.uroky h1 {

    font-size: 40px;

    margin-bottom: 15px;

    background: linear-gradient(
        90deg,
        #F2CA50,
        #FFD700
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.uroky-info {

    margin-bottom: 30px;

    color: #e0e0e0;
}


/* TABULKA */

.uroky-table {

    margin: auto;

    border-collapse: collapse;

    width: 90%;
    max-width: 700px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(8, 19, 33, .35);

    backdrop-filter: blur(6px);
}

.uroky-table th {

    background-color: #081321;

    color: #FFD700;

    padding: 14px;

    border: 1px solid rgba(242, 202, 80, .4);

    letter-spacing: 1px;
}

.uroky-table td {

    padding: 14px;

    border: 1px solid rgba(255,255,255,.12);
}

.uroky-table tr:hover {

    background-color: rgba(242, 202, 80, .08);
}


/* FOOTER */

.footer {

    background: linear-gradient(
        180deg,
        #081321 0%,
        #050d18 100%
    );

    border-top: 1px solid rgba(242, 202, 80, .4);

    padding: 60px 20px;
}

.footer-content {

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    max-width: 1100px;

    margin: auto;

    gap: 35px;
}

.footer-section {

    min-width: 200px;
}

.footer-section h2 {

    color: #FFD700;

    margin-bottom: 18px;

    font-size: 18px;

    letter-spacing: 1px;
}

.footer-section p {

    font-size: 14px;

    color: #b8c2cc;

    line-height: 1.7;
}

.footer-section a {

    text-decoration: none;

    color: #ffffff;

    transition: .3s;
}

.footer-section a:hover {

    color: #FFD700;
}


/* RESPONSIVE */

@media (max-width:768px) {

    .navbar {

        flex-direction: column;

        gap: 10px;

        padding: 15px;
    }

    .nav-menu {

        gap: 15px;

        flex-wrap: wrap;

        justify-content: center;
    }

    .hero h1 {

        font-size: 34px;
    }

    .price-box {

        width: 100%;

        max-width: 350px;
    }

    .footer-content {

        flex-direction: column;

        text-align: center;
    }

}