/* ====== GLOBAL ====== */
body {
    font-family: Arial, sans-serif;
    background-image: url("../images/supreme_pozadi_v2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #111;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;

}
main {
    min-height: calc(100vh - 120px);
    box-sizing: border-box;
    padding: 20px;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}

.navbar {
    background: #000;
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.navbar, main, footer {
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 15px;
    transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
    color: #e50000;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    background-color: white;
    height: 3px;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .navbar-inner {
        justify-content: space-between;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #000;
        height: 100vh;
        flex-direction: column;
        justify-content: start;
        gap: 35px;
        padding-top: 80px;
        transform: translateY(-120%);
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }
}
/* OVERLAY PRO MENU */
.no-scroll {
    overflow: hidden;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ====== O ZNAČCE ====== */
.about {
    background: #fff;
    color: #111;
    padding: 60px 20px;
    min-height: 80vh;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about h1 {
    text-align: center;
    font-size: 45px;
    margin-bottom: 40px;
    color: #000000;
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about-content img,
.about-content video {
    width: 100%;
    max-width: 850px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    max-width: 900px;
    font-size: 17px;
    line-height: 1.7;
    text-align: center;

    background: white;
    padding: 30px;
    border-radius: 12px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.about-text p {
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content img {
        width: 100%;
        max-width: 400px;
    }
}

/* ====== KONTAKT ====== */
.contact {
    background: #fff;
    padding: 60px 20px;
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}


.contact h1 {
    text-align: center;
    color: #e50000;
    margin-bottom: 25px;
}

.contact label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.contact button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #e50000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #b30000;
}

.success {
    color: green;
    text-align: center;
}

.error {
    color: red;
    text-align: center;
}

/* ====== KOLEKCE, NOVINKY & LOOKBOOK (LIST) ====== */
.kolekce,
.novinky,
.lookbook {
    padding: 60px 20px;
    background: #fff;
}

.kolekce h1,
.novinky h1,
.lookbook h1 {
    text-align: left;
    color: #000000;
    font-size: 32px;
    margin-bottom: 40px;
}

.kolekce-container,
.novinky-container,
.lookbook-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
}

.kolekce-item,
.novinky-item,
.lookbook-item {
    width: 280px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.kolekce-item:hover,
.novinky-item:hover,
.lookbook-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.kolekce-item img,
.novinky-item img,
.lookbook-item img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #fff;
    box-sizing: border-box;
}

.kolekce-item h2,
.novinky-item h2,
.lookbook-item h2 {
    font-size: 18px;
    color: #111;
    margin: 15px 0 5px 0;
    font-weight: bold;
}

.kolekce-item p,
.novinky-item p,
.lookbook-item p {
    font-size: 14px;
    color: #444;
    margin: 0 15px 15px;
    line-height: 1.6;
}

/* ====== DETAIL – KOLEKCE, NOVINKY & LOOKBOOK ====== */
.kolekce-detail,
.novinky-detail,
.lookbook-detail {
    padding: 60px 20px;
    background: #fff;
}
.kolekce-link {
    color: #e50000;
    text-decoration: none;
    font-weight: bold;
}

.kolekce-link:visited {
    color: #e50000;
}

.kolekce-link:hover {
    text-decoration: underline;
}
.kolekce-detail-container,
.novinky-detail-container,
.lookbook-detail-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.kolekce-detail-container h1,
.novinky-detail-container h1,
.lookbook-detail-container h1 {
    color: #e50000;
    font-size: 28px;
    margin-bottom: 25px;
}

.kolekce-detail-container img,
.novinky-detail-container img,
.lookbook-detail-container img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.kolekce-detail-container p,
.novinky-detail-container p,
.lookbook-detail-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}
.back-btn {
    display: inline-block;
    background: #e50000;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-top: 35px !important;
    }



.back-btn:hover {
    background: #b00000;
}

.lookbook-card {
    text-align: center;
    width: 280px;
}

.like-box {
    display: flex;
    justify-content: center;
    gap: 25px !important;
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

/* Společné nastavení */
.like-btn,
.dislike-btn {
    padding: 12px 22px !important;
    border-radius: 28px !important;
    font-size: 17px !important;
    font-weight: bold !important;
    color: white !important;
    border: none !important;
    cursor: pointer;
    transition: 0.2s !important;
}

.like-btn {
    background: #28a745 !important;
}
.like-btn:hover {
    background: #218838 !important;
}

.dislike-btn {
    background: #dc3545 !important;
}
.dislike-btn:hover {
    background: #c82333 !important;
}

.site-shell{
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 18px;
}

.site-card{
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px 30px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 30px;
    max-width: 700px;
    color: #555;
    margin: 0;
}

.brand-video {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
}

.hero-logo {
    text-align: center;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.hero-logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-side {
    width: 170px;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 auto;
}

.left {
    transform: rotate(-4deg);
}

.right {
    transform: rotate(4deg);
}

@media (max-width: 768px) {
    .hero {
        padding: 35px 15px 25px;
    }

    .hero-content {
        flex-direction: column;
        gap: 18px;
    }

    .hero-logo img {
        max-width: 220px;
    }

    .hero-side {
        width: 130px;
    }

    .left,
    .right {
        transform: none;
    }

    .hero p {
        font-size: 18px;
    }
}

section,
.kolekce,
.lookbook,
.about,
.contact,
.admin-section {
    background: transparent !important;
}


.hero p {
    display: inline-block;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 14px 22px;
    border-radius: 10px;
    color: #111;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}