/* --- ZMIENNE I RESET --- */
:root {
    --bg-dark: #111111;
    --bg-card: #1f1f1f;
    --bg-input: #252525;
    --text-main: #cccccc;
    --text-white: #ffffff;
    --gold: #C5A065;
    --gold-hover: #d4b075;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gold { color: var(--gold); }

/* --- PRZYCISKI --- */
.btn-gold {
    display: inline-block;
    background-color: var(--gold);
    color: #000;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-head);
    font-size: 0.9rem;
}
.btn-gold:hover { background-color: transparent; color: var(--gold); }
.full-width { width: 100%; }

/* --- HEADER --- */
header {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%;
    z-index: 1000;
    height: 100px; 
    background-color: rgba(17, 17, 17, 0.5); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

header.scrolled {
    height: 80px; 
    background-color: rgba(17, 17, 17, 0.95); 
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.header-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%;
    height: 100%;
}

.logo { height: 100%; display: flex; align-items: center; padding: 5px 0; }
.logo a { display: flex; align-items: center; height: 100%; }
.logo img { height: 100%; width: auto; object-fit: contain; transition: all 0.4s ease; }

/* --- MENU --- */
.nav-menu ul { display: flex; align-items: center; gap: 30px; }
.nav-menu a { color: var(--text-white); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.btn-nav { border: 1px solid var(--gold); padding: 8px 25px; color: var(--gold) !important; }
.btn-nav:hover { background: var(--gold); color: #000 !important; }
.hamburger { display: none; color: var(--text-white); font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative; display: flex; align-items: center;
    background-attachment: fixed;
}
.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding-top: 80px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; }
.hero p { font-size: 1.3rem; margin-bottom: 40px; max-width: 600px; color: #ddd; }

/* --- SEKCJE --- */
.section { padding: 100px 0; }
.bg-darker { background-color: #161616; }
.sub-title { color: var(--gold); font-size: 0.9rem; margin-bottom: 15px; display: block; letter-spacing: 2px; font-weight: 600; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 60px; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
.check-list i { color: var(--gold); }
.img-col img { width: 100%; height: auto; border-radius: 2px; box-shadow: 20px 20px 0 var(--gold); }

/* --- USŁUGI & GALERIA --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--bg-card); padding: 50px 40px; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); }
.service-card:hover { border-color: var(--gold); transform: translateY(-10px); background: #252525; }
.service-card .icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; }
.gallery-item { overflow: hidden; height: 300px; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* --- KONTAKT --- */
.contact-info .info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.contact-info i { font-size: 1.5rem; color: var(--gold); margin-top: 5px; }
.contact-info a:hover { color: var(--gold); }
.contact-info .phones-list { line-height: 1.8; }
.contact-info .phones-list a { display: block; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; font-weight: 600; }
.form-group input, .form-group textarea {
    width: 100%; background: var(--bg-input); border: 1px solid #333; padding: 15px;
    color: #fff; font-family: var(--font-body); font-size: 1rem; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: #2a2a2a; }
.msg-success { background: #155724; color: #d4edda; padding: 15px; margin-bottom: 20px; border-left: 5px solid var(--gold); }
.msg-error { background: #721c24; color: #f8d7da; padding: 15px; margin-bottom: 20px; border-left: 5px solid red; }

/* --- FOOTER (Jeszcze bardziej kompaktowy) --- */
footer { 
    background: #080808; 
    /* Zmieniono padding na bardzo mały: 30px góra, 10px dół */
    padding: 30px 0 10px; 
    border-top: 1px solid #222; 
    font-size: 0.9rem;
}
.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin-bottom: 20px; 
}
.footer-col h3, .footer-col h4 { margin-bottom: 15px; color: #fff; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { 
    border-top: 1px solid #1a1a1a; 
    padding-top: 15px; 
    font-size: 0.75rem; 
    color: #555; 
}

/* --- PODSTRONY (Impressum / Datenschutz) --- */
.legal-page {
    padding-top: 150px; /* Miejsce na header */
    padding-bottom: 80px;
    min-height: 100vh;
}
.legal-content h1 { font-size: 2.5rem; margin-bottom: 40px; color: var(--gold); }
.legal-content h2 { font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; color: var(--text-white); border-bottom: 1px solid #333; padding-bottom: 10px; }
.legal-content p, .legal-content ul { margin-bottom: 15px; color: #bbb; }
.legal-content ul { list-style: disc; padding-left: 20px; }
.legal-content strong { color: #fff; }

/* --- MOBILE --- */
@media (max-width: 992px) {
    header { height: 70px; }
    header.scrolled { height: 60px; }
    .logo img { height: 100%; }
    .hero h1 { font-size: 2.8rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .hamburger { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 85%; height: 100vh;
        background: #111; flex-direction: column; justify-content: center;
        transition: var(--transition); padding: 50px; box-shadow: -5px 0 30px rgba(0,0,0,0.9);
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; align-items: flex-start; }
    .img-col img { box-shadow: 10px 10px 0 var(--gold); }
}

.fade-in, .fade-in-left, .fade-in-right, .fade-in-up { }