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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* NAGŁÓWEK */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.header-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.header-content .tagline {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

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

.highlight {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.highlight .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

/* GALERIA */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 20px;
}

.lightbox-prev, .lightbox-next {
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.5);
}

/* ATUTY */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card li {
    padding: 8px 0;
    color: #555;
}

/* SPECYFIKACJA */
.specs {
    padding: 80px 0;
    background: white;
}

.specs h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.specs-left h3, .specs-right h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 22px;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 10px 0;
    color: #555;
    font-size: 16px;
}

.specs-right p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .specs-content {
        grid-template-columns: 1fr;
    }
}

/* LOKALIZACJA */
.location {
    padding: 80px 0;
    background: #f8f9fa;
}

.location h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.location-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 24px;
}

.location-info h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 18px;
}

.distance-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.distance-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.distance-item h5 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 5px;
}

.distance-item p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }
    
    #map {
        height: 300px;
    }
}

/* FORMULARZ KONTAKTOWY */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34495e;
    box-shadow: 0 0 5px rgba(52, 73, 94, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* STOPKA */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
