/* --- GLOBÁLNE PREMENNÉ A ZÁKLAD --- */
:root {
    --gold: #c5a059;
    --black: #0a0a0a;
    --dark-grey: #151515;
    --white: #ffffff;
    --grey: #888;
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section-title { 
    font-family: 'Cinzel', serif; 
    font-size: 2.5rem; 
    color: var(--gold); 
    margin-bottom: 15px; 
    text-align: center; 
}

.section-intro { 
    max-width: 700px; 
    margin: 0 auto 50px; 
    color: var(--grey); 
    text-align: center; 
}

/* --- NAVBAR (NAVIGÁCIA) --- */
.navbar {
    position: fixed;
    top: 0; 
    width: 100%; 
    height: 90px;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 2000;
    display: flex; 
    align-items: center;
}

.nav-container {
    max-width: 1400px; 
    width: 100%; 
    margin: 0 auto;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 0 50px;
}

.circular-logo {
    width: 70px; 
    height: 70px; 
    border-radius: 50%;
    border: 2px solid var(--gold); 
    object-fit: cover;
}

.nav-list { 
    display: flex; 
    list-style: none; 
}

.nav-list li { 
    margin-left: 35px; 
}

.nav-list a {
    color: var(--white); 
    text-decoration: none; 
    text-transform: uppercase;
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    transition: 0.3s;
}

.nav-list a:hover, .nav-list a.active { 
    color: var(--gold); 
}

.hamburger { 
    display: none; 
    cursor: pointer; 
    color: var(--gold); 
    font-size: 1.8rem; 
}

.mobile-menu-logo { 
    display: none; 
}

/* --- HERO SEKICA (DOMOV) --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('hero-bg.jpg') center/cover no-repeat;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
}

.hero-content h1 { 
    font-family: 'Cinzel', serif; 
    font-size: clamp(2.5rem, 8vw, 5.5rem); 
    color: var(--gold); 
    letter-spacing: 15px; 
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gold-button {
    display: inline-block; 
    margin-top: 30px; 
    padding: 15px 45px;
    border: 1px solid var(--gold); 
    color: var(--gold);
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: 0.5s;
    background: transparent;
}

.gold-button:hover { 
    background: var(--gold); 
    color: black; 
}

/* --- SLIDER (INDEX) --- */
.collections { 
    padding: 100px 0; 
}

.slider-container { 
    position: relative; 
    max-width: 600px; 
    margin: 0 auto; 
}

.slide { 
    display: none; 
}

.slide.active { 
    display: block; 
    animation: fade 1s ease-in-out; 
}

.slide img { 
    width: 100%; 
    aspect-ratio: 3/2; 
    object-fit: cover; 
    border: 3px solid var(--gold); 
    border-radius: 8px; 
    cursor: zoom-in;
}

.prev, .next { 
    cursor: pointer; 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    padding: 15px; 
    color: var(--gold); 
    background: rgba(0,0,0,0.5); 
    border: 1px solid var(--gold); 
    z-index: 10; 
    transition: 0.3s;
    border-radius: 5px;
}

.next { right: -60px; } 
.prev { left: -60px; }

.prev:hover, .next:hover { 
    background: var(--gold); 
    color: black; 
}

.dots-container { 
    text-align: center; 
    padding: 20px; 
}

.dot { 
    cursor: pointer; 
    height: 3px; 
    width: 25px; 
    margin: 0 5px; 
    background: #333; 
    display: inline-block; 
    transition: 0.4s; 
}

.dot.active { 
    background: var(--gold); 
    width: 45px; 
}

/* --- O NÁS (OPRAVA ZOBRAZENIA OBRÁZKA) --- */
.about-section { 
    padding: 150px 20px 80px; 
}

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

.about-image { 
    width: 100%; 
    border-radius: 10px; 
    overflow: hidden; 
    border: 1px solid rgba(197, 160, 89, 0.3); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-image img { 
    width: 100%; 
    height: auto; 
    display: block; 
    object-fit: contain; 
}

.about-text p { 
    margin-bottom: 20px; 
    color: #ccc; 
    font-size: 1.05rem;
}

.stats { 
    display: flex; 
    gap: 40px; 
    margin-top: 30px; 
}

.stat-item strong { 
    display: block; 
    font-size: 2.2rem; 
    color: var(--gold); 
    font-family: 'Cinzel', serif; 
}

.stat-item span { 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    color: var(--grey); 
}

/* --- PRODUKTY (KATALÓG) --- */
.products-section { 
    padding: 150px 20px 80px; 
}

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 30px; 
}

.product-card { 
    background: #111; 
    border: 1px solid rgba(197, 160, 89, 0.1); 
    transition: 0.4s; 
    overflow: hidden; 
}

.product-image { 
    position: relative; 
    aspect-ratio: 1/1; 
}

.product-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}

.product-overlay { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0, 0, 0, 0.7); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    transition: 0.3s; 
}

.product-card:hover .product-overlay { 
    opacity: 1; 
}

.product-card:hover .product-image img { 
    transform: scale(1.1); 
}

.product-info { 
    padding: 20px; 
}

.price { 
    color: var(--gold); 
    font-weight: bold; 
    font-size: 1.2rem; 
}

/* --- NA MIERU (KONFIGURÁTOR) --- */
.custom-hero-centered { 
    padding: 150px 20px 80px; 
}

.container-narrow { 
    max-width: 700px; 
    margin: 0 auto; 
    text-align: center; 
}

.config-step { 
    margin-bottom: 40px; 
}

.option-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
}

.option-card input { 
    display: none; 
}

.option-card span { 
    display: block; 
    padding: 15px; 
    border: 1px solid #333; 
    cursor: pointer; 
    border-radius: 5px; 
    font-size: 0.8rem; 
    text-transform: uppercase;
    transition: 0.3s;
}

.option-card input:checked + span { 
    border-color: var(--gold); 
    background: rgba(197, 160, 89, 0.1); 
    color: var(--gold); 
}

.input-group { 
    margin-bottom: 15px; 
}

.input-group input, .input-group textarea { 
    width: 100%; 
    padding: 15px; 
    background: #000; 
    border: 1px solid #333; 
    color: white; 
    border-radius: 5px; 
    font-family: inherit;
}

/* --- KONTAKT --- */
.contact-page { 
    padding: 150px 20px 80px; 
    text-align: center;
}

.contact-info-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}

.contact-box { 
    padding: 40px; 
    background: #111; 
    border: 1px solid #222; 
    border-radius: 10px; 
    transition: 0.3s;
}

.contact-box:hover {
    border-color: var(--gold);
}

.contact-box i { 
    color: var(--gold); 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
}

.phone-link, .email-link { 
    color: var(--gold); 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1.1rem;
}

.phone-link:hover, .email-link:hover {
    color: var(--white);
    letter-spacing: 1px;
    transition: 0.5s;
}

.or-separator { 
    margin: 40px 0; 
    border-bottom: 1px solid #222; 
    line-height: 0.1em; 
}

.or-separator span { 
    background: var(--black); 
    padding: 0 15px; 
    color: #555; 
}

/* --- ŠTÝLOVANIE SOCIÁLNYCH SIETÍ (KONTAKT) --- */
/* --- ŠTÝLOVANIE SOCIÁLNYCH SIETÍ (KONTAKT - LUXUSNÁ VERZIA) --- */
.social-links-large {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 50px; /* Väčšia medzera medzi ikonami */
}

.social-links-large a {
    color: var(--gold); /* Základná farba je zlatá */
    font-size: 3.5rem;   /* Dominantná veľkosť */
    transition: all 0.4s ease-in-out;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.2));
}

.social-links-large a:hover {
    color: var(--white); /* Zmena na bielu pri hoveri */
    transform: translateY(-10px) scale(1.1); /* Jemný pohyb nahor a zväčšenie */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6); /* Biela žiara */
}

/* Jemná animácia pre každú ikonu zvlášť */
.social-links-large a i {
    transition: transform 0.3s ease;
}

/* --- RESPONZIVITA PRE SOCIÁLNE SIETE --- */
@media (max-width: 768px) {
    .social-links-large {
        gap: 30px;
        margin-top: 40px;
    }
    .social-links-large a {
        font-size: 2.8rem;
    }
}


/* Responzivita pre mobil */
@media (max-width: 768px) {
    .social-links-large {
        gap: 30px;
    }
    .social-links-large a {
        font-size: 2.5rem;
    }
}
/* --- FOOTER --- */
.footer { 
    padding: 40px; 
    text-align: center; 
    border-top: 1px solid #111; 
    color: #444; 
    font-size: 0.8rem; 
}

/* --- LUXUSNÝ FORMULÁR PRE NA MIERU --- */
.luxury-form-container {
    background: linear-gradient(145deg, #0f0f0f, #050505);
    padding: 50px 40px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 15px;
    margin: 40px auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
    text-align: left;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 18px;
    color: var(--gold);
    font-size: 1.1rem;
    z-index: 5;
    transition: 0.3s;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: #000;
    border: 1px solid #222;
    border-radius: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.4s ease;
    display: block;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Efekt pri kliknutí na pole */
.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #0a0a0a;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.form-group input:focus + i, 
.form-group textarea:focus + i {
    color: var(--white);
    text-shadow: 0 0 5px var(--gold);
}

/* Štýlové tlačidlo odoslať */
.submit-btn-luxury {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 8px;
}

.submit-btn-luxury:hover {
    background: var(--gold);
    color: black;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.submit-btn-luxury i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.submit-btn-luxury:hover i {
    transform: translateX(8px) translateY(-5px);
}

/* Responzivita pre formulár */
@media (max-width: 768px) {
    .luxury-form-container {
        padding: 30px 20px;
    }
}
/* --- RESPONZIVITA (MOBILY & TABLETY) --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-links { 
        display: none; 
        position: fixed; 
        top: 0; left: 0; 
        width: 100%; height: 100vh; 
        background: black; 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        z-index: 2050; 
    }
    
    .nav-links.active { 
        display: flex !important; 
    }
    
    .nav-links.active .mobile-menu-logo { 
        display: block; 
        margin-bottom: 30px; 
        text-align: center;
    }

    .nav-list { flex-direction: column; text-align: center; }
    .nav-list li { margin: 20px 0; margin-left: 0; }
    .nav-list a { font-size: 1.5rem; }

    /* Hero bez medzier */
    .hero { 
        height: 70vh; 
        padding-top: 90px; 
        margin-bottom: 25px; 
    }
    
    .hero-content h1 { 
        font-size: 2.5rem; 
        letter-spacing: 5px; 
    }

    /* Medzery v kolekciách +/- 25px */
    .collections { 
        padding: 25px 0; 
    }

    /* Slider - obrázky ďalej od krajov */
    .slider-container { 
        max-width: 85%; 
    }
    
    .prev, .next { 
        display: flex !important; 
        padding: 10px; 
        width: 40px; 
        height: 40px;
    }
    
    .prev { left: -15px; } 
    .next { right: -15px; }

    /* O nás na mobile pod seba */
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
        text-align: center; 
    }
    
    .about-image { order: 1; }
    .about-text { order: 2; }
    .about-text .section-title { text-align: center !important; }
    .stats { justify-content: center; gap: 20px; }

    /* Ostatné podstránky */
    .products-section, .custom-hero-centered, .contact-page, .about-section { 
        padding-top: 110px; 
        padding-bottom: 25px; 
    }

    /* Produkty overlay na mobile */
    .product-overlay { 
        opacity: 1 !important; 
        position: relative !important; 
        background: transparent !important; 
        padding: 10px 0; 
    }
    
    /* Konfigurátor na mobile */
    .option-grid { 
        grid-template-columns: 1fr; 
    }
}

@keyframes fade { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}