/* Główne style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0f0f12; /* Bardzo ciemny szary/czarny */
    color: #e0e0e0;
    line-height: 1.6;
}

/* Nawigacja */
nav {
    background: rgba(15, 15, 18, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span { color: #00d4ff; }

nav ul { display: flex; list-style: none; }

nav ul li a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover, nav ul li a.active { color: #00d4ff; }

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1514525253361-bee8a18744ad?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; color: #fff; }

/* Galeria zdjęć na startowej */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 40px 10%;
}

.image-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.image-gallery img:hover { transform: scale(1.05); }

/* Oferta - Cennik */
.pricing {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 10%;
    flex-wrap: wrap;
}

.card {
    background: #1e1e24;
    padding: 40px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
    border: 1px solid #333;
    position: relative;
}

.card.premium {
    border-color: #00d4ff;
    transform: scale(1.05);
}

.badge {
    background: #00d4ff;
    color: #000;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price { font-size: 2.5rem; margin: 20px 0; color: #fff; }
.price span { font-size: 1rem; color: #888; }

.card ul { list-style: none; margin-bottom: 30px; }
.card ul li { margin-bottom: 10px; color: #bbb; }

/* Przyciski */
.btn {
    background: #00d4ff;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover { background: #0099cc; transform: translateY(-3px); }

/* Formularz kontaktowy */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 30px 0;
}

.contact-form input, .contact-form textarea {
    background: #1e1e24;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
}

.socials { margin-top: 40px; border-top: 1px solid #333; padding-top: 20px; }
.insta-link { color: #e1306c; text-decoration: none; font-weight: bold; }

/* Sekcje treści */
.content-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-container img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 25px;
}