body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #0e0e0e;
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1, h2 {
    font-weight: 800;
    text-transform: uppercase;
}

/* HEADER */

.site-header {
    position: fixed;
    pointer-events: auto;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BRAND */

.brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand a:hover img {
    transform: scale(1.2);
}

.brand img {
    height: 48px;
    width: auto;
    transition: 0.3s ease;
}

.brand span {
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 1.8px;
    color: #fff;
}

/* NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-link {
        display: none;
    }
}

/* CTA */

.nav-cta {
    background: #f5c518;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-cta:hover {
    background: #ffd900;
    transform: translateY(-2px);
}

/* HERO FULL BACKGROUND IMAGE */

.hero {
    position: relative;
    padding-top: 80px;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Fullscreen image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* kľúčové */
    object-position: center;
    z-index: 0;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 20%,
        rgba(0,0,0,0.4) 60%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}

/* Content above image */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Text styling */
.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(48px, 7vw, 112px);
    letter-spacing: 3px;
    line-height: 0.95;
    margin-bottom: 30px;
}

.hero-text h1 span {
    color: #f5c518;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
}

/* Button upgrade */

.btn-primary {
    background: #f5c518;
    color: #000;
    padding: 18px 36px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #ffd900;
    transform: translateY(-4px);
}

.product-section {
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-image {
    flex: 1;
    display: flex;
}

.product-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: #0e0e0e;
    border-radius: 20px;
}

.product-info p{
    font-size:18px;
    color:#ffffff;
    text-align:justify;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefits li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    color: #ccc;
    letter-spacing: 0.3px;
    text-align: justify;
}

/* Elegant bullet */

.benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, #888, #444);
    box-shadow: 0 0 6px rgba(255,255,255,0.1);
}

.product-image-full {
    margin-top: 60px;
}

.product-image-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.product-image img,
.product-image-full img{
    transition: transform .5s ease;
}

.product-image img:hover,
.product-image-full img:hover{
    transform: scale(1.03);
}

.feature-dark {
    background: #111;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.feature-light {
    background: #f5c518;
    color: #000;
    padding: 100px 0;
    text-align: center;
}

.feature-light h2 {
    color: #000;
}

.center {
    text-align: center;
}

.big {
    font-size: 20px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 0px
    }
}

/* ============================= */
/* LEGAL PAGE (GDPR, OP, atď.) */
/* ============================= */

.legal-page {
    padding: 140px 0 100px 0;
    background: #0e0e0e;
}

.legal-container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f5c518;
}

.legal-section p {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #ccc;
    line-height: 1.7;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f5c518;
}

.legal-section a {
    color: #f5c518;
    text-decoration: none;
    font-weight: 600;
}

.legal-section a:hover {
    color: #ffd900;
}

.legal-section a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 80px 0;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .legal-section h2 {
        font-size: 18px;
    }
}

/* ============================= */
/* FOOTER */
/* ============================= */

.site-footer {
    background: #0b0b0b;
    border-top: 1px solid #1c1c1c;
    padding: 20px 0;
}


.footer-brand {
    margin: 0;
    color: #aaa;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer-brand strong {
    color: #fff;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-block;
    text-decoration: none;
    color: #888;
    font-size: 14px;
    transition: 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #f5c518;
}

.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #f5c518;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;

}

.footer-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #f5c518;
}

.footer-nav-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-small {
    font-size: 13px;
    color: #666;
}

.footer-social {
    font-size: 13px;
    color: #aaa;
}

.footer-social:hover {
    color: #f5c518;
}

.footer-nav-vertical a,
.footer-contact a {
    align-self: flex-start;
}

.footer-credits{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid #1c1c1c;
    text-align:center;
    font-size:12px;
    color:#555;
}

.footer-credits a{
    color:#777;
    text-decoration:none;
    margin-left:6px;
    transition:.3s;
}

.footer-credits a:hover{
    color:#f5c518;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .product-info p{
        text-align:left;
    }
    .benefits li {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}