
:root {
    /* Kolory główne  */
    --primary-color: #C9A87C;        
    --primary-dark: #8B6F47;         
    --primary-light: #F5E6D3;       
    
    --secondary-color: #A68968;      
    --accent-color: #D4B896;         
    
    --text-dark: #2C2C2C;            
    --text-light: #F8F8F8;           
    --text-gray: #666666;            
    
    --background: #FFFFFF;
    --background-light: #FAFAFA;
    --background-section: #FBF8F3;
    
    /* Cienie */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    
    /* Fonty */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 20px;
}

/* ===========================
   RESET & PODSTAWY
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===========================
   Typografia
   =========================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

/* ===========================
   przyciski
   =========================== */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-light);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.9rem;
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    
    flex-wrap: wrap;
}

/* ===========================
   SLIDE-IN PROMOCYJNY
   =========================== */
.promo-slide-in {
    position: fixed;
    bottom: 20px;
    right: -400px;
    width: 340px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--background-section) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.promo-slide-in.show {
    right: 20px;
}

.promo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

.promo-close:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.promo-slide-content {
    padding: 25px 20px;
    text-align: center;
}

.promo-slide-icon {
    font-size: 40px;
    margin-bottom: 10px;
    animation: bounceSmall 1.5s infinite;
}

@keyframes bounceSmall {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.promo-slide-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.promo-slide-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.promo-slide-discount {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(201, 168, 124, 0.4);
}

.promo-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.promo-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .promo-slide-in {
        width: calc(100% - 40px);
        right: -100%;
    }
    
    .promo-slide-in.show {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .promo-slide-in {
        bottom: 10px;
        width: calc(100% - 20px);
    }
    
    .promo-slide-in.show {
        right: 10px;
    }
    
    .promo-slide-content {
        padding: 20px 15px;
    }
}

/* ===========================
   Nawigacja
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.mobile-only {
    display: none;
}

/* ===========================
   Przycisk 
   =========================== */
.floating-book-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    z-index: 999;
    display: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===========================
   Sekcja HERO
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-image: url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-address,
.hero-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-phone a {
    color: white;
}

.btn-hero {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* ===========================
   sekcja STATYSTYKI
   =========================== */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 20px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-suffix {
    display: inline-block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-left: 5px;
    vertical-align: super;
}

.stat-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 5px;
}

/* ===========================
   sekcja USŁUGI
   =========================== */
.services {
    padding: var(--section-padding);
    background: var(--background-section);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}


@media (min-width: 768px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
    
    
    .service-card {
        grid-column: span 2;
    }
    
  
    .service-card:nth-child(4) {
        grid-column: 2 / 4;
    }
    
    .service-card:nth-child(5) {
        grid-column: 4 / 6;
    }
}


@media (min-width: 1400px) {
    .services-grid {
        max-width: 1300px;
    }
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-toggle svg {
    transition: transform 0.3s ease;
    color: var(--primary-dark);
}

.service-card.active .service-toggle {
    background: var(--primary-color);
}

.service-card.active .service-toggle svg {
    transform: rotate(180deg);
    color: white;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-card.active .service-details {
    max-height: 200px;
}

.service-description {
    color: var(--text-gray);
    margin: 1rem 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 1rem;
}

/* ===========================
   SeKCJA O NAS
   =========================== */
.about {
    padding: var(--section-padding);
    background: white;
}

.team-grid {
    display: grid;
    gap: 50px;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.team-member:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.team-member:nth-child(even) .team-photo {
    order: 2;
}

.team-photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-photo:hover img {
    transform: scale(1.05);
}

.team-name {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===========================
   sekcja GALERIA
   =========================== */
.gallery {
    padding: var(--section-padding);
    background: var(--background-section);
}

/* Desktop  */
.gallery-desktop-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.gallery-grid-wrapper {
    overflow: hidden;
    flex: 1;
}

.gallery-grid {
    display: flex;
    
    transition: transform 0.5s ease;
}

.gallery-item {
    flex: 0 0 20%; padding: 0 8px; box-sizing: border-box;
    min-width: 20%;
}

.gallery-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(175, 138, 107, 0.3);
}

.gallery-nav-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(175, 138, 107, 0.4);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

.gallery-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsywność galerii */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(20, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-desktop-container {
        display: none;
    }

    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    background: var(--primary-light);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Mobile Slider */
.gallery-slider {
    display: none;
    position: relative;
    align-items: center;
    
}

.slider-container {
    overflow: hidden;
    border-radius: 15px;
    flex: 1;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-track img {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 1;
    object-fit: cover;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.slider-btn:hover {
    background: var(--primary-light);
}

/* ===========================
    sekcja OPINIE
   =========================== */
.reviews {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-light), var(--background));
}

.reviews-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 250px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.review-author {
    font-weight: 600;
    color: var(--primary-dark);
}

.review-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===========================
   FAQ sekcja
   =========================== */
.faq {
    padding: var(--section-padding);
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--primary-light);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===========================
   sekcja KONTAKT
   =========================== */
.contact {
    padding: var(--section-padding);
    background: var(--background-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Główne CTA */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.contact-hero h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.contact-hero-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    
    margin: 25px 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-phone svg {
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.contact-phone a {
    color: white;
    text-decoration: none;
}

.contact-phone a:hover {
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
}

.contact-buttons .btn-secondary {
    background: white;
    color: var(--primary-dark);
}

.contact-buttons .btn-secondary:hover {
    background: var(--primary-light);
}

/* Karty z informacjami */
.contact-details {
    display: grid;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-sm);
}

.contact-card h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: var(--primary-dark);
    font-weight: 500;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card-content {
    flex: 1;
}

.btn-navigation {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin-top: 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-navigation:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-navigation svg {
    flex-shrink: 0;
}

.contact-note {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
    height: 100%;
    grid-row: 1 / 3;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    
}

.footer-legal a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ===========================
   MODAL (Privacy Policy)
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.privacy-content h3 {
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin-left: 20px;
    color: var(--text-gray);
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-date {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-gray);
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */
@media (max-width: 968px) {
    :root {
        --section-padding: 60px 0;
    }

    .team-member,
    .team-member:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .team-member:nth-child(even) .team-photo {
        order: 1;
    }

    .team-photo {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map {
        grid-row: auto;
        min-height: 350px;
    }

    .contact-hero {
        padding: 30px 25px;
    }

    .contact-hero h3 {
        font-size: 1.6rem;
    }

    .contact-phone {
        font-size: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn-primary,
    .contact-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================
   RESPONSIVE - MOBILE
   =========================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-only {
        display: block;
    }

    .floating-book-btn {
        display: block;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-info {
        flex-direction: column;
        
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-desktop-container {
        display: none;
    }

    .gallery-slider {
        display: flex;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   a
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===========================
   przydatne klasy pomocnicze
   =========================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===========================
   galeria LIGHTBOX
   =========================== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* tele lightbox controls */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-modal img {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* galeria kursor */
.gallery-item {
    cursor: pointer;
}

.gallery-slider .slider-track img {
    min-width: 100%;
    cursor: pointer;
}

