@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Merriweather:wght@300;400;700&display=swap');

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

body {
    font-family: 'Merriweather', serif;
    line-height: 1.8;
    color: #f0e6dc;
    background-color: #0f0b0c;
    background-image: url('../images/tarot-bg-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    font-size: 18px;
}

h1, h2, h3, h4, .logo a, .btn, .main-nav a {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.site-header {
    background-color: #0a0508;
    background-image: radial-gradient(circle at 20% 30%, rgba(80, 50, 35, 0.3) 0%, transparent 60%), radial-gradient(circle at 80% 70%, rgba(45, 25, 40, 0.35) 0%, transparent 60%);
    border-bottom: 2px solid #b89b7a;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo a {
    color: #e6d3bb;
    text-decoration: none;
    font-size: 1.9rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.logo a:hover {
    color: #ffffff;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: #d4c0a9;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 3px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
    white-space: nowrap;
}

.main-nav a:hover {
    border-bottom-color: #b89b7a;
    color: #ffffff;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    color: #d4c0a9;
    font-size: 1.6rem;
    transition: color 0.2s;
}

.header-social a:hover {
    color: #ffffff;
}

.lang-form select {
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid #b89b7a;
    background: #1e1418;
    color: #f0e6dc;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #f5e9dd;
    padding: 6rem 0;
    text-align: center;
    border-bottom: 2px solid #b89b7a;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-style: italic;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin: 3.5rem 0 2.5rem;
    color: #e6d3bb;
    text-transform: uppercase;
}

.section-title:after {
    content: '◆';
    display: block;
    font-size: 1.5rem;
    color: #b89b7a;
    margin-top: 0.5rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0 4rem;
}

.card {
    background: radial-gradient(circle at top left, rgba(70, 45, 35, 0.3), rgba(15, 8, 10, 0.95));
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid #7a5a4a;
    box-shadow: 0 0 20px rgba(60, 40, 30, 0.25);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #b89b7a;
    box-shadow: 0 0 30px rgba(140, 100, 70, 0.3);
}

.card h3 {
    color: #e6d3bb;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.card p {
    color: #cfc1b2;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card .btn {
    margin-top: auto;
}

.btn {
    display: inline-block;
    background: transparent;
    color: #e6d3bb;
    padding: 14px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #b89b7a;
    transition: background 0.2s, color 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: #b89b7a;
    color: #0f0b0c;
}

.btn:hover i {
    color: inherit;
}

.bullet-list {
    background: radial-gradient(circle at bottom right, rgba(60, 40, 30, 0.35), rgba(10, 5, 8, 0.95));
    backdrop-filter: blur(4px);
    padding: 3rem;
    border-radius: 30px;
    margin: 4rem 0;
    border: 1px solid #7a5a4a;
    box-shadow: 0 0 25px rgba(60, 40, 30, 0.2);
}

.bullet-list h3 {
    color: #e6d3bb;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.bullet-list ul {
    list-style: none;
    columns: 2;
    column-gap: 4rem;
}

.bullet-list li {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    color: #e0d3c7;
    break-inside: avoid;
}

.testimonial-card {
    background: radial-gradient(ellipse at left, rgba(65, 40, 35, 0.3), rgba(20, 10, 12, 0.95));
    backdrop-filter: blur(4px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border-left: 8px solid #b89b7a;
    box-shadow: 0 0 20px rgba(50, 30, 25, 0.2);
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 0 30px rgba(140, 100, 70, 0.25);
}

.testimonial-card p {
    font-size: 1.4rem;
    font-style: italic;
    color: #e6d9ce;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1.5rem;
    color: #e6d3bb;
    font-size: 1.3rem;
    text-align: right;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 4rem 0;
}

.contact-card {
    background: radial-gradient(circle at 80% 20%, rgba(55, 35, 30, 0.3), rgba(20, 12, 15, 0.95));
    backdrop-filter: blur(4px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #7a5a4a;
    box-shadow: 0 0 20px rgba(50, 30, 25, 0.2);
    transition: border-color 0.2s, box-shadow 0.2s;
    flex: 1 1 300px;
}

.contact-card:hover {
    border-color: #b89b7a;
    box-shadow: 0 0 30px rgba(140, 100, 70, 0.25);
}

.contact-card i {
    font-size: 3rem;
    color: #b89b7a;
    margin-bottom: 1.5rem;
}

.whatsapp-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4caf50;
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 2rem;
}

.social-links a {
    color: #d4c0a9;
    font-size: 2.5rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #ffffff;
}

.pricing-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}

.pricing-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid #5e4b3c;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: transform 0.2s;
}

.pricing-image:hover {
    transform: scale(1.02);
    border-color: #b89b7a;
}

.about-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem 0 4rem;
    align-items: center;
}

.about-image-wrapper {
    flex: 1 1 350px;
    text-align: center;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #b89b7a;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: zoom-in;
}

.about-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.about-description {
    flex: 2 1 500px;
    background: radial-gradient(circle at 30% 20%, rgba(70, 45, 35, 0.25), rgba(15, 8, 10, 0.95));
    backdrop-filter: blur(4px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #7a5a4a;
    box-shadow: 0 0 25px rgba(60, 40, 30, 0.2);
    font-size: 1.3rem;
    line-height: 1.9;
    color: #e6d9ce;
}

.about-description p {
    margin-bottom: 1.5rem;
}

/* ========================================================= */
/* --- SYSTEM LIGHTBOXA --- */
/* ========================================================= */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto; /* Pozwala przesuwać powiększone zdjęcie naturalnie */
    -webkit-overflow-scrolling: touch; 
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #b89b7a;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(15, 11, 12, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 45px;
    text-align: center;
    border: 1px solid #b89b7a;
}

/* --- PODPOWIEDŹ --- */
.zoom-hint {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(184, 155, 122, 0.9);
    color: #0f0b0c;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: bold;
    z-index: 10000;
    pointer-events: none; /* Żeby nie przeszkadzała w klikaniu w zdjęcie */
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    animation: fadeInOut 2.5s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.lightbox-content {
    margin: 50px auto; 
    display: block; 
    max-width: 95%; 
    height: auto;
    border: 2px solid #b89b7a;
    cursor: zoom-in;
    transition: width 0.3s ease; 
}

.lightbox-content.zoomed {
    max-width: none;
    width: 200%; 
    cursor: zoom-out;
    margin: 50px 20px; 
}

/* ========================================================= */
/* --- POWRÓT STYLI MEDIA --- */
/* ========================================================= */

.site-footer {
    background: #0a0508;
    border-top: 2px solid #b89b7a;
    color: #b8a089;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 5rem;
    font-size: 1.1rem;
}

.process-intro {
    max-width: 900px;
    margin: 0 auto 3.5rem;
    text-align: center;
    font-size: 1.3rem;
    color: #e6d9ce;
    line-height: 1.8;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3.5rem 0;
}

.process-step {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    background: radial-gradient(circle at top left, rgba(70, 45, 35, 0.25), rgba(15, 8, 10, 0.9));
    backdrop-filter: blur(4px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #7a5a4a;
    box-shadow: 0 0 20px rgba(60, 40, 30, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.process-step:hover {
    transform: translateX(8px);
    box-shadow: 0 0 40px rgba(184, 155, 122, 0.25);
    border-color: #b89b7a;
}

.step-symbol {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #b89b7a;
    text-shadow: 0 0 20px rgba(184, 155, 122, 0.6);
    background: radial-gradient(circle at center, rgba(184, 155, 122, 0.1), transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 15px rgba(184, 155, 122, 0.4); }
    50% { text-shadow: 0 0 30px rgba(184, 155, 122, 0.8); }
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #e6d3bb;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 155, 122, 0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.step-content p {
    color: #cfc1b2;
    font-size: 1.2rem;
    line-height: 1.8;
}

.audio-sample {
    margin: 4.5rem 0 2.5rem;
    padding: 3rem;
    background: radial-gradient(circle at bottom right, rgba(60, 40, 30, 0.3), rgba(10, 5, 8, 0.95));
    backdrop-filter: blur(4px);
    border-radius: 30px;
    border: 1px solid #7a5a4a;
    box-shadow: 0 0 30px rgba(60, 40, 30, 0.25);
    text-align: center;
}

.audio-sample h3 {
    color: #e6d3bb;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.audio-sample h3:before,
.audio-sample h3:after {
    content: '◆';
    color: #b89b7a;
    font-size: 1.5rem;
    margin: 0 15px;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(184, 155, 122, 0.5);
}

.audio-sample p {
    color: #cfc1b2;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.audio-player {
    max-width: 600px;
    margin: 0 auto;
}

.audio-player audio {
    width: 100%;
    border-radius: 40px;
    background: #1e1418;
    border: 1px solid #b89b7a;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

audio::-webkit-media-controls-panel {
    background-color: #2a1a1a;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: #e6d3bb;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
    filter: invert(0.7);
}

@media (max-width: 768px) {
    .process-intro {
        font-size: 1.1rem;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .step-symbol {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }
    
    .step-content h3 {
        font-size: 1.6rem;
    }
    
    .step-content p {
        font-size: 1.1rem;
    }
    
    .audio-sample {
        padding: 2rem;
    }
    
    .audio-sample h3 {
        font-size: 1.8rem;
    }
    
    .audio-sample h3:before,
    .audio-sample h3:after {
        display: none;
    }
}

@media (max-width: 1100px) {
    .main-nav a {
        font-size: 1rem;
    }
    .main-nav ul {
        gap: 1rem;
    }
    .header-social a {
        font-size: 1.4rem;
    }
}

@media (max-width: 950px) {
    .header-container {
        flex-direction: column;
        gap: 8px;
    }
    .logo a {
        font-size: 2rem;
    }
    .main-nav ul {
        gap: 1.5rem;
    }
    .main-nav a {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
    .bullet-list ul {
        columns: 1;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .main-nav a {
        white-space: normal;
        font-size: 1rem;
    }
    .about-section {
        flex-direction: column-reverse;
    }
    .about-photo {
        max-width: 300px;
    }
    .header-social {
        gap: 20px;
    }
}

@media (min-width: 769px) {
    .contact-methods {
        flex-wrap: nowrap;
    }
}