body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8fa; /* Bardzo jasny, prawie biały */
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; /* Zapobieganie poziomemu scrollowaniu */
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #FFD1DC 0%, #AEC6CF 100%); /* Pudrowy róż do błękitu */
    color: #fff;
    text-align: center;
    padding: 80px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: 300;
}

/* Intro Section */
.intro-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #555;
}

.highlight {
    display: inline-block;
    background-color: #B0E0E6; /* Jasny turkus */
    color: #333;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(45deg, #E0BBE4 0%, #957DAD 100%); /* Lawendowy fiolet */
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-section .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.gallery-item {
    background-color: rgba(255, 255, 255, 0.2); /* Przezroczysty biały */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    flex: 1 1 300px; /* Elastyczne rozmiary */
    max-width: 30%;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.gallery-item .caption {
    padding: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #eee;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #6A5ACD; /* Lawendowy fiolet */
    margin-bottom: 25px;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 15px auto;
    font-size: 1.05em;
    color: #444;
}

/* Footer */
.footer {
    background: linear-gradient(45deg, #B0E0E6 0%, #AEC6CF 100%); /* Jasny turkus do błękitu */
    color: #333;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5em;
    }
    .header p {
        font-size: 1em;
    }
    .gallery-item {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .gallery-section .container {
        flex-direction: column;
        align-items: center;
    }
    .about-section h2 {
        font-size: 2em;
    }
}