
/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    line-height: 1.6;
}

a {
    color: #b3a369;
    text-decoration: none;
}

a:hover {
    color: #d4c28a;
}

/* Nagłówek i menu */
header {
    background-color: #11111f;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem; /* odległość między logo a tekstem – możesz zmienić (np. 0.8rem) */
}


.logo-img {
    height: 60px;           /* wysokość dopasowana do headera */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;    /* tekst w jednej linii */
}

/* Responsywność – na małych ekranach mniejsze logo i tekst */
@media (max-width: 868px) {
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-container {
        gap: 0.8rem;
    }
    
    header nav {
        padding: 0.8rem 1.5rem;
    }
}

/* Przerobiona sekcja hero – logo po lewej, tekst po prawej */
.hero {
    min-height: 1300px;

    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                url('https://via.placeholder.com/1920x1080/11111f/333333?text=Nocna+Droga+Krzyżowa') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 2rem;
    margin-top: 70px; /* przestrzeń pod fixed header */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
}

.hero-logo {
    flex: 1;
    min-width: 300px;
}

.hero-big-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.hero-text {
    flex: 1.2;
    color: #e0e0e0;
}

.hero-text h1 {
    font-size: 4.5rem;
    color: #b3a369;
    margin-bottom: 1rem;
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #d4c28a;
}

.hero-text p {
    font-size: 1.4rem;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.hero-text .btn {
    font-size: 1.4rem;
    padding: 1.2rem 3rem;
}

/* Responsywność – na małych ekranach logo na górze */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-logo {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-big-logo {
        max-width: 450px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
}


nav {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #b3a369;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #b3a369;
}

/* Hero section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                url('https://via.placeholder.com/1920x1080/11111f/333333?text=Nocna+Droga+Krzyżowa') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: 70px; /* przestrzeń pod fixed header */
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #b3a369;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

.btn {
    background-color: #b3a369;
    color: #11111f;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #d4c28a;
}

/* Stopka */
footer {
    background-color: #11111f;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsywność */
@media (max-width: 868px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #11111f;
        padding: 1rem 0;
    }

    .menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Strona rozważań */
.page-content {
    padding-top: 100px; /* przestrzeń pod fixed header */
    background-color: #0f0f1a;
}

.page-title {
    text-align: center;
    font-size: 3.5rem;
    color: #b3a369;
    margin-bottom: 3rem;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.station-tile {
    background-color: #11111f;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.station-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(179, 163, 105, 0.2);
}

.station-tile h2 {
    font-size: 2rem;
    color: #b3a369;
    margin-bottom: 0.5rem;
}

.station-tile h3 {
    font-size: 1.3rem;
    color: #e0e0e0;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 868px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .station-tile h2 {
        font-size: 1.8rem;
    }
    
    .station-tile h3 {
        font-size: 1.2rem;
    }
}

/* Ulepszone kafelki stacji */
.station-tile {
    background-color: #11111f;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    border: 3px solid #b3a369;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.station-tile:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(179, 163, 105, 0.3);
    border-color: #d4c28a;
}

.station-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 1.8rem;
    border: 5px solid #b3a369;
    box-shadow: 0 0 15px rgba(179, 163, 105, 0.4);
}

.station-tile h2 {
    font-size: 2.8rem;
    color: #d4c28a;
    margin-bottom: 0.8rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.8);
}

.station-tile h3 {
    font-size: 1.5rem;
    color: #f0f0f0;
    font-weight: 500;
}

/* Strona zapisy - formularz */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.registration-form {
    background-color: #11111f;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}


.form-group input:focus {
    outline: none;
    border-color: #d4c28a;
    box-shadow: 0 0 10px rgba(212, 194, 138, 0.3);
}

/* Ujednolicenie wszystkich pól formularza (tekst, email, tel, password) */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 100%;
    padding: 1rem;
    background-color: #0f0f1a;     /* ciemne tło jak reszta strony */
    border: 2px solid #b3a369;      /* złota ramka */
    border-radius: 8px;
    color: #e0e0e0;                /* jasny tekst */
    font-size: 1rem;
    transition: border-color 0.3s ease;
}


.form-group input[type="password"]::-ms-reveal,
.form-group input[type="password"]::-ms-clear {
    display: none;                 /* ukrywa domyślne ikonki w Edge/IE */
}

.form-group input[type="password"]::placeholder {
    color: #888;                   
}


.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    background-color: #b3a369;
    color: #11111f;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #d4c28a;
}

.form-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #b3a369;
    min-height: 300px;
}

/* Responsywność */
@media (max-width: 868px) {
    .registration-form {
        padding: 2rem 1.5rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

/* Strona trasy - mapa */
.routes-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.route-info {
    font-size: 1.2rem;
    color: #b3a369;
    margin-top: 1.5rem;
}

.map-container {
    max-width: 100%;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 100vh;
    min-height: 500px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.map-attribution {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #888;
}

.map-attribution a {
    color: #b3a369;
}

.directions-form {
    width: 100%;
}

#map {
     min-height: 70vh;
}

.additional-info {
    margin-top: 2rem;
    margin-bottom: 0;
}

/* Responsywność */
@media (max-width: 868px) {
    .map-container iframe {
        height: 60vh;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

.panel_wpr {
            flex: 1 1 280px; /* Każdy panel rośnie, minimalna szerokość 280px – pola będą szersze */
            min-width: 250px;
        }

        .panel_wpr input,
        .panel_wpr select {
            width: 100%;              /* Pole wypełnia całą szerokość swojego panelu */
            box-sizing: border-box;   /* Uwzględnia padding i border w szerokości */
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .panel_wpr button {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            background: #b3a369;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .panel_wpr button:hover {
            background: #9c8d55;
        }

        @media (max-width: 868px) {
            .panel_wpr {
                flex: 1 1 100%; /* Na telefonie każdy panel na pełną szerokość */
            }
        }

        /* Strona O nas */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.8rem;
}

.section-subtitle {
    font-size: 2rem;
    color: #b3a369;
    margin: 2.5rem 0 1.2rem;
    text-align: left;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.about-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.about-list li::before {
    content: "✝";
    position: absolute;
    left: 0;
    color: #b3a369;
    font-size: 1.3rem;
}

.closing-text {
    font-size: 1.3rem;
    color: #d4c28a;
    font-style: italic;
    text-align: center;
    margin-top: 3rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

/* Responsywność */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-text {
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
    }
    
    .about-list {
        text-align: left;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.8rem;
    }
}

.station-tile-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.station-tile-link:hover .station-tile {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(179, 163, 105, 0.3);
    border-color: #d4c28a;
}

/* Strona pojedynczej stacji */
.station-page {
    padding-top: 100px;
    min-height: 100vh;
}

.back-link {
    display: block;
    text-align: center;
    margin: 1rem auto 2rem;
    font-size: 1.1rem;
    color: #b3a369;
}

.station-title {
    text-align: center;
    font-size: 4rem;
    color: #d4c28a;
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.8);
}

.station-subtitle {
    text-align: center;
    font-size: 2.2rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
}

.station-large-image {
    display: block;
    max-width: 900px;
    width: 90%;
    margin: 0 auto 3rem;
    border-radius: 15px;
    border: 4px solid #b3a369;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.meditation-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    font-size: 1.2rem;
    line-height: 1.9;
}

.meditation-text h3 {
    font-size: 1.8rem;
    color: #b3a369;
    margin: 2.5rem 0 1rem;
    text-align: center;
}

.meditation-text p {
    margin-bottom: 1.8rem;
    text-align: justify;
}

.meditation-text strong {
    color: #d4c28a;
    font-size: 1.3rem;
}

.meditation-text em {
    color: #b3a369;
    font-size: 1.2rem;
    display: block;
    margin: 1rem 0;
}

/* Responsywność */
@media (max-width: 768px) {
    .station-title {
        font-size: 3rem;
    }
    .station-subtitle {
        font-size: 1.8rem;
    }
    .meditation-text {
        font-size: 1.1rem;
    }
}

/* Strona potwierdzenia zapisu */
.confirmation-page {
    padding-top: 100px;
    min-height: 100vh;
    text-align: center;
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.confirmation-icon {
    font-size: 6rem;
    color: #b3a369;
    margin-bottom: 2rem;
}

.confirmation-message {
    font-size: 1.8rem;
    color: #d4c28a;
    margin-bottom: 3rem;
}

.summary-box {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.summary-box h2 {
    font-size: 2rem;
    color: #b3a369;
    text-align: center;
    margin-bottom: 2rem;
}

.summary-list {
    list-style: none;
    padding: 0;
}

.summary-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list strong {
    color: #b3a369;
}

.additional-info {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.back-home-btn {
    display: inline-block;
    margin-top: 1rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .confirmation-icon {
        font-size: 5rem;
    }
    
    .confirmation-message {
        font-size: 1.6rem;
    }
    
    .summary-box {
        padding: 2rem;
    }
}

/* Strona Do pobrania */
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #e0e0e0;
    padding: 0 2rem;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.download-card {
    background-color: #11111f;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(179, 163, 105, 0.25);
}

.download-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #b3a369;
}

.download-card h2 {
    font-size: 1.9rem;
    color: #d4c28a;
    margin-bottom: 1rem;
}

.file-info {
    font-size: 1rem;
    color: #888;
    margin: 1rem 0 1.8rem;
}

.download-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    background-color: #b3a369;
    color: #11111f;
    border: none;
}

.download-btn:hover {
    background-color: #d4c28a;
}

.additional-info {
    text-align: center;
    font-size: 1.1rem;
    color: #b3a369;
    margin: 2rem auto 4rem;
    max-width: 800px;
    padding: 0 2rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .download-icon {
        font-size: 4rem;
    }
}


/* Strona konto / logowanie */
.login-form-container {
    max-width: 500px;
}

.welcome-message {
    text-align: center;
    font-size: 1.8rem;
    color: #d4c28a;
    margin-bottom: 3rem;
}

.account-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    text-align: center;
}

.account-info {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.account-info h2 {
    text-align: center;
    color: #b3a369;
    margin-bottom: 1.5rem;
}

.logout-btn {
    background-color: #8b0000; /* ciemny czerwony */
}

.logout-btn:hover {
    background-color: #a00000;
}

.error-message {
    color: #ff6666;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.register-link {
    color: #b3a369;
    font-weight: bold;
    text-decoration: underline;
}

.register-link:hover {
    color: #d4c28a;
}

.success-message {
    color: #b3a369;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.user-panel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.header-welcome {
    color: #b3a369;
    font-weight: 500;
}

#header-logout {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
}

/* Na mobile – panel użytkownika pod menu */
@media (max-width: 768px) {
    .user-panel {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        order: 4; /* po menu */
    }
}


.section-subtitle {
    margin: 2.5rem 0 1.5rem;
    font-size: 2rem;
    color: #b3a369;
    text-align: center;
}


.section-zapis {
    margin: 2.5rem 0 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
}

.registrations-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #11111f;
    border: 2px solid #b3a369;
    border-radius: 12px;
    overflow: hidden;
}

.registrations-table th,
.registrations-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.registrations-table th {
    background-color: #0f0f1a;
    color: #b3a369;
}

.registrations-table tr:last-child td {
    border-bottom: none;
}

.registrations-table tr:hover {
    background-color: rgba(179, 163, 105, 0.1);
}

/* Strona Pakiety */
.packages-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.package-item {
    background-color: #11111f;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(179, 163, 105, 0.25);
}

.package-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #b3a369;
    object-fit: cover;
}

.package-item h3 {
    font-size: 1.8rem;
    color: #d4c28a;
    margin-bottom: 1rem;
}

.package-item p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.additional-info {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: #b3a369;
}

/* Responsywność */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-icon {
        width: 100px;
        height: 100px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

/* Strona o św. Franciszku */
.saint-container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.saint-image {
    flex: 1;
    min-width: 300px;
}

.saint-photo {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    border: 4px solid #b3a369;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.saint-text {
    flex: 1.5;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.saint-text p {
    margin-bottom: 1.8rem;
}

/* Responsywność – na małych ekranach jedno pod drugim */
@media (max-width: 992px) {
    .saint-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .saint-image {
        order: 1;
    }
    
    .saint-text {
        order: 2;
        text-align: center;
    }
    
    .saint-photo {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .saint-text {
        font-size: 1.1rem;
    }
}

/* Strona Przygotowanie */
.preparation-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.preparation-sections {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.preparation-section {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-size: 2.2rem;
    color: #d4c28a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.preparation-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.preparation-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.preparation-list li::before {
    content: "✝";
    position: absolute;
    left: 0;
    color: #b3a369;
    font-size: 1.3rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .preparation-section {
        padding: 2rem;
    }
    
    .section-subtitle {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

/* Strona Idea */
.idea-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.idea-intro {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.idea-essence {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin-bottom: 3rem;
}

.idea-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.idea-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.idea-list li::before {
    content: "✝";
    position: absolute;
    left: 0;
    color: #b3a369;
    font-size: 1.5rem;
    top: -0.1rem;
}

.idea-reflection {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.idea-reflection p {
    margin-bottom: 2rem;
}

.idea-quote {
    display: block;
    font-size: 1.4rem;
    font-style: italic;
    color: #d4c28a;
    background-color: rgba(179, 163, 105, 0.1);
    padding: 2rem;
    border-left: 5px solid #b3a369;
    margin: 2.5rem 0;
    text-align: center;
    border-radius: 0 12px 12px 0;
}

/* Responsywność */
@media (max-width: 768px) {
    .idea-intro,
    .idea-essence,
    .idea-reflection {
        padding: 2rem;
    }
    
    .idea-quote {
        font-size: 1.25rem;
        padding: 1.5rem;
    }
    
    .idea-list li {
        padding-left: 2rem;
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

.idea-night {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin-top: 3rem;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.idea-night p {
    margin-bottom: 2rem;
}

.idea-quote.large {
    font-size: 1.8rem;
    padding: 2.5rem;
    margin: 0 0 3rem 0;
}

.idea-numbered-list {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
    font-size: 1.25rem;
    line-height: 2;
}

.idea-numbered-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.idea-numbered-list li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    color: #b3a369;
    font-weight: bold;
    font-size: 1.6rem;
    top: -0.2rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .idea-night {
        padding: 2rem;
    }
    
    .idea-quote.large {
        font-size: 1.5rem;
        padding: 2rem;
    }
    
    .idea-numbered-list li {
        padding-left: 2.5rem;
    }
    
    .idea-numbered-list li::before {
        font-size: 1.4rem;
    }
}

.idea-values {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin-top: 3rem;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.value-section {
    margin-bottom: 3rem;
}

.value-section:last-child {
    margin-bottom: 0;
}

.value-title {
    font-size: 2rem;
    color: #d4c28a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.idea-values p {
    margin-bottom: 2rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .idea-values {
        padding: 2rem;
    }
    
    .value-title {
        font-size: 1.8rem;
    }
}

/* Stopka – rozbudowana */
footer {
    background-color: #11111f;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid #b3a369;
    color: #e0e0e0;
    font-size: 1rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b3a369;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #d4c28a;
}

.footer-icon {
    width: 28px;
    height: 28px;
}

.footer-link-text {
    white-space: nowrap;
}

.footer-user-btn {
    background-color: #b3a369;
    color: #11111f;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-user-btn:hover {
    background-color: #d4c28a;
}

.footer-bottom {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    font-size: 0.95rem;
    color: #888;
}

/* Responsywność */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
    
    .footer-user-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Kontener główny dla sekcji ważnych informacji */
.important-container {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

/* Sekcja ostrzeżenia – wyróżniona ramką i kolorem */
.important-warning {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 4px solid #b36969; /* lekko czerwono-złoty dla ostrzeżenia */
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.warning-title {
    font-size: 2.4rem;
    color: #d4c28a;
    text-align: center;
    margin-bottom: 1.5rem;
}

.important-warning p {
    margin-bottom: 1.8rem;
}

/* Styl dla istniejącej klasy idea-values – wykorzystany do drugiej części */
.idea-values {
    background-color: #11111f;
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.value-title {
    font-size: 2.2rem;
    color: #d4c28a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.idea-values p {
    margin-bottom: 2rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .important-warning,
    .idea-values {
        padding: 2rem;
    }
    
    .warning-title,
    .value-title {
        font-size: 2rem;
    }
}

.important-section {
    border: 4px solid #d4c28a; /* jaśniejsza złota ramka dla całej sekcji */
    margin-top: 3rem;
}

.warning {
    background-color: rgba(179, 163, 105, 0.15); /* delikatne złote tło dla ostrzeżenia */
    border-left: 6px solid #b3a369;
    padding-left: 2.5rem;
    margin-bottom: 3rem;
}

.warning-text {
    font-size: 1.4rem;
    color: #d4c28a;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

/* Responsywność */
@media (max-width: 768px) {
    .warning {
        padding-left: 2rem;
    }
    
    .warning-text {
        font-size: 1.3rem;
    }
}

.challenge-section {
    border: 4px solid #d4c28a; /* jaśniejsza złota ramka dla wyróżnienia */
    margin-top: 3rem;
}

.value-subtitle {
    font-size: 1.6rem;
    color: #d4c28a;
    margin: 2.5rem 0 1.5rem;
    text-align: center;
}

/* Lekko mocniejsze podkreślenie kluczowych fragmentów */
.value-section p strong {
    color: #d4c28a;
    font-weight: 600;
}

/* Responsywność */
@media (max-width: 768px) {
    .value-subtitle {
        font-size: 1.5rem;
    }
}


.bible-section {
    border: 4px solid #d4c28a; /* jaśniejsza złota ramka dla wyróżnienia biblijnej sekcji */
    margin-top: 3rem;
}

/* Mocniejsze podkreślenie biblijnych przykładów */
.value-section p strong {
    color: #d4c28a;
    font-weight: 600;
    font-size: 1.25rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .bible-section {
        padding: 2rem;
    }
    
    .value-section p strong {
        font-size: 1.2rem;
    }
}

.francis-text {
    flex: 1.5;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.francis-section {
    border: 4px solid #d4c28a; /* jaśniejsza złota ramka dla wyróżnienia franciszkańskiej sekcji */
    margin-top: 3rem;
}

.francis-container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 2rem;
}

.francis-image {
    flex: 1;
    text-align: center;
}

.francis-photo {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    border: 4px solid #b3a369;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.image-caption {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: #d4c28a;
    font-style: italic;
}

.francis-text {
    flex: 1.5;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.francis-text p {
    margin-bottom: 2rem;
}



/* Responsywność – na małych ekranach jedno pod drugim */
@media (max-width: 992px) {
    .francis-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .francis-image {
        order: 1;
    }
    
    .francis-text {
        order: 2;
        text-align: center;
    }
    
    .francis-photo {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .francis-text {
        font-size: 1.1rem;
    }
    
    .image-caption {
        font-size: 1.2rem;
    }
}

.francis-elements {
    border: 4px solid #d4c28a; /* jaśniejsza złota ramka dla franciszkańskich elementów */
    margin-top: 3rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .francis-elements {
        padding: 2rem;
    }
}

.francis-container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 2rem;
}

/* Usunięto min-width – teraz elastyczne i responsywne */
.francis-image {
    flex: 1;
    text-align: center;
    /* Brak min-width – div dostosowuje się do zawartości */
    max-width: 100%;           /* Nie wychodzi poza kontener */
    padding: 0 1rem;           /* Lekki padding na bardzo małych ekranach */
    box-sizing: border-box;    /* Ramka i padding wliczane w szerokość */
}

.francis-photo {
    width: 100%;               /* Zawsze wypełnia dostępną szerokość diva */
    max-width: 500px;          /* Maksymalna szerokość na dużych ekranach – dostosuj jeśli chcesz mniejszą */
    height: auto;              /* Zachowuje proporcje */
    object-fit: contain;       /* Zdjęcie nie jest obcinane, mieści się w całości */
    border-radius: 15px;
    border: 4px solid #b3a369;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: block;
    margin: 0 auto;            /* Wyśrodkowanie zdjęcia w divie */
}

.image-caption {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: #d4c28a;
    font-style: italic;
}

/* Responsywność – na małych ekranach column i mniejsze odstępy */
@media (max-width: 992px) {
    .francis-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .francis-image {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .francis-photo {
        max-width: 90%;        /* Na mobile trochę mniejsze, aby zmieścić ramkę */
    }
}

@media (max-width: 480px) {
    .francis-photo {
        max-width: 100%;       /* Na bardzo małych ekranach pełne wykorzystanie */
        border-width: 3px;     /* Cieńsza ramka, aby nie wychodziła */
    }
    
    .image-caption {
        font-size: 1.1rem;
    }
}

/* ────────────────────────────────────────────────
   Styl dla pola wyboru trasy – identyczny jak inputy
───────────────────────────────────────────────── */

.form-group select {
    width:          100%;
    padding:        1rem;               /* taki sam jak w inputach */
    background-color: #0f0f1a;          /* dokładnie to samo tło */
    border:         2px solid #b3a369;  /* ta sama złota ramka */
    border-radius:  8px;
    color:          #e0e0e0;
    font-size:      1rem;
    font-family:    inherit;            /* dziedziczy czcionkę z inputów */
    appearance:     none;               /* usuwa domyślny wygląd strzałki */
    -webkit-appearance: none;
    -moz-appearance:    none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b3a369' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Placeholder / domyślna opcja */
.form-group select option[disabled] {
    color: #888;
    font-style: italic;
}

/* Hover i focus – identycznie jak w inputach */
.form-group select:hover {
    border-color: #d4c28a;
}

.form-group select:focus {
    outline: none;
    border-color: #d4c28a;
    box-shadow: 0 0 10px rgba(212, 194, 138, 0.3);
}

/* Usuwamy domyślną strzałkę w niektórych przeglądarkach (zapasowe) */
.form-group select::-ms-expand {
    display: none;
}

/* Sekcja Zasady czuwania na stronie Rozważania */
.vigil-section {
    background-color: #11111f;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin: 3rem auto;
    max-width: 1000px;
}

.vigil-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.vigil-list {
    list-style: none;
    counter-reset: vigil-counter;
    padding-left: 0;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.vigil-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.vigil-list li::before {
    content: counter(vigil-counter) ".";
    counter-increment: vigil-counter;
    position: absolute;
    left: 0;
    color: #b3a369;
    font-weight: bold;
    font-size: 1.4rem;
    top: -0.1rem;
}

.vigil-link {
    color: #b3a369;
    text-decoration: underline;
    font-weight: 500;
}

.vigil-link:hover {
    color: #d4c28a;
}

.vigil-additional {
    margin-top: 3rem;
    background-color: rgba(179, 163, 105, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #b3a369;
}

.vigil-additional-title {
    font-size: 1.6rem;
    color: #d4c28a;
    margin-bottom: 1.2rem;
    text-align: center;
}

.vigil-additional p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Responsywność */
@media (max-width: 768px) {
    .vigil-section {
        padding: 2rem;
    }
    
    .vigil-list li {
        padding-left: 2.5rem;
    }
    
    .vigil-list li::before {
        font-size: 1.3rem;
    }
    
    .vigil-additional-title {
        font-size: 1.5rem;
    }
}

.home-vigil {
    background-color: #11111f;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin: 3rem auto;
    max-width: 1000px;
}

.vigil-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e0e0e0;
}

/* Responsywność */
@media (max-width: 768px) {
    .home-vigil {
        padding: 2rem;
    }
    
    .vigil-text p {
        font-size: 1.1rem;
    }
}

.vigil-sense {
    background-color: #11111f;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    margin: 3rem auto;
    max-width: 1000px;
}

/* Responsywność */
@media (max-width: 768px) {
    .vigil-sense {
        padding: 2rem;
    }
}


.jubilee-section {
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 1000px;
    text-align: center;
    font-size: 1.5rem
}

.jubilee-image {
    width: 80%;
    border-radius: 15px;
    border: 4px solid #b3a369;
    margin: 0 auto 2.5rem;
    display: block;
}

/* Responsywność */
@media (max-width: 992px) {
    .jubilee-image {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .jubilee-section {
        padding: 2rem;
    }
    
    .jubilee-image {
        width: 90%;
    }
}

.radio-group {
    margin-bottom: 1.5rem;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 0.8rem;
    accent-color: #b3a369; /* złoty kolor radio */
}

.conditional {
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
}

.conditional[style*="display: none"] {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.page-title {
    margin: 0;
}

#account-logout {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
}

/* Na małych ekranach – przycisk pod tytułem, wyrównany do prawej */
@media (max-width: 768px) {
    .account-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    #account-logout {
        align-self: flex-end;
    }
}

/* Spacer tylko na małych ekranach – zapobiega zakrywaniu logo przez header */
.header-spacer {
    height: 0;
    transition: height 0.3s ease;
}

@media (max-width: 992px) {
    .header-spacer {
        height: 178px;   /* ← ZMIEŃ tę wartość na rzeczywistą wysokość swojego headera na telefonie */
    }
}

@media (max-width: 480px) {
    .header-spacer {
        height: 172px;   /* opcjonalnie trochę mniejsza na bardzo małych telefonach */
    }
}


.package-info {
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.package-item {
    margin: 3rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.package-item h3 {
    margin: 0 0 1.2rem 0;
    color: #f3e9e9;
    font-size: 1.35rem;
}

.package-image {
    width: 100%;
    max-width: 1000px;          /* ← tutaj jest główna zmiana – dużo większy rozmiar */
    height: auto;
    display: block;
    margin: 1.5rem auto;       /* wyśrodkowanie */
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border: 1px solid #eee;
}

/* Opcjonalnie – responsywność na mniejszych ekranach */
@media (max-width: 600px) {
    .package-image {
        max-width: 100%;
        max-width: 300px;   
        margin: 1.2rem 0;
    }
}


.hero {
    min-height: clamp(750px, 92vh, 1300px);     /* wysokość automatycznie maleje na mniejszych ekranach */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                url('https://via.placeholder.com/1920x1080/11111f/333333?text=Nocna+Droga+Krzyżowa') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 2rem;
    margin-top: clamp(48px, 7vh, 70px);         /* odstęp od góry ekranu zmniejsza się płynnie */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2.5rem, 5vw, 4rem);
    max-width: 1400px;
    width: 100%;
}

.hero-logo {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-big-logo {
    width: 100%;
    max-width: clamp(360px, 45vw, 600px);
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.hero-text h1 {
    font-size: clamp(3rem, 7vw, 4.5rem);
    color: #b3a369;
    margin-bottom: 1rem;
    line-height: 1.05;
}

.hero-text h2 {
    font-size: clamp(1.55rem, 4.2vw, 2rem);
    margin-bottom: 1.5rem;
    color: #d4c28a;
    line-height: 1.2;
}

.hero-text p {
    font-size: clamp(1.15rem, 2.6vw, 1.4rem);
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.hero-text .btn {
    font-size: clamp(1.15rem, 2.6vw, 1.4rem);
    padding: clamp(1rem, 2.5vw, 1.2rem) clamp(2.5rem, 5vw, 3rem);
}

/* === TABLETY I MAŁE LAPTOPY (tu był główny problem) === */
@media (max-width: 1200px) {
    .hero {
        min-height: clamp(680px, 96vh, 1050px);
        margin-top: clamp(42px, 6.5vh, 62px);
    }
    .hero-container { gap: 3.2rem; }
    .hero-big-logo { max-width: clamp(340px, 48vw, 490px); }
}

/* === TELEFONY – układ i struktura dokładnie jak chciałeś (tylko minimalne skalowanie, żeby się mieściło) === */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-logo {
        order: 1;
        min-width: auto;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero {
        min-height: clamp(620px, 100vh, 850px);   /* pełna wysokość ekranu telefonu */
        margin-top: clamp(40px, 7vh, 55px);
    }
    
    .hero-big-logo {
        max-width: 420px;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;   /* sztywno jak prosiłeś wcześniej */
    }
    
    .hero-text h2 {
        font-size: 1.65rem;
    }
}

/* Strona Polityka Prywatności */
.privacy-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.privacy-date {
    text-align: center;
    font-size: 1rem;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

.privacy-container p {
    margin-bottom: 1.5rem;
}

.privacy-link {
    color: #b3a369;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #d4c28a;
}

/* Responsywność */
@media (max-width: 768px) {
    .privacy-container {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

/* Strona Multimedia – siatka */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.media-item {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #b3a369;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-10px);
}

.media-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(179, 163, 105, 0.8);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    flex-direction: column;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: #e0e0e0;
    cursor: pointer;
}

.modal-content img,
.modal-content video {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 15px;
    border: 3px solid #b3a369;
}

/* Responsywność */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .media-thumbnail {
        height: 180px;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 2.5rem;
    }
}