

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg.active {
    opacity: 1;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    transition: 0.3s;
}

.socials a:hover {
    transform: scale(1.2);
}

.socials a:nth-child(1) svg { fill: #1877f2; } /* FB */
.socials a:nth-child(2) svg { fill: #000; }     /* X */
.socials a:nth-child(3) svg { fill: #e1306c; } /* IG */
.socials a:nth-child(4) svg { fill: #ff0000; } /* YT */
.socials a:nth-child(5) svg { fill: #25f4ee; } /* TikTok */
/* HERO */
.hero {
    height: 100vh;
    background: url('/assets/img/bg.jpg') center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* logo jako kruh */
.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    margin-bottom: 20px;
}

/* text */
.hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-page {
    padding: 80px 20px;
    background: #f5f5f5;
}

.container {
    max-width: 900px;
    margin: auto;
}

.about-page h1 {
    margin-bottom: 20px;
}

.about-page p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-page ul {
    margin-top: 20px;
}

.about-page {
    padding: 80px 40px;
    background: #f5f5f5;
}

.about-container {
    max-width: 1100px;
    margin: auto;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-title {
    font-size: 40px;
    font-weight: bold;
}

.about-text {
    line-height: 1.6;
}

.about-list {
    padding-left: 20px;
}
/* menu uprostřed */
.hero-menu a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

/* ABOUT */
.about {
    background: #eee;
    padding: 60px 20px;
}

.right a {
    color: black;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    gap: 50px;
}

.container .left,
.container .right {
    flex: 1;
}



/* dropdown wrapper */
.dropdown {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 25px;
}

.dropdown-home {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    
}

.dropdown-home1 {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    padding-left: 15px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: white;
    min-width: 150px;
    z-index: 1000;
}

.dropdown-content.active {
    display: block;
}

.dropdown-content a {
    color: #222;       /* text tmavý */
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px!important;
}



@media (max-width: 768px) {

    .dropdown-content {
        position: static;
        display: none;
        padding-left: 10px;
    }

    .dropdown-content.active {
        display: block;
    }

    .dropdown {
        font-size: 15px;
    }
}

.menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .menu {
        display: flex;
        flex-direction: column;
        gap: 10px; /* mezery */
    }
}

.order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.order-table th,
.order-table td {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.order-table img {
    border-radius: 6px;
}


.total {
    text-align: right;
    font-size: 18px;
    margin: 15px 0;
}

.checkout {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.checkout h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.form-row {
    display: flex;
    gap: 40px;
    width: 94%;
}

.btn {
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background: #218838;
}

.radio-group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.radio-box {
    border: 2px solid #ccc;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
}

.radio-box input {
    display: none;
}

.radio-box:has(input:checked) {
    border-color: #28a745;
    background: #e6f4ea;
}

.zakaznik{
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}