@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #2c3e50;
    --accent: #3498db;
    --light: #f4f7f6;
    --dark: #1a1a1a;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    scroll-behavior: smooth;
}

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

/* Navigation */
nav {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
nav .container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
nav .logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: var(--dark); font-weight: 500; transition: 0.3s; }
nav ul li a:hover { color: var(--accent); }

/* Hero */
.hero {
    height: 30vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 10px; }

/* Sections */
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; position: relative; }
.section-title::after { content: ''; width: 50px; height: 3px; background: var(--accent); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card { background: var(--light); padding: 30px; border-radius: 10px; text-align: center; }

.dark-bg { background: var(--primary); color: var(--white); }
.beliefs-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 30px; }
.belief-item h4 { color: var(--accent); margin-bottom: 10px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; background: var(--accent); color: var(--white); text-decoration: none; border-radius: 5px; transition: 0.3s; margin-top: 20px; }
.btn:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-red { background: #e74c3c; }

.text-center { text-align: center; }
.link-more { color: var(--accent); text-decoration: none; font-size: 0.9rem; }

footer { background: #111; color: #777; text-align: center; padding: 20px 0; }

@media (max-width: 768px) {
    .hero {height: 45vh;}
    .hero h1 { font-size: 2.5rem; }
    nav ul { display: none; } /* Спрощення для мобільних */
}
