/* --- ZÁKLADNÉ NASTAVENIA A FARBY --- */
:root {
    --copper: #c5834f;
    --copper-hover: #e09f6a;
    --dark-bg: #0d1117;
    --card-bg: #1a1e24;
    --text-light: #e6e6e6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- ZÁKLADNÉ NASTAVENIA --- */
html {
    scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* Definitívne skrytie technického checkboxu pre celé menu */
.menu-toggle {
    display: none !important;
}

/* Skrytie trojčiarky na počítači */
.hamburger {
    display: none;
}

/* --- HLAVIČKA A MENU --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #05080c;
    border-bottom: 1px solid rgba(197, 131, 79, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 100px; 
    text-decoration: none;
}

.logo-link .main-logo {
    height: 170px; 
    width: auto;
}

.header-motto {
    width: 200px;
    height: 140px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--copper);
}

/* Štýlovanie domčeka v menu */
.home-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.home-icon-link svg {
    display: block;
}

.home-icon-link:hover {
    color: var(--copper);
}

/* --- HERO SEKCIA --- */
.hero-section {
    display: flex;
    min-height: 80vh;
    background-color: #11141a;
    background-image: linear-gradient(to right, rgba(17, 20, 26, 0) 55%, #11141a 83%), url('../img/mramor.png');
    background-size: cover;
    background-position: left center;
}

.hero-left {
    flex: 1; 
    background: none; 
}

.hero-right {
    flex: 1;
    background-color: transparent; 
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px 8%;
}

.motto-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 100px; 
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--copper);
    background-color: rgba(13, 17, 23, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 15px rgba(197, 131, 79, 0.3);
}

.motto-text {
    font-family: var(--font-heading);
    color: var(--copper);
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.2;
}

.hero-content {
    max-width: 650px;
}

.one-line-title {
    font-family: var(--font-heading);
    font-weight: 600; 
    font-size: 2.9rem;
    color: var(--copper);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero-sub {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-desc {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.btn-pearlescent {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #ffdf73 30%, #fff2cd 50%, #d4af37 80%, #aa7c11 100%);
    color: #0d1117;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-pearlescent:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* --- SEKCIA FAKTY --- */
.facts-section {
    padding: 60px 5%;
    background-color: #05080c; 
    display: flex;
    flex-direction: column; 
    gap: 40px;
    align-items: center;
}

.fact-box {
    text-align: center;
    max-width: 400px;
    padding: 0 20px;
}

.fact-box h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--copper); 
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fact-box p {
    color: #e6e6e6;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .facts-section {
        flex-direction: row; 
        justify-content: center;
        align-items: stretch;
        gap: 0;
        padding: 80px 10%;
    }

    .fact-box {
        flex: 1;
        border-right: 1px solid rgba(197, 131, 79, 0.3); 
    }

    .fact-box:last-child {
        border-right: none; 
    }
}

/* --- SEKCIA KARIET SLUŽIEB --- */
.services-section {
    padding: 80px 5%;
    background-color: #0d1117;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    border: 1px solid #2a2e35;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--copper);
}

.card-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-family: var(--font-heading);
    color: var(--copper);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card-content p {
    color: #a0a0a0;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.card-link {
    color: var(--copper);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #ffffff;
}

/* --- ODKUP POHĽADÁVOK BANNER (NOVÉ) --- */
.buyout-banner {
    padding: 80px 5%;
    background: linear-gradient(rgba(13, 17, 23, 0.9), rgba(13, 17, 23, 0.9)), url('../img/tenky-mramor.png');
    background-size: cover;
    background-attachment: fixed;
    border-top: 1px solid rgba(197, 131, 79, 0.3);
    border-bottom: 1px solid rgba(197, 131, 79, 0.3);
}

.buyout-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.buyout-text {
    flex: 1.2;
}

.buyout-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.buyout-text p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.buyout-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.buyout-features li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.buyout-image {
    flex: 0.8;
    position: relative;
}

.buyout-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--copper);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 1024px) {
    .buyout-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .buyout-text h2 { font-size: 2.2rem; }
    .buyout-image { order: -1; width: 100%; }
    .buyout-features li { justify-content: center; }
}

/* --- POROVNANIE (GRAF) --- */
.comparison-section {
    padding: 80px 5%;
    background-color: #0d1117;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; 
    gap: 50px;
}

.comparison-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--copper);
    margin-bottom: 20px;
}

.comparison-text p {
    color: #a0a0a0;
    max-width: 600px;
}

.comparison-graph {
    flex: 1;
}

.graph-item {
    margin-bottom: 30px;
}

.graph-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.bar-bg {
    background-color: #1a1e24;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.5s ease-in-out;
}

.internal-bar { width: 32%; background-color: #4a4e57; }
.legal-bar { width: 55%; background-color: #7b7f87; }
.expert-bar { 
    width: 88%; 
    background: linear-gradient(90deg, #c5834f, #ffdf73);
    box-shadow: 0 0 15px rgba(197, 131, 79, 0.4);
}

.main-item .graph-label span:first-child {
    color: var(--copper);
    font-weight: 800;
}

@media (min-width: 1024px) {
    .comparison-container {
        flex-direction: row;
        align-items: center;
    }
    .comparison-text { flex: 1; }
    .comparison-graph { flex: 1.2; }
}

/* --- KONTAKT A DOPYT --- */
.contact-section {
    padding: 0; 
    background-color: #05080c;
}

.contact-container {
    display: flex;
    flex-direction: column; 
}

.contact-left {
    flex: 1;
    background-image: url('../img/contact-bg.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 300px;
}

.contact-left::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(5, 8, 12, 0.3); 
    z-index: 1;
}

.contact-left-content {
    position: relative;
    z-index: 2; 
    max-width: 500px;
}

.contact-left h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--copper);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-left p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-right {
    flex: 1;
    padding: 60px 5%;
    background-color: #0d1117; 
}

#consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 15px;
    background-color: #1a1e24;
    border: 1px solid rgba(197, 131, 79, 0.2);
    border-radius: 4px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--copper); 
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 5px;
    width: auto;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-checkbox a {
    color: var(--copper);
    text-decoration: none;
}

.contact-right .btn-pearlescent {
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    align-self: flex-start; 
    margin-top: 10px;
}

@media (min-width: 1024px) {
    .contact-container {
        flex-direction: row; 
        min-height: 600px;
    }

    .contact-left {
        text-align: left;
        align-items: flex-start;
        padding: 80px 8%;
    }
}

/* --- PÄTA WEBU (FOOTER) --- */
.main-footer {
    background-color: #05080c;
    color: #a0a0a0;
    padding: 60px 5% 20px;
    border-top: 1px solid rgba(197, 131, 79, 0.2);
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-bottom: 1px solid rgba(197, 131, 79, 0.2);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .icon {
    font-size: 1.8rem;
    color: var(--copper);
}

.contact-item h4 {
    color: var(--copper);
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-item a {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--copper);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-socials h4 {
    color: #ffffff;
    margin-right: 10px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #1a1e24;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--copper);
    transform: translateY(-3px);
}

.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--copper);
}

.company-info h3 {
    color: var(--copper);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.company-info p {
    margin-bottom: 5px;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #7b7f87;
    padding-top: 20px;
}

@media (min-width: 1024px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer-contact {
        flex-direction: row;
        gap: 50px;
    }
    .footer-middle {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-col {
        flex: 1;
    }
}

/* TLAČIDLO SPÄŤ HORE */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--copper);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    opacity: 0; 
    pointer-events: none; 
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: #e09f6a;
    transform: translateY(-5px);
}



/* --- COOKIE LIŠTA --- */
.cookie-banner {
    position: fixed;
    bottom: 15px; 
    left: 2%; 
    width: 96%; 
    background-color: rgba(13, 17, 23, 0.95);
    border: 1px solid rgba(197, 131, 79, 0.3); 
    border-radius: 8px; 
    color: #e6e6e6;
    padding: 12px 15px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; 
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(150%); 
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    text-align: center;
    font-size: 0.75rem; 
    line-height: 1.3;
}

.cookie-text a {
    color: var(--copper);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: row; 
    gap: 10px;
    width: 100%;
}

.btn-cookie-accept, .btn-cookie-reject {
    flex: 1; 
    padding: 8px 10px; 
    font-size: 0.75rem; 
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-cookie-accept {
    background: linear-gradient(90deg, #c5834f, #ffdf73);
    color: #000;
    border: none;
}

.btn-cookie-reject {
    background: transparent;
    color: #a0a0a0;
    border: 1px solid #a0a0a0;
}

@media (min-width: 1024px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--copper);
        padding: 15px 10%;
    }
    .cookie-text {
        text-align: left;
        max-width: 60%;
        font-size: 0.85rem;
    }
    .cookie-buttons {
        width: auto;
    }
    .btn-cookie-accept, .btn-cookie-reject {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* --- RESPONZIVITA (MOBILY) --- */
@media (max-width: 1024px) {
    .main-header {
        display: block !important;
        padding: 0 !important; 
        background-color: #05080c !important;
    }
    .header-motto {
        display: none !important; 
    }
    .logo-container {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .logo-link {
        display: block !important;
        width: 100% !important;
    }
    .logo-link .main-logo {
        width: 100vw !important; 
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .hamburger {
        display: flex !important; 
        position: fixed !important;
        bottom: 30px !important; 
        right: 35px !important; 
        background-color: #05080c !important;
        border: 2px solid var(--copper) !important;
        padding: 15px !important;
        border-radius: 50% !important; 
        z-index: 10000 !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.6) !important;
    }
    .main-nav {
        display: none !important; 
        position: fixed !important;
        bottom: 100px !important; 
        right: 20px !important;
        width: 250px !important;
        background-color: #05080c !important;
        border: 1px solid var(--copper) !important;
        border-radius: 10px !important;
        z-index: 9999 !important;
        padding: 10px 0 !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
    }
    .main-nav ul {
        flex-direction: column !important; 
        text-align: center !important;
        gap: 10px !important;
    }
    .main-nav a {
        font-size: 15px !important; 
        display: block !important;
        padding: 15px !important;
    }
    .menu-toggle:checked ~ .main-nav {
        display: block !important;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .hero-section {
        flex-direction: column !important;
        /* Odstránený gradient pre mobilné zobrazenie, zostáva len čistý mramor */
        background-image: url('../img/mramor.png') !important;
        background-position: center center !important; /* Vycentrovanie pre lepší výrez na mobile */
        min-height: auto !important;
    }
    .hero-left { display: none !important; }
    .hero-right {
        padding: 40px 5% !important;
        text-align: center !important; 
        display: block !important; 
    }
    .hero-content { margin: 0 auto !important; }
    .one-line-title {
        font-family: 'Playfair Display', serif !important; 
        font-weight: 600 !important; 
        font-size: 2rem !important; 
        white-space: normal !important; 
        letter-spacing: 1px !important;
    }
    .hero-sub { font-size: 1.4rem !important; }
    .hero-desc { font-size: 1.05rem !important; margin-bottom: 30px !important; }
    .cards-container {
        flex-direction: column !important; 
        gap: 20px !important;
    }
    .service-card { width: 100% !important; }
    .main-nav ul li:first-child {
        display: flex;
        justify-content: center;
        padding: 15px 0;
    }
}

/* --- DIZAJN PODSTRÁNKY O NÁS --- */
.about-page-content {
    background-color: #05080c; 
    color: #ffffff;
    background-image: 
        linear-gradient(rgba(5, 8, 12, 0.45), rgba(5, 8, 12, 0.55)), 
        url('../img/mramor.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}

.about-hero {
    position: relative;
    padding: 175px 5%;
    text-align: center;
    background-image: url('../img/sach.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 2px solid rgba(197, 131, 79, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(5, 8, 12, 0.65), rgba(5, 8, 12, 0.85));
    z-index: 1;
}

.hero-text-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.gold-text { 
    color: var(--copper); 
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 5%;
}

.about-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background: linear-gradient(145deg, #0a0d14, #05080c);
    border: 1px solid rgba(197, 131, 79, 0.15);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.about-block:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 131, 79, 0.4);
}

.about-block.reverse { 
    flex-direction: row-reverse; 
}

.block-icon {
    font-size: 3.5rem;
    flex: 0 0 80px;
    text-align: center;
    opacity: 0.8;
}

.block-text h2 {
    font-family: 'Playfair Display', serif;
    color: var(--copper);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.block-text p {
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.intro-p {
    font-size: 1.1rem !important;
    color: #ffffff !important;
    font-weight: 600;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #cccccc;
    line-height: 1.6;
}

.about-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--copper);
    font-size: 0.8rem;
}

.about-list li strong {
    color: #ffffff;
}

.ai-highlight {
    background: linear-gradient(145deg, rgba(197, 131, 79, 0.1), #05080c);
    border: 1px solid rgba(197, 131, 79, 0.4);
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 5%; 
    }
    .about-hero h1 { 
        font-size: 2.2rem; 
    }
    .about-block, .about-block.reverse {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    .about-list li { 
        text-align: left; 
    }
}

/* --- DIZAJN FAQ STRÁNKY --- */
.faq-page-content {
    background-color: #05080c;
    background-image: 
        linear-gradient(rgba(5, 8, 12, 0.55), rgba(5, 8, 12, 0.65)), 
        url('../img/tenky-mramor.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
}

.faq-hero {
    background-image: url('../img/sach.jpg') !important; 
}

@media (min-width: 769px) {
    .faq-hero {
        padding: 205px 5% !important; 
    }
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #0a0d14, #05080c);
    border: 1px solid rgba(197, 131, 79, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--copper);
    font-weight: 600;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #cccccc;
    line-height: 1.7;
}

.faq-item.active {
    border-color: var(--copper);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 500px; 
}

.faq-placeholder {
    text-align: center;
    padding: 100px 0;
    color: #888;
}

/* --- DIZAJN PODSTRÁNOK SLUŽIEB (MIMOSÚDNE, SÚDNE, EXEKÚCIE) --- */
.service-detail-page {
    background-color: #05080c;
    background-image: 
        linear-gradient(rgba(5, 8, 12, 0.85), rgba(5, 8, 12, 0.95)), 
        url('../img/tenky-mramor.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    padding-top: 100px;
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-title {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

/* --- ROZŠÍRENIE PRIESTORU PRE SLUŽBY --- */
.service-intro-section .content-container {
    max-width: 1400px; 
}

/* Rozloženie Text vs. Obrázok */
.service-layout {
    display: flex;
    gap: 60px; 
    align-items: center; 
    justify-content: space-between;
    margin-bottom: 80px;
}

.service-text-content {
    flex: 1; 
}

.service-featured-image {
    flex: 1.6; 
    display: flex;
    align-items: center;
    justify-content: flex-end; 
}

/* Oprava bannerov (benefitov) */
.service-benefits {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(145deg, rgba(26, 30, 36, 0.6), rgba(13, 17, 23, 0.6));
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(197, 131, 79, 0.3); 
    border-left: 3px solid var(--copper); 
}

/* TOTO SI OMYLOM ZMAZAL - Formátovanie vnútra boxov */
.benefit-icon {
    font-size: 2rem;
}

.benefit-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.benefit-item p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.image-wrapper {
    position: relative;
    display: block;
    width: 100%;
}
/* KONIEC CHÝBAJÚCEJ ČASTI */

.premium-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(197, 131, 79, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    display: block; 
}

.service-process {
    margin-bottom: 80px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--copper);
    text-align: center;
    margin-bottom: 40px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    background: linear-gradient(145deg, #11141a, #05080c);
    border: 1px solid #2a2e35;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    border-color: var(--copper);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(197, 131, 79, 0.15);
    position: absolute;
    top: 10px;
    right: 15px;
    font-weight: 700;
    line-height: 1;
}

.process-step h4 {
    color: var(--copper);
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.process-step p {
    color: #a0a0a0;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}



.service-cta {
    text-align: center;
    background: linear-gradient(145deg, rgba(197, 131, 79, 0.1), #05080c);
    border: 1px solid rgba(197, 131, 79, 0.3);
    padding: 50px 30px;
    border-radius: 8px;
}

.service-cta h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

@media (max-width: 1024px) {
    .service-layout {
        flex-direction: column;
    }
    .service-text-content {
        order: 2;
    }
    .service-featured-image {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-title { font-size: 2.2rem; }
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SÚDNE VYMÁHANIE - STAIRCASE LAYOUT (2 OBRÁZKY) --- */
.service-staircase-container {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Medzera medzi oboma riadkami */
    margin-bottom: 80px;
}

/* Resetujeme pôvodný service-layout pre tento kontajner */
.service-staircase-container .service-layout {
    margin-bottom: 0;
    align-items: center; /* Vertikálne zarovnanie na stred */
}

/* staircase trieda prehodí poradie flexboxu na desktope */
.service-layout.staircase {
    flex-direction: row-reverse;
}

/* Zväčšíme a upravíme priestor pre text a obrázky (50/50 alebo 45/55) */
.service-staircase-container .service-text-content {
    width: 45%;
}

.service-staircase-container .service-featured-image {
    width: 55%;
    display: flex;
    justify-content: center;
}

/* Úprava benefitov, aby neboli stlačené */
.service-text-content.benefits-only {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-text-content.benefits-only .service-benefits {
    width: 100%;
    margin-top: 0;
}

/* Responzivita pre tablety - vrátime to do stĺpca pod seba */
@media (max-width: 1024px) {
    .service-staircase-container .service-layout,
    .service-layout.staircase {
        flex-direction: column !important;
        gap: 40px;
    }

    .service-staircase-container .service-text-content,
    .service-staircase-container .service-featured-image {
        width: 100%;
    }

    /* Na tablete v prehodenom riadku chceme obrázok stále prvý */
    .service-layout.staircase .service-featured-image {
        order: 1;
    }
    .service-layout.staircase .service-text-content {
        order: 2;
    }
}

/* --- ZOZNAM ÚKONOV - AI GLASS EDITION --- */
.service-actions-section {
    margin: 80px 0;
    padding: 80px 5%;
    background: radial-gradient(circle at top left, rgba(197, 131, 79, 0.05), transparent);
    border-radius: 20px;
}

.actions-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--copper);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.action-item {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

/* Svetelný efekt pri hoveri */
.action-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(197, 131, 79, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.action-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(197, 131, 79, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.action-item:hover::before {
    opacity: 1;
}

.action-arrow {
    font-size: 1.4rem;
    color: var(--copper);
    background: rgba(197, 131, 79, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.action-item:hover .action-arrow {
    background: var(--copper);
    color: #000;
    transform: rotate(360deg);
}

.action-item p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.action-item:hover p {
    color: #ffffff;
}

/* Responzivita */
@media (max-width: 1024px) {
    .actions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .actions-grid { grid-template-columns: 1fr; }
}

/* --- OFICIÁLNE FARBY IKON PRI HOVER EFEKTE --- */
.contact-item:hover .fa-whatsapp {
    color: #25D366;
    transition: color 0.3s ease;
}

.social-icon .fa-facebook-f,
.social-icon .fa-instagram {
    font-size: 1.2rem; /* Trošku ich zväčšíme dnu v tom krúžku */
}

.social-icon:hover .fa-facebook-f {
    color: #1877F2;
}

.social-icon:hover {
    background-color: var(--card-bg); /* Resetne starý hover */
}

/* Instagram má špecifický farebný prechod */
.social-icon:hover:has(.fa-instagram) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

/* ======================================================== */
/* --- UNIVERZÁLNA RESPONZIVITA PRE TABLETY (Celý web) --- */
/* ======================================================== */

@media (max-width: 1024px) {
    /* 1. SEKCIA FAKTY: Na tablete 2 boxy vedľa seba (namiesto jedného dlhého) */
    .facts-section {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .fact-box {
        flex: 1 1 45% !important; 
        min-width: 300px;
        margin-bottom: 30px;
    }

    /* 2. SLUŽBY (KARTY): Nebudú obrovské na celú šírku, ale uložia sa pekne vedľa seba */
    .cards-container {
        flex-direction: row !important; 
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .service-card {
        flex: 1 1 45% !important;
        max-width: 48% !important; 
    }

    /* 3. PÄTIČKA (FOOTER): Kontakty a odkazy sa preorganizujú do 2 stĺpcov */
    .footer-middle {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
    .footer-contact {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 30px !important;
    }
}

/* ======================================================== */
/* --- POISTKA PRE MOBILY (Smartfóny do 768px) --- */
/* ======================================================== */

@media (max-width: 768px) {
    /* Na malom mobile to vrátime naspäť na 1 stĺpec pre lepšiu čitateľnosť */
    .fact-box {
        flex: 1 1 100% !important;
    }
    .service-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    .footer-middle {
        grid-template-columns: 1fr !important; 
    }
    .footer-contact {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}


/* --- KONEČNÁ OPRAVA: ROZTIAHNUTIE CELEJ SEKCIE A ZAROVNANIE OBRÁZKOV --- */

/* 1. Roztiahneme celú "krabicu", aby sme využili prázdne čierne miesto po bokoch */
.service-detail-page .content-container {
    max-width: 1400px !important;
}

/* 2. Obom riadkom (aj prvému s perom, aj druhému s čipom) nastavíme ROVNAKÉ proporcie */
.service-staircase-container .service-text-content {
    width: 50% !important; /* Text má vďaka roztiahnutiu webu teraz kopec miesta */
    padding-right: 40px; 
}

.service-staircase-container .service-featured-image {
    width: 50% !important; /* Oba obrázky budú vizuálne rovnako veľké */
}

/* 3. Zrušenie akéhokoľvek starého obmedzenia pre text */
.service-staircase-container .service-text-content p.intro-p {
    max-width: none !important;
}

/* 4. Responzivita: aby sa to nezlomilo na tablete */
@media (max-width: 1024px) {
    .service-staircase-container .service-text-content,
    .service-staircase-container .service-featured-image {
        width: 100% !important;
        padding-right: 0;
    }
}

/* --- ROZBAĽOVACIE MENU (DROPDOWN) PRE VYMÁHANIE --- */

.main-nav ul li.dropdown {
    position: relative; /* Rodičovský prvok musí byť relative, aby sme pod neho vedeli zavesiť menu */
}

/* Skryté podmenu v základe */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #05080c; /* Rovnaká čierna ako hlavička */
    min-width: 220px;
    border: 1px solid rgba(197, 131, 79, 0.3); /* Jemný medený rámik */
    border-top: 2px solid var(--copper); /* Zvýraznený horný okraj */
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
    border-radius: 0 0 5px 5px;
}

/* Odkazy vnútri podmenu */
.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    font-size: 0.9em;
    text-transform: none;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover efekt pre položky v podmenu */
.dropdown-menu li a:hover {
    background-color: rgba(197, 131, 79, 0.1);
    color: var(--copper);
}

/* Zobrazenie menu pri prejdení myšou (Hover) a animácia */
.main-nav ul li.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDropdown 0.3s ease forwards;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONZIVITA PRE MOBILNÉ MENU (HAMBURGER) --- */

@media (max-width: 1024px) {
    /* Podmenu už nebude plávať, ale stane sa súčasťou zoznamu */
    .dropdown-menu {
        position: static !important;
        display: none; /* V základe skryté */
        width: 100%;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--copper); /* Odlíšime ho medenou linkou na boku */
        background-color: rgba(255, 255, 255, 0.03); /* Veľmi jemné podfarbenie */
        padding-left: 20px;
        margin: 10px 0;
        animation: none; /* Na mobile netreba animáciu posunu */
    }

    /* Zobrazenie podmenu po ťuknutí na rodiča */
    .main-nav ul li.dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Odkazy v podmenu na mobile urobíme o niečo väčšie pre ľahšie ťukanie prstom */
    .dropdown-menu li a {
        padding: 15px 0;
        font-size: 1rem;
    }

    /* Šípka pri texte sa na mobile môže mierne zväčšiť */
    .main-nav ul li.dropdown i {
        float: right;
        margin-top: 5px;
    }
}

/* --- KOMPAKTNEJŠIE MOBILNÉ MENU A DROPDOWN --- */
@media (max-width: 1024px) {
    /* 1. Mierne zhustíme hlavné položky menu, aby neboli tak natiahnuté */
    .main-nav ul {
        gap: 2px !important; /* Zmenšená medzera medzi hlavnými odkazmi */
        max-height: 70vh !important; /* PRIDANÉ: Obmedzí výšku menu na 70% obrazovky */
        overflow-y: auto !important; /* PRIDANÉ: Zapne vnútorné scrollovanie prstom/myšou */
    }
    
    .main-nav a {
        padding: 12px 15px !important; /* Zmenšené z pôvodných 15px */
    }

    /* 2. Oprava rozbitých medzier priamo v rozbaľovacom podmenu */
    .main-nav ul .dropdown-menu {
        gap: 0 !important; /* Toto odstráni tú nerovnomernú dieru medzi položkami */
        padding: 5px 0 10px 0 !important;
        margin: 0 !important;
    }

    /* 3. Zhustenie samotných odkazov v podmenu (Súdne, Exekučné...) */
    .main-nav ul .dropdown-menu li a {
        padding: 8px 15px !important; /* Výrazne menšie riadkovanie pre podkategórie */
        font-size: 0.95rem !important; /* Trošku menšie písmo pre vizuálne odlíšenie */
        color: #cccccc !important; /* Jemne sivá farba, aby to neťahalo oči tak ako hlavné menu */
    }
}

/* --- ZOBRAZENIE PODMENU NA MOBILOCH (TRVALO ROZBALENÉ V HAMBURGERI) --- */
@media (max-width: 1024px) {
    /* Podmenu bude v hamburgeri vždy viditeľné ako pekný "strom" odkazov */
    .main-nav ul .dropdown-menu {
        display: block !important; 
    }
    
    /* Skryjeme malú šípku, keďže ponuka je už trvalo rozbalená a netreba na ňu ťukať */
    .main-nav ul li.dropdown > a > i {
        display: none !important; 
    }
}

/* --- POSTUPNÁ PRIEHĽADNOSŤ BLOKOV (SEKCIA O NÁS) --- */

/* Základ pre všetky bloky - jemné rozostrenie pozadia (Glassmorphism), 
   aby bol text čitateľný aj pri najväčšej priehľadnosti */
.about-page-content .content-container .about-block {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* 1. blok - 100% nepriehľadný (základný stav) */
.about-page-content .content-container .about-block:nth-child(1) {
    background: linear-gradient(145deg, rgba(10, 13, 20, 1), rgba(5, 8, 12, 1)) !important;
}

/* 2. blok - 75% viditeľnosť (25% priehľadný) */
.about-page-content .content-container .about-block:nth-child(2) {
    background: linear-gradient(145deg, rgba(10, 13, 20, 0.75), rgba(5, 8, 12, 0.75)) !important;
}

/* 3. blok - 60% viditeľnosť (40% priehľadný) */
.about-page-content .content-container .about-block:nth-child(3) {
    background: linear-gradient(145deg, rgba(10, 13, 20, 0.60), rgba(5, 8, 12, 0.60)) !important;
}

/* 4. blok - 45% viditeľnosť (55% priehľadný) */
.about-page-content .content-container .about-block:nth-child(4) {
    background: linear-gradient(145deg, rgba(10, 13, 20, 0.45), rgba(5, 8, 12, 0.45)) !important;
}

/* 5. blok (AI highlight) - 40% viditeľnosť, ale zachovaný ten jemný medený nádych */
.about-page-content .content-container .about-block:nth-child(5) {
    background: linear-gradient(145deg, rgba(197, 131, 79, 0.15), rgba(5, 8, 12, 0.40)) !important;
}

/* --- SEKCIA ODBORNÉ ČLÁNKY (BLOG GRID) --- */
.articles-section {
    padding: 80px 5%;
    background-color: #05080c; /* Tmavé kontrastné pozadie */
    border-top: 1px solid rgba(197, 131, 79, 0.2);
}

.articles-header {
    text-align: center;
    margin-bottom: 50px;
}

.articles-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--copper);
    margin-bottom: 10px;
}

.articles-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.article-card {
    background-color: #0d1117;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1a1e24;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--copper);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.article-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-img-wrapper img {
    transform: scale(1.05);
}

.article-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--copper);
    color: #000;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    font-family: var(--font-body);
}

.article-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-content p {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1; /* Zatlačí tlačidlo čítať viac vždy na spodok */
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--copper);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ffffff;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responzivita pre články */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ŠPECIFICKÉ POZADIE PRE BANNER ČLÁNKOV --- */
.articles-hero-bg {
    background-image: url('../img/hero-articles.jpg') !important;
    /* 100% auto znamená: roztiahni na celú šírku, výška sa prispôsobí. 
       To obrázok vizuálne "oddiali" oproti nastaveniu cover. */
    background-size: 70% auto !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.articles-hero-bg {
    background-image: url('../img/hero-articles.jpg') !important;
    filter: brightness(1.2); /* 1.0 je pôvodný stav, 1.2 pridá 20% jasu */
}

/* Zjemnenie tmavého filtra len pre sekciu článkov */
.articles-hero-bg .hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* Pôvodne si tam mal možno 0.6 alebo 0.7. Čím menšie číslo, tým svetlejší banner. */
}

/* --- RESPONZÍVNE VIDEO (YOUTUBE) --- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Pomer strán 16:9 */
    height: 0;
    overflow: hidden;
    margin: 40px auto 50px auto;
    border-radius: 8px;
    border: 1px solid var(--copper); /* Medený rámik pre prémiový vzhľad */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- AUDIO PREHRÁVAČ --- */
.audio-player-wrapper {
    background-color: #0d1117;
    border: 1px solid var(--copper);
    border-radius: 8px;
    padding: 15px 25px;
    margin: 30px 0 40px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.audio-player-wrapper .audio-text {
    color: var(--copper);
    font-weight: 600;
    margin: 0;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.audio-player-wrapper audio {
    flex-grow: 1;
    height: 40px;
    outline: none;
}

/* Úprava farby samotného prehrávača (funguje hlavne pre Chrome/Edge) */
.audio-player-wrapper audio::-webkit-media-controls-panel {
    background-color: #1a1e24;
}
.audio-player-wrapper audio::-webkit-media-controls-current-time-display,
.audio-player-wrapper audio::-webkit-media-controls-time-remaining-display {
    color: #ffffff;
}

/* --- OPRAVA BANNERU PRE MOBILY --- */
@media screen and (max-width: 768px) {
    .articles-hero-bg {
        /* Na mobile to musí byť cover, aby obrázok vyplnil celú plochu bez čiernych pruhov */
        background-size: cover !important; 
        background-position: center !important;
        /* Zmenšíme aj zbytočne veľkú výšku, aby to na mobile nezaberalo 80% obrazovky */
        padding: 100px 0 !important; 
        min-height: 250px !important; 
    }
}