/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b3b3b3;
    --accent-color: #d4af37;
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--primary-color);
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-left {
    width: 100%;
}

.nav-left .nav-list {
    justify-content: space-evenly;
    width: 100%;
}

.nav-right .nav-list {
    justify-content: flex-end;
}

.nav-right .nav-list li:last-child {
    margin-left: auto;
}

.mega-dropdown .dropdown-toggle {
    white-space: nowrap;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

/* Hide Materiały link for the time being (all pages) */
.nav-list li.nav-hide-materiały {
    display: none !important;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgb(255, 125, 0);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: rgb(255, 125, 0);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1001;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 125, 0, 0.1);
    color: rgb(255, 125, 0);
    padding-left: 2rem;
}

/* Mega Menu */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1rem;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    z-index: 1001;
    width: max-content;
    min-width: 160px;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    color: rgb(255, 125, 0);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 125, 0, 0.2);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0.5rem;
}

.mega-menu-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.mega-menu-list a::after {
    display: none;
}

.mega-menu-list a:hover {
    color: rgb(255, 125, 0);
    padding-left: 0.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Bentley-Style Slideshow */
.bm-m-full-width-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
    background: var(--primary-color);
}

.bm-m-full-width-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.bm-m-full-width-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bm-m-full-width-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), visibility 2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.bm-m-full-width-slider-item.bm-state-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    pointer-events: auto;
}

.bm-m-full-width-slider-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    filter: blur(40px) brightness(0.4);
    transform: scale(1.1);
    z-index: -1;
}

.bm-m-full-width-slider-background img {
    display: none;
}

.bm-m-full-width-slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
    padding-top: 200px;
}

/* The actual centered image */
.bm-m-full-width-slider-content-inner {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bm-m-full-width-slider-content-inner img {
    width: 1425px;
    height: 745px;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.bm-m-full-width-slider-item.bm-state-active .bm-m-full-width-slider-content-inner img {
    opacity: 1;
    transform: scale(1);
}

/* Text overlay on images */
.bm-m-full-width-slider-text {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1425px;
    max-width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 1s ease 0.5s;
}

.bm-m-full-width-slider-item.bm-state-active .bm-m-full-width-slider-text {
    opacity: 1;
    transform: translateX(-50%);
}

.bm-m-full-width-slider-title {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.bm-m-full-width-slider-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}


/* Feed Section */
.feed-section {
    padding: 6rem 2rem;
    background: var(--secondary-color);
    position: relative;
    z-index: 10;
}

.feed-container {
    max-width: 900px;
    margin: 0 auto;
}

.feed-greeting {
    text-align: center;
    margin-bottom: 2.5rem;
}

.feed-greeting-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.feed-greeting-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-gray);
    margin: 0;
}

.feed-section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

.feed-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Aktualności – separate cards, day big, month/year under, vertical bar */
.aktualnosci-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aktualnosci-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aktualnosci-card:hover {
    border-color: rgba(255, 125, 0, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.aktualnosci-date-block {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.aktualnosci-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(255, 125, 0);
    letter-spacing: 0;
}

.aktualnosci-month-year {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.35rem;
}

.aktualnosci-bar {
    width: 1px;
    min-height: 60px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    align-self: stretch;
}

.aktualnosci-event {
    flex: 1;
    margin: 0;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 500;
    /* block: <br> inside the paragraph must line-break (flex broke layout on live site) */
    display: block;
    line-height: 1.55;
    align-self: center;
}

.feed-post {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feed-post:hover {
    border-color: rgba(255, 125, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.feed-post-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feed-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 125, 0, 0.1);
    border: 2px solid rgba(255, 125, 0, 0.3);
    flex-shrink: 0;
}

.feed-avatar svg {
    color: rgb(255, 125, 0);
}

.feed-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feed-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.feed-post-time {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.feed-post-content {
    padding: 1.5rem;
}

/* Verse Post */
.feed-verse-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    text-align: left;
}

.feed-verse-reference {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Meditation Post */
.feed-meditation-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feed-meditation-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Video Post */
.feed-video-preview {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: rgba(20, 20, 20, 0.8);
}

.feed-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.feed-post:hover .feed-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.feed-video-title {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
}

/* Notification Post */
.feed-notification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed-notification-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid rgb(255, 125, 0);
}

.feed-notification-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(255, 125, 0);
    flex-shrink: 0;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.feed-notification-content {
    flex: 1;
}

.feed-notification-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.feed-notification-time {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Feed Post Actions */
.feed-post-actions {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.feed-action-btn:hover {
    background: rgba(255, 125, 0, 0.1);
    border-color: rgb(255, 125, 0);
    color: rgb(255, 125, 0);
}

.feed-action-btn svg {
    flex-shrink: 0;
}

/* Vision Section */
.vision-section {
    padding: 8rem 2rem;
    background: var(--secondary-color);
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

.vision-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    text-align: justify;
}

.vision-content p {
    margin-bottom: 1.8rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 1px solid var(--text-light);
    display: inline-block;
}

.btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: rgb(255, 125, 0);
    border-color: rgb(255, 125, 0);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgb(255, 125, 0);
    color: #ffffff;
    border-color: rgb(255, 125, 0);
}

/* Footer Styles */
.footer {
    background: transparent;
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
    border-top: none;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: none;
}

.footer-section {
    text-align: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-link:hover {
    color: rgb(255, 125, 0);
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-media a {
    color: var(--text-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-media a:hover {
    border-color: rgb(255, 125, 0);
    color: rgb(255, 125, 0);
    transform: translateY(-3px);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-flag-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.lang-flag-btn:hover {
    border-color: rgb(255, 125, 0);
    transform: translateY(-3px);
}

.lang-flag-btn.active {
    border-color: rgb(255, 125, 0);
    box-shadow: 0 0 0 1px rgba(255, 125, 0, 0.25);
}

.lang-reader-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.lang-reader-btn:hover {
    border-color: rgb(255, 125, 0);
    transform: translateY(-3px);
}

.lang-reader-btn.active {
    border-color: rgb(255, 125, 0);
    color: rgb(255, 125, 0);
    box-shadow: 0 0 0 1px rgba(255, 125, 0, 0.25);
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        padding: 1.5rem 2rem;
        gap: 2rem;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .nav-list a {
        font-size: 0.85rem;
    }
}

@media (max-width: 968px) {
    .header-container {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
    }

    .logo {
        order: 1;
        justify-content: flex-start;
    }

    .logo img {
        height: 40px;
    }

    .nav-left,
    .nav-right {
        position: fixed;
        left: -100%;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        transition: var(--transition);
        order: 2;
        overflow-y: auto;
        z-index: 1002;
    }

    .nav-left {
        top: 80px;
        height: 50vh;
    }

    .nav-right {
        top: 80px;
        height: calc(100vh - 80px);
        z-index: 1003;
    }

    /* When menu open: left nav top half (Nauczania, Uwielbienie, Podcasty), right nav bottom half (Świadectwa, etc.) */
    .nav-left.active {
        left: 0;
    }

    .nav-right.active {
        left: 0;
        top: calc(80px + 50vh);
        height: calc(50vh - 80px);
    }

    .nav-left .nav-list,
    .nav-right .nav-list {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        justify-content: flex-start;
    }

    /* Ensure all nav links (Nauczania, Uwielbienie, Podcasty, Świadectwa, etc.) are visible in mobile menu */
    .nav-left .nav-list > li,
    .nav-right .nav-list > li {
        display: block;
    }

    /* Show dropdown and mega submenus inline on mobile so all links are accessible without hover */
    .nav-left.active .dropdown-menu,
    .nav-right.active .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        border: none;
        padding: 0 0 0 0.5rem;
        box-shadow: none;
        width: 100%;
        min-width: 0;
    }

    .nav-right.active .mega-menu-list {
        padding: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .bm-m-full-width-slider-content {
        padding-top: 180px;
    }
    
    .bm-m-full-width-slider-content-inner img {
        height: auto;
        max-height: 55vh;
    }

    .section-title {
        font-size: 2rem;
    }

    .vision-content {
        font-size: 1rem;
    }

    .vision-section {
        padding: 5rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .language-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .bm-m-full-width-slider-content {
        padding-top: 160px;
    }
    
    .bm-m-full-width-slider-content-inner img {
        width: 90vw;
        height: auto;
        max-height: 45vh;
    }

    .bm-m-full-width-slider-title {
        font-size: 2rem;
    }

    .bm-m-full-width-slider-subtitle {
        font-size: 1rem;
    }

    .bm-m-full-width-slider-text {
        padding: 2rem 1.5rem;
        width: 90vw;
        bottom: -40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
        background: transparent;
    }

    .bm-m-full-width-slider-content {
        padding: 1rem;
        padding-top: 140px;
    }

    .bm-m-full-width-slider-content-inner img {
        width: 95vw;
        height: auto;
        max-height: 40vh;
    }

    .bm-m-full-width-slider-title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .bm-m-full-width-slider-subtitle {
        font-size: 0.9rem;
    }

    .bm-m-full-width-slider-text {
        padding: 1.5rem 1rem;
        width: 95vw;
        bottom: -30px;
    }

    .vision-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .vision-content {
        font-size: 0.95rem;
        text-align: left;
    }

    .feed-section {
        padding: 4rem 1.5rem;
    }

    .feed-section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .feed-posts {
        gap: 1.5rem;
    }

    .aktualnosci-card {
        flex-direction: column;
        align-items: stretch;
    }

    .aktualnosci-date-block {
        min-width: auto;
        padding: 1.25rem;
    }

    .aktualnosci-day {
        font-size: 2.5rem;
    }

    .aktualnosci-bar {
        width: 100%;
        min-height: 1px;
        height: 1px;
    }

    .aktualnosci-event {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .feed-post-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .feed-post-content {
        padding: 1.25rem;
    }

    .feed-post-actions {
        padding: 0.75rem 1.25rem;
    }

    .feed-verse-text {
        font-size: 1.1rem;
    }

    .feed-meditation-title {
        font-size: 1.2rem;
    }

    .feed-meditation-text {
        font-size: 1rem;
    }
}
