
body {
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    color: #2e4d1a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
.background-photo {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: url('./img/krzyzowa.jpg') center center/cover no-repeat;
    width: 100vw;
    height: 100vh;
}
.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
}
.content {
    position: relative;
    z-index: 2;
}
.hero {
    background: rgba(255, 232, 124, 0.7);
    color: #2e4d1a;
    text-align: center;
    padding: 5rem 2rem 2rem 2rem;
    position: relative;
    border-radius: 2rem;
    margin: 2rem auto 0 auto;
    max-width: 700px;
    box-shadow: 0 8px 32px rgba(182, 227, 136, 0.15);
}
.hero::after {
    content: '';
    background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/Lemon.png') no-repeat center center;
    background-size: 120px 120px;
    opacity: 0.3;
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 120px;
    height: 120px;
    pointer-events: none;
}
/* Language selector */
.lang-selector {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
}
.lang-selector select {
    background: #fff;
    border: 1px solid #dcdcdc;
    padding: 0.35rem 0.45rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;

    /* Use emoji-capable fonts so the flag emojis render consistently */
    font-family: 'Segoe UI Emoji', 'Segoe UI Symbol', 'Segoe UI', 'Arial', sans-serif;
}
.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}
.section {
    max-width: 700px;
    margin: 4rem auto;
    background: rgba(255,255,255,0.85);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(182, 227, 136, 0.15);
    padding: 2rem;
    transition: transform 0.7s cubic-bezier(.23,1,.32,1), box-shadow 0.7s, opacity 0.7s;
    opacity: 0;
    transform: translateY(60px);
    backdrop-filter: blur(1px);
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 8px 32px rgba(255, 247, 0, 0.15);
}
h2 {
    color: #000000;
    margin-top: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    letter-spacing: 1px;
}
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(182, 227, 136, 0.8);
    color: #2e4d1a;
    font-size: 1.1rem;
    border-top: 2px solid #fff700;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
}
.gallery-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    background: #fffbe6;
    border: 2px dashed #b6e388;
    border-radius: 1rem;
    color: #b6e388;
    font-size: 1.2rem;
}

.service-photo {
    border-radius:1rem;
    box-shadow:0 4px 24px rgba(182,227,136,0.15);
    margin-bottom:1rem;
}

.service-photo {
    border-radius:1rem;
    box-shadow:0 4px 24px rgba(182,227,136,0.15);
    margin-bottom:1rem;
}

a {
  color: rgb(0, 0, 0);
  font-weight: bold;
}