/* RESET I PODSTAWY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Baskerville', serif;
    background-color: #0a0a0a;
    color: #e8e0d0;
    overflow-x: hidden;
}

/* NAWIGACJA */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 1rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 1rem;
    position: relative;
}

.logo {
    position: relative;
    z-index: 1002;
}

.logo a {
    display: block;
}

.logo img {
    height: 130px;
    width: auto;
    object-fit: contain;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    margin-top: 0.8rem;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #c9a84c;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #8a7040;
    padding: 1.5rem 2rem;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
    height: 155px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.hamburger:hover .nav-menu {
    transform: translateY(0);
}

.nav-menu a {
    color: #e8e0d0;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 1.3rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #c9a84c;
}

/* HERO SEKCJA */
#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    max-width: 100%;
}

#hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-tekst {
    position: relative;
    z-index: 2;
    text-align: center;
}

#hero h1 {
    font-size: 3.5rem;
    color: #c9a84c;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    color: #b0a890;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

/* PRZYCISK */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid #c9a84c;
    color: #c9a84c;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #c9a84c;
    color: #0a0a0a;
}

/* SEKCJE */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2rem;
    color: #c9a84c;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

/* DLACZEGO MY */
#dlaczego-my {
    border-top: 1px solid #2a2a2a;
}

.zalety {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.zaleta {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid #2a2a2a;
    transition: border-color 0.3s;
}

.zaleta:hover {
    border-color: #c9a84c;
}

.zaleta i {
    font-size: 2.5rem;
    color: #c9a84c;
    margin-bottom: 1rem;
    display: block;
}

.zaleta h3 {
    font-size: 1rem;
    color: #e8e0d0;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.zaleta p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* KONTAKT */
#kontakt {
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

#kontakt p {
    margin: 0.5rem 0;
    color: #b0a890;
    letter-spacing: 1px;
}

.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 1rem;
}

.kontakt-info p {
    margin-bottom: 1.5rem;
    color: #b0a890;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.kontakt-info i {
    color: #c9a84c;
    margin-right: 0.8rem;
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #2a2a2a;
    border-radius: 0;
    padding: 0.9rem 1rem;
    color: #e8e0d0;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    border-color: #c9a84c;
}

.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
    color: #555;
}

.kontakt-form .btn {
    width: 100%;
    text-align: center;
    cursor: pointer;
    background: transparent;
    font-family: 'Georgia', serif;
}

/* MAPA */
.mapa {
    margin-top: 3rem;
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border: 1px solid #2a2a2a;
    filter: grayscale(100%) invert(90%);
}

/* STOPKA */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #2a2a2a;
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* GALERIA GŁÓWNA */
.galeria-glowna {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.galeria-glowna img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.3s;
}

.galeria-btn {
    position: absolute;
    top: 0;
    height: 100%;
    width: 10%;
    background: transparent;
    border: none;
    color: transparent;
    font-size: 5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-btn:hover {
    background: rgba(0, 0, 0, 0.25);
    color: #c9a84c;
}

.galeria-btn.prev { left: 0; }
.galeria-btn.next { right: 0; }

/* MINIATURY */
.galeria-miniatury {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.galeria-miniatury::-webkit-scrollbar {
    height: 4px;
}

.galeria-miniatury::-webkit-scrollbar-thumb {
    background: #c9a84c;
}

.miniatura {
    height: 80px;
    min-width: 120px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.miniatura:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.miniatura.active {
    opacity: 1;
    border: 2px solid #c9a84c;
}

/* KATEGORIE (funkcje.html) */
.kategoria {
    margin-bottom: 5rem;
    border-top: 1px solid #2a2a2a;
    padding-top: 3rem;
}

.kategoria h3 {
    font-size: 1.5rem;
    color: #c9a84c;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.kategoria video {
    width: 100%;
    display: block;
    margin-bottom: 2rem;
}

.kategoria-dol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.kategoria-dol p {
    color: #b0a890;
    font-size: 0.95rem;
    line-height: 1.9;
}

.kategoria-dol img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .logo img { height: 80px; }
    #hero h1 { font-size: 1.8rem; }
    #hero p { font-size: 0.95rem; }
    .hero-tekst { padding: 0 1rem; }
    .zalety { grid-template-columns: repeat(2, 1fr); }
    .zaleta { padding: 1rem 0.5rem; }
    .kontakt-wrapper { grid-template-columns: 1fr; gap: 1rem; }
    .mapa iframe { height: 200px; }
    .kategoria-dol { grid-template-columns: 1fr; }
    section { padding: 2rem 1rem; }
    section h2 { font-size: 1.5rem; margin-bottom: 1rem; }
    .nav-menu { gap: 1rem; padding: 1rem; height: auto; flex-wrap: wrap; justify-content: center; }
    .nav-menu a { font-size: 0.85rem; }
    .mini-slider img { height: 180px; width: 250px; }
    .galeria-glowna { height: 50vh; }
    .galeria-dron { height: 50vh; }
}

@media (max-width: 480px) {
    #hero h1 { font-size: 1.5rem; }
    #hero p { font-size: 0.85rem; }
    .zalety { grid-template-columns: 1fr; }
    .mini-slider img { height: 150px; width: 200px; }
}
/* FILM Z DRONA */
.galeria-dron {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
}

.galeria-dron video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.galeria-dron::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.galeria-dron-tekst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.galeria-dron-tekst h3 {
    font-size: 3rem;
    color: #c9a84c;
    letter-spacing: 6px;
    text-transform: uppercase;
}
/* GALERIA STRONA */
#galeria-strona {
    padding-top: 8rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 5rem;
}

/* MINI SLIDER */
.mini-slider-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
}

.mini-slider {
    display: flex;
    animation: scrollSlider 20s linear infinite;
}

.mini-slider img {
    height: 300px;
    width: 400px;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 1rem;
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* COOKIES */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.97);
    border-top: 1px solid #c9a84c;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 9999;
}

.cookies-banner p {
    color: #b0a890;
    font-size: 0.85rem;
    letter-spacing: 1px;
}