/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
}

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

/* Nawigacja */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo h1 {
    color: #6b7280;
    font-size: 1.8rem;
    font-weight: 600;
}

.logo i {
    margin-right: 10px;
    color: #9ca3af;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}

.nav-menu a:hover {
    color: #6b7280;
    background-color: #f3f4f6;
}

.nav-menu a.active {
    color: #6b7280;
    background-color: #e5e7eb;
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #6b7280;
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6b7280;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero sekcja */
.hero {
    background: linear-gradient(rgba(107, 114, 128, 0.6), rgba(156, 163, 175, 0.6)), 
            url('https://images.unsplash.com/photo-1634547476021-c1155c01616c?q=80&w=3732&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background: #6b7280;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

/* Sekcje */
.features {
    padding: 80px 0;
    background: #f9fafb;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #374151;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-card i {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #374151;
}

.feature-card p {
    color: #6b7280;
}

.quick-contact {
    padding: 60px 0;
    background: #e5e7eb;
    color: #374151;
    text-align: center;
}

.quick-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #374151;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #6b7280;
}

/* Strony podrzędne */
.page-header {
    background: 
        linear-gradient(135deg, rgba(249, 250, 251, 0.98) 0%, rgba(243, 244, 246, 0.96) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e5e7eb" opacity="0.4"/><circle cx="25" cy="25" r="0.5" fill="%23d1d5db" opacity="0.3"/><circle cx="75" cy="75" r="0.5" fill="%23d1d5db" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    background-size: auto, 100px 100px;
    color: #374151;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
    border-bottom: 1px solid #e5e7eb;
}


.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #374151;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.page-header p {
    color: #6b7280;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}


.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #374151;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #4b5563;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 20px;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 10px;
    color: #6b7280;
}

.about-text li strong {
    color: #374151;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Galeria */
.gallery {
    padding: 80px 0;
    background: #f9fafb;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(55, 65, 81, 0.9));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Kontakt */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-details .contact-item i {
    font-size: 1.5rem;
    color: #9ca3af;
    margin-top: 5px;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #374151;
}

.contact-details p {
    color: #6b7280;
}

.contact-details a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #374151;
}

.contact-section h2 {
    color: #374151;
    margin-bottom: 30px;
}

.opening-hours {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: #374151;
    font-weight: 500;
}

.hours-item .time {
    color: #6b7280;
}

.hours-item.closed .time {
    color: #ef4444;
    font-weight: 600;
}

.map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #374151;
    color: #d1d5db;
    text-align: center;
    padding: 30px 0;
}

/* Responsywność */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        margin: 5px 0;
        border-radius: 8px;
    }
    
    .nav-menu a.active {
        background-color: #e5e7eb;
        color: #374151;
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}
