/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Kolory w stylu irlandzkim */
:root {
    --green: #1f7a5c;
    --dark: #222;
    --light: #f4f6f5;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--light);
    color: #222;
    line-height: 1.7;
}

html {
    scroll-padding-top: 100px; /* wysokość menu */
}

/* Nagłówek */
.site-header {
    background: linear-gradient(120deg, #0b3d2e, #1f7a5c);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.site-header h1 {
    font-size: 3.2rem;
    letter-spacing: 2px;
}

.subtitle {
    margin-top: 15px;
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Główna zawartość */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
    background: white;
}

/* Nagłówki sekcji */
h2 {
    color: var(--green);
    margin-top: 60px;
    margin-bottom: 20px;
    border-left: 6px solid var(--green);
    padding-left: 15px;
}

/* Akapity */
p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Obrazy */
img {
    display: block;
    max-width: 100%;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Listy */
ul, ol {
    margin: 20px 0 40px 40px;
}

/* Linki */
a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Stopka */
.site-footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
}

/* ===== MENU ===== */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 61, 46, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
}

.logo {
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
}

.menu a {
    color: white;
    margin-left: 30px;
    font-size: 0.95rem;
    text-transform: uppercase;
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* Żeby treść nie była pod menu */
.site-header {
    padding-top: 120px;
}

/* ===== Animacje przy przewijaniu ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.big-photo { max-width: 600px; }
.medium-photo {max-width: 400px; }
.small-photo {max-width: 300px; }