/* --- KONFIGURACJA I CZCIONKI --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --text-muted: #666;
}

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

body { 
    font-family: 'Montserrat', sans-serif; 
    line-height: 1.6; 
    color: var(--dark); 
    overflow-x: hidden; 
    font-size: 15px;
}

/* --- NAWIGACJA --- */
.navbar {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
}

.nav-links { list-style: none; display: flex; flex: 1; }
.nav-links.left { justify-content: flex-end; }
.nav-links.right { justify-content: flex-start; }

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }

.center-logo img { 
    height: 60px; 
    width: auto; 
    margin: 0 20px; 
    display: block;
}

/* --- SEKCJA HERO (ZDJĘCIE W TLE) --- */
.hero {
    position: relative;
    min-height: 75vh; /* Wymuszenie wysokości */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 100px 20px 60px;
    
    /* GŁÓWNE ZDJĘCIE TŁA */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efekt parallax */
}

.hero h1 { 
    font-size: 3rem; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero h2 { 
    font-weight: 400; 
    font-size: 1.2rem; 
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1rem;
}

/* --- OGÓLNE SEKCJE --- */
.section-padding { padding: 80px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { 
    text-align: center; 
    margin-bottom: 40px; 
    text-transform: uppercase; 
    font-size: 1.8rem;
    letter-spacing: 1px;
}
.gold { color: var(--gold); }

/* --- KAFELKI OFERTY --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-tile {
    text-decoration: none;
    color: inherit;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s transform ease, 0.3s box-shadow ease;
}

.offer-tile:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.07);
}

.offer-tile i { 
    font-size: 2.8rem; 
    color: var(--gold); 
    margin-bottom: 20px; 
    display: block; 
}

.offer-tile h3 { margin-bottom: 12px; font-size: 1.3rem; }
.offer-tile .more { 
    font-weight: 700; 
    color: var(--gold); 
    display: block; 
    margin-top: 20px; 
    font-size: 0.85rem; 
}

/* --- SEKCJA PARTNERZY (Z TŁEM) --- */
.partners-bg {
    background: linear-gradient(rgba(248, 248, 248, 0.93), rgba(248, 248, 248, 0.93)), 
                url('https://images.unsplash.com/photo-1554224155-1696413565d3?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6;
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- KONTAKT I FORMULARZ --- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info-side, .form-side { flex: 1; min-width: 320px; }

.detail-item { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 30px; 
}

.detail-item i { 
    font-size: 1.5rem; 
    color: var(--gold); 
    margin-right: 20px; 
    margin-top: 5px;
}

.detail-item p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.detail-item strong a { text-decoration: none; color: inherit; transition: 0.3s; }
.detail-item strong a:hover { color: var(--gold); }

.main-form { 
    background: var(--bg-light); 
    padding: 35px; 
    border-radius: 12px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group label { 
    display: block; 
    font-weight: 700; 
    font-size: 0.8rem; 
    margin-bottom: 8px; 
    text-transform: uppercase;
}

input, select, textarea { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 6px; 
    font-family: inherit; 
    font-size: 0.95rem;
}

input:focus, textarea:focus { 
    outline: none; 
    border-color: var(--gold); 
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-gold:hover { 
    background: #a38448; 
    transform: translateY(-2px); 
}

.full-width { width: 100%; }

/* --- STOPKA --- */
.footer-bottom { 
    background: var(--dark); 
    color: var(--white); 
    text-align: center; 
    padding: 30px; 
    font-size: 0.8rem; 
    opacity: 0.8; 
}

/* --- RESPONSYWNOŚĆ (MOBILE) --- */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Ukrywamy menu tekstowe na telefonie */
    .nav-container { justify-content: center; }
    
    .hero { min-height: 60vh; background-attachment: scroll; }
    .hero h1 { font-size: 2rem; }
    
    .section-padding { padding: 50px 15px; }
    .form-row { grid-template-columns: 1fr; }
    
    .contact-wrapper { gap: 40px; }
}