:root {
    /* Paleta kolorów pobrana z projektu */
    --primary-green: #2F4F3E; /* Ciemna zieleń */
    --secondary-green: #4A6E5A;
    --accent-beige: #EBE9E1; /* Tło kart */
    --text-dark: #1A1A1A;
    --text-light: #F9F9F9;
    --white: #FFFFFF;
    
    /* Fonty */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Inne */
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #Fdfdfd;
    line-height: 1.6;
}

/* Typografia */
h1, h2, h3 { font-family: var(--font-heading); color: var(--primary-green); margin-bottom: 1rem; }
h1 { font-size: 2.5rem; color: var(--text-light); }
h2 { font-size: 2rem; border-bottom: 2px solid var(--accent-beige); display: inline-block; padding-bottom: 5px; }

/* Layout Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 0; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 15px 0; transition: 0.3s;
}
.navbar.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); /* Efekt rozmycia tła (modern/iOS style) */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-badge { 
    background: var(--primary-green); color: var(--white); 
    padding: 5px 10px; font-weight: bold; border-radius: 4px; 
}
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--primary-green); font-weight: 500; }

/* Hero Section */
.hero {
    height: 80vh;
    background: url('image/top.png') center/cover no-repeat;
    position: relative;
    display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(47, 79, 62, 0.9), rgba(47, 79, 62, 0.4));
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; }
.hero-buttons { margin-top: 30px; display: flex; gap: 15px; }

/* Buttons */
.btn { padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; transition: 0.3s; display: inline-block;}
.btn-primary { background: var(--white); color: var(--primary-green); }
.btn-secondary { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,255,255,0.3); }

/* Info Cards */
.info-cards {
    display: flex; gap: 20px; margin-top: -50px; position: relative; z-index: 3;
    justify-content: center; flex-wrap: wrap;
}
.card {
    background: rgba(255,255,255,0.9); backdrop-filter: blur(5px);
    padding: 30px; border-radius: var(--radius); text-align: center;
    box-shadow: var(--shadow); flex: 1; min-width: 250px;
}

/* Sekcja o wydarzeniu */
.section-split { display: flex; gap: 50px; padding: 80px 20px; align-items: start; flex-wrap: wrap; }
.col-left, .col-right { flex: 1; }
.rounded-img { width: 100%; border-radius: var(--radius); margin-top: 20px; }
.glass-panel {
    background: var(--accent-beige); /* Beżowe tło jak na projekcie */
    padding: 40px; border-radius: var(--radius);
}
.program-list { list-style: none; margin-top: 20px; }
.program-list li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.1); }

/* Galeria i Historia */
.history-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 200px 200px; gap: 15px; margin-top: 30px; }
.hist-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.hist-item.big { grid-row: span 2; }

/* Footer */
footer { background: var(--primary-green); color: var(--white); text-align: center; padding: 20px; margin-top: 50px; }

/* Animacje (Reveal Class) */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .grid-2-col, .section-split, .history-grid { display: block; }
    .hero h1 { font-size: 1.8rem; }
    .nav-links { display: none; /* Tu można dodać logikę burgera w JS */ }
    .info-cards { flex-direction: column; margin-top: 20px; }
    .card { margin-bottom: 10px; }
    .hist-item { margin-bottom: 10px; }
}