@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* GÓRNY PASEK */
.top-ui {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flags button {
    font-size: 22px;
    padding: 6px 8px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-btn {
    padding: 10px 16px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #F3ECDC, #E6D3A3);
    font-weight: 600;
    letter-spacing: 0.05em;
}
.menu-btn:hover,
.menu-btn:focus-visible {
    filter: brightness(1.05);
}

/* MENU */
.side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: rgba(17, 17, 17, 0.1);
    color: #fff;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 999;
}

.side-menu.open {
    right: 0;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu li {
    margin-bottom: 10px;
}

.side-menu button {
    width: 100%;
    padding: 14px 18px;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #111;
}
.side-menu button:hover,
.side-menu button:focus-visible {
    filter: brightness(1.08);
}

.menu-spacer {
    height: 80px;
}

/* OBRAZ */
.content img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

/* SEO */
.seo-text {
    padding: 30px;
    color: #666666;
    font-size: 14px;
    text-align: center;
}

.menu-home {
    background: linear-gradient(135deg, #F3ECDC, #E6D3A3);
}

.menu-about {
    background: linear-gradient(135deg, #9BCFC3, #6FAF9B);
}

.menu-faith {
    background: linear-gradient(135deg, #F2B7C6, #F4C6A0);
}

.menu-services {
    background: linear-gradient(135deg, #F1C87A, #E3A74D);
}

.menu-contact {
    background: linear-gradient(135deg, #9FB6F2, #6FA6D9);
}