﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #faf8f5;
    color: #1a1a1a;
    scroll-behavior: smooth;
    line-height: 1.5;
}

:root {
    --gold: #c9a96e;
    --gold-dark: #b38b4a;
    --gold-text: #6C5528;
    /* ✅ NOWY KOLOR TEKSTU */
    --gold-text-light: #8B7355;
    /* ✅ JAŚNIEJSZA WERSJA */
    --dark: #111111;
    --dark-soft: #1e1e1e;
    --gray-bg: #f4f1ea;
    --border-light: #e5dfd5;
    --shadow-sm: 0 20px 35px -12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 30px 40px -18px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- TYPOGRAFIA ---------- */
h1,
h2,
h3,
h4,
.serif {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* ---------- NAWIGACJA (STICKY + EFEKT) ---------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: 180px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.navbar.scrolled .logo-img {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: white;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar.scrolled .nav-links a {
    color: #f0f0f0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

.navbar.scrolled .hamburger {
    color: white;
}

.btn-outline {
    border: 1px solid #5D4922;
    background: transparent;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    color: #5D4922;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: #5D4922;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- PRZYCISKI ---------- */
.btn-primary {
    background: var(--gold);
    color: #111;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    color: white;
}

.product-card .btn-outline {
    border-color: #5D4922;
    color: #5D4922;
    font-weight: 600;
    padding: 6px 20px;
    font-size: 0.75rem;
}

.product-card .btn-outline:hover {
    background: #5D4922;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- HERO SLIDER (AUTORSKI) ---------- */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.slide {
    flex: 0 0 100%;
    height: 100vh;
    min-height: 650px;
    background-size: cover;
    background-position: center 30%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    padding: 2.2rem 3rem;
    border-radius: 16px;
    max-width: 750px;
    animation: fadeUp 0.9s ease;
}

.slide-content h2 {
    font-size: 3.2rem;
    font-weight: 500;
    font-family: 'Georgia', serif;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1.1rem;
    margin: 1rem 0;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 240, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 300;
    color: white;
    transition: 0.25s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

.prev {
    left: 28px;
}

.next {
    right: 28px;
}

.dots {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 240, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 10px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- SEKCJE OGÓLNE ---------- */
section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-light);
}

.section-title {
    font-size: 2.6rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 70px;
    height: 2px;
    background: var(--gold);
}

/* ---------- KARTY PRODUKTÓW (NASZE KOLEKCJE) ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #ede6dc;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: 50% 15%;
    transition: transform 0.7s;
}

.product-card:hover .product-img {
    transform: scale(1.03);
}

.product-info {
    padding: 24px 24px 28px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* ✅ POPRAWIONY .product-cat - TERAZ KOLOR #6C5528 */
.product-cat {
    font-size: 0.75rem;
    color: var(--gold-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-desc {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 20px;
}

/* ---------- SEKCJA MARKI ---------- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.brand-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: block;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.brand-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s;
}

.brand-card:hover .brand-img {
    transform: scale(1.02);
}

.brand-info {
    padding: 28px 28px 32px;
    text-align: center;
}

.brand-info h3 {
    font-size: 1.9rem;
    margin-bottom: 12px;
}

/* ✅ POPRAWIONY .brand-sub - TERAZ KOLOR #6C5528 */
.brand-info .brand-sub {
    color: var(--gold-text);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.brand-info p {
    color: #555;
    line-height: 1.5;
}

/* ---------- KAFELKI KATEGORII (OFERTA) – 3 kolumny, bez emotek ---------- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 40px 0 60px;
}

.cat-item {
    background: white;
    border-radius: 28px;
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.cat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

/* elegancki akcent zamiast emotki */
.cat-item::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 20px auto;
    transition: width 0.2s ease;
}

.cat-item:hover::before {
    width: 48px;
}

.cat-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cat-item p {
    font-size: 0.9rem;
    color: #6a6a6a;
    line-height: 1.4;
}

/* ---------- GALERIA ZDJĘĆ (LIGHTBOX) ---------- */
.photo-gallery {
    background: var(--gray-bg);
    border-radius: 40px;
    padding: 28px;
    margin-top: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 24px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox autorski */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 12px;
}

.close-lightbox {
    position: absolute;
    top: 28px;
    right: 40px;
    font-size: 44px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.close-lightbox:hover {
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2.8rem;
    cursor: pointer;
    padding: 0 18px;
    border-radius: 50%;
    transition: 0.2s;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: #111;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* ---------- FAQ & DEFINICJE (poprawione, wyrównane) ---------- */
.faq-def-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* lewa kolumna (definicje) */
.def-box {
    background: white;
    border-radius: 36px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.def-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.def-header-icon {
    font-size: 2rem;
    background: rgba(201, 169, 110, 0.1);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    color: var(--gold-text);
    /* ✅ POPRAWA */
}

.def-header h3 {
    font-size: 1.6rem;
    margin: 0;
    font-family: 'Georgia', serif;
    font-weight: 500;
    color: var(--gold-text);
    /* ✅ POPRAWA */
}

.def-list {
    flex: 1;
}

.def-item {
    margin-bottom: 28px;
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 16px;
}

.def-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.def-item strong {
    font-size: 1.15rem;
    color: var(--gold-text);
    /* ✅ POPRAWA */
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.def-item p {
    color: #4a4a4a;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* prawa kolumna (FAQ) */
.faq-wrapper {
    background: white;
    border-radius: 36px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.faq-header-icon {
    font-size: 2rem;
    background: rgba(201, 169, 110, 0.1);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    color: var(--gold-text);
    /* ✅ POPRAWA */
}

.faq-header h3 {
    font-size: 1.6rem;
    margin: 0;
    font-family: 'Georgia', serif;
    font-weight: 500;
    color: var(--gold-text);
    /* ✅ POPRAWA */
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fefcf8;
    border-radius: 24px;
    transition: all 0.2s ease;
    border: 1px solid var(--border-light);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--dark);
}

.faq-arrow {
    color: var(--gold-text);
    /* ✅ POPRAWA */
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.4s ease, padding 0.2s ease;
    color: #4e4e4e;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active {
    background: white;
    border-color: var(--gold);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px 24px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* ---------- KONTAKT ---------- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    background: white;
    border-radius: 48px;
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold-text);
    /* ✅ POPRAWA - CAŁY TEKST W KONTAKCIE */
    font-weight: 500;
    /* ✅ POGUBIENIE DLA KONTRASTU */
}

.contact-icon {
    width: 32px;
    text-align: center;
    color: var(--gold-text);
    /* ✅ POPRAWA */
    font-size: 1.2rem;
}

.contact-info strong {
    color: var(--gold-text);
    /* ✅ POPRAWA */
}

/* ✅ LINKI W KONTAKCIE */
.contact-info a {
    color: var(--gold-text);
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-frame {
    flex: 1;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- STOPKA ---------- */
footer {
    background: #0f0f0f;
    color: #ccc;
    padding: 56px 0 36px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin-right: 28px;
    transition: 0.2s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

/* ---------- RESPONSYWNOŚĆ ---------- */
@media (max-width: 1024px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #111;
        padding: 28px 0;
        margin-top: 20px;
        gap: 1.5rem;
        border-radius: 28px;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .faq-def-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .def-header h3,
    .faq-header h3 {
        font-size: 1.4rem;
    }

    .def-header-icon,
    .faq-header-icon {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }

    .contact-wrapper {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }
}

/* ✅ POPRAWIONE KLASY POMOCNICZE */
.text-gold-light {
    color: #C19E57;
    font-weight: 600;
}


.inline-link {
    color: var(--gold-text);
    font-weight: 600;
}

.inline-link:hover {
    text-decoration: underline;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

h3 {
    font-size: 1.9rem;
    font-weight: 500;
    margin: 48px 0 24px;
    font-family: 'Georgia', serif;
}
/* ============================================
   WYBÓR JĘZYKA / ODDZIAŁY
   ============================================ */
.languages {
    background: #0f0f0f;
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.lang-header {
    text-align: center;
    margin-bottom: 24px;
}

.lang-label {
    color: #888;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.lang-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #999;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.lang-link img {
    display: inline-block;
    width: 20px;
    height: 10px;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.lang-link:hover {
    color: #c9a96e;
    border-color: rgba(201, 169, 110, 0.2);
    background: rgba(201, 169, 110, 0.05);
}

.lang-link.active {
    color: #c9a96e;
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.08);
    font-weight: 500;
}

/* ---------- RESPONSYWNOŚĆ ---------- */
@media (max-width: 768px) {
    .languages {
        padding: 30px 0 20px;
    }
    
    .lang-grid {
        gap: 5px 8px;
        padding: 0 10px;
    }
    
    .lang-link {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .lang-link img {
        width: 16px;
        height: 8px;
    }
    
    .lang-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .lang-grid {
        gap: 4px 5px;
    }
    
    .lang-link {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .lang-link img {
        width: 20px;
        height: 10px;
    }
}