:root {
    --bg-color: #1a1a1a;
    --text-color: #DDDDDD;
    --accent-color: rgba(100, 180, 200, 0.9);
    /* Niebieskoszary akcent */
    --surface-color: #252525;
    --surface-hover: #2f2f2f;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* --- TYPOGRAFIA NAGŁÓWKÓW (Zmienne do szybkiej edycji) --- */
    --h1-size: 36px;
    --h1-weight: 900;
    --h2-size: 28px;
    --h2-weight: 700;
    --h3-size: 28px;
    --h3-weight: 700;
    --h4-size: 16px;
    --h4-weight: 600;
    --q-weight:100;

}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 200;
    text-align: left;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- GLOBALNE STYLE NAGŁÓWKÓW --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: #eeeeee;
    line-height: 1.3;
}

h1 {
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
}

h2 {
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
}

h3 {
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
}

h4 {
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
}

blockquote, q, .quote-style {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 100;
    font-style: italic;
}

/* --- KLASY POMOCNICZE DLA TEKSTU --- */
.lead-text {
    font-size: 1.1rem; /* ~18.4px dla wstępów */
    font-weight: 200;
    max-width: 100%;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.card-text {
    font-size: 0.9rem; /* ~15.2px dla opisów w kartach/kolumnach */
    line-height: 1.6;
}

button, .btn {
    font-family: var(--font-primary);
    border-radius: 8px;
    padding: 12px 24px;
    margin: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- PODSTYLE PRZYCISKÓW (KOLORYSTYKA) --- */
.btn-light {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background-color: #eeeeee;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-dark {
    background-color: var(--surface-color);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
    background-color: var(--surface-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-blue {
    background-color: var(--accent-color);
    color: #ffffff !important; /* Tekst na niebieskim tle musi być biały */
    font-weight: 600;
}

.btn-blue:hover {
    background-color: rgba(120, 200, 220, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 180, 200, 0.4);
}

.btn-outline-accent {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
}

.btn-outline-accent:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 180, 200, 0.3);
}

.btn-gallery-toggle {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
    padding: 14px 32px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(100, 180, 200, 0.1);
    margin: 30px auto;
    cursor: pointer;
}

.btn-gallery-toggle:hover {
    background-color: var(--accent-color);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(100, 180, 200, 0.4);
}

.btn-gallery-toggle::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f302"; /* fa-images */
    font-size: 1.15rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto 0px;
    padding: 0px 20px;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #eeeeee;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
}

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

.logo {
    display: block;
}

.logo img {
    width: auto;
    height: auto;
    display: block;
}

.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.main-nav.active {
    right: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-fast);
}

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

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333333;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: transform var(--transition-fast), top var(--transition-fast);
}

.hamburger::before {
    top: -8px;
    left: 0;
}

.hamburger::after {
    top: 8px;
    left: 0;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Main Content Area */
#app-content {
    margin-top: 80px;
    /* Spacer for fixed header */
    min-height: calc(100vh - 160px);
  
}

/* Home Page */
.home-view {
    animation: fadeIn var(--transition-slow);
}

/* Carousel */
.carousel-container {
    width: 100%;
    height: 60vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    /*! padding-top:20px; */
    /*! padding-bottom:20px; */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    text-align: right;
    height:90%;
}



.carousel-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.65);
    text-shadow: none;
    text-align:top;
}

.carousel-overlay h5,
.carousel-overlay h6,
.carousel-overlay .h7 {
    font-family: var(--font-primary);
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 0px;
    text-shadow: none;
    
}

.carousel-overlay h5 {
    font-weight: 100;
    color: rgba(220, 220, 220, 0.85);
}

.carousel-overlay h6 {
    font-weight: 700;
    color: rgb(100, 180, 200, 0.75);
    
}

.carousel-overlay .h7 {
    font-weight: 400;
    color: #cccccc;
    color: rgb(150, 180, 200, 0.75);
}

/* Category List */
.categories-section {
    padding: 0 0 80px 0;
}

.section-title {
    text-align: right;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content:'';
    display:none;
    width: 10%;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
   
}

.section-title.no-underline::after {
    display: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 5px;
}


.category-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 20px 30px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    background-color: var(--surface-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.category-card-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.category-card-desc {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--text-color);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.category-card:hover .btn-outline {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Gallery View */
.gallery-view {
    padding: 40px 9px 80px 9px;
    animation: fadeIn var(--transition-slow);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-desc, .about-desc {
    max-width: 100%;
    margin: 0 auto;
    color: #aaa;
    font-size: 1rem;
}

.gallery-desc {
    text-align: right;
}

.about-desc {
    text-align: left;
}

/* Masonry Layout for Gallery */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    background-color: var(--surface-color);
    /* placeholder color before load */
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Footer */
.main-footer {
    background-color: var(--surface-color);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social a {
    color: #aaa;
    font-size: 1.5rem;
    transition: color var(--transition-fast), background var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.footer-social a:hover {
    color: var(--accent-color);
    background: rgba(255,255,255,0.08);
}

.main-footer p {
    color: #888;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox & Anti-copy */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 90vh;
    animation: zoomIn var(--transition-fast);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    -webkit-user-drag: none;
    user-select: none;
    position: relative;
    z-index: 2002;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2003;
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2004;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

/* Zabezpieczenie przed kopiowaniem na całej stronie dla obrazów */
img {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {


    .carousel-title {
        font-size: 2.2rem;
    }

    .gallery-grid {
        column-count: 1;
    }
}

@media (max-width: 576px) {
    .carousel-title {
        font-size: 1.8rem;
        word-break: break-word;
        hyphens: auto;
    }

    .carousel-overlay h5,
    .carousel-overlay h6,
    .carousel-overlay .h7 {
        font-size: 1.2rem;
    }

    .carousel-overlay {
        padding: 50px 0 20px 0;
    }
}

/* Sklep / Kup Zdjęcia */
.shop-section {
    padding: 60px 7px 0px 7px;
}

.shop-year-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin: 40px 0 25px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    font-weight: 700;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.shop-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.shop-card-img-wrapper {
    position: relative;
    padding-top: 66.67%;
    /* 3:2 Aspect Ratio */
    overflow: hidden;
    background-color: #333;
}

.shop-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.shop-card:hover .shop-card-img {
    transform: scale(1.08);
}

.shop-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shop-card-title {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-color);
}

.shop-card-desc {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.shop-card-btn {
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.shop-card-btn:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

/* Accordion */
.accordion-wrapper {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 50px;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    background: var(--surface-color);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color var(--transition-fast);
}

.accordion-header:hover {
    background-color: var(--surface-hover);
}

.accordion-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-header-title i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.accordion-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: #888;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-inner {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-inner ol,
.accordion-inner ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion-inner li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.accordion-inner p {
    margin-bottom: 10px;
    line-height: 1.4;
    color: #dddddd;
}

/* Rezerwacje / Cenniki */
.booking-section {
    padding: 60px 10px;
}

.booking-intro {
    
    color: #aaa;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
}

.booking-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.booking-package-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 24px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.booking-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.booking-package-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.booking-package-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.booking-package-info {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bbb;
    flex-grow: 1;
}

.booking-package-info ul {
    padding-left: 15px;
    margin-top: 10px;
}

.booking-package-info li {
    margin-bottom: 5px;
}

.booking-action-wrapper {
    margin-top: 25px;
    text-align: right;
}

.booking-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: #1a1a1a !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.booking-btn:hover {
    background-color: #8fb0bc;
    transform: translateY(-2px);
}

/* Atelier Section */
.atelier-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
    align-items: center;
}

.atelier-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.atelier-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .atelier-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
}

/* About Page 2-Column Layout */
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Prawa kolumna o mnie jest odrobinę szersza */
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- STYLE DLA EDYTORA TREŚCI --- */
.editor-section-title {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.editor-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.editor-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.editor-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.editor-card-header strong {
    color: #fff;
}

.editor-field {
    margin-bottom: 20px;
}

.editor-field:last-child {
    margin-bottom: 0;
}

.editor-field label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 600;
}

.editor-field input[type="text"],
.editor-field textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.editor-field input[type="text"]:focus,
.editor-field textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.editor-btn-primary {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.editor-btn-primary:hover {
    background: #e5c158;
    transform: translateY(-2px);
}

.editor-btn-primary:active {
    transform: translateY(0);
}

/* --- MODALNY LOADER REZERWACJI MAFELO --- */
.booking-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    animation: fadeInOverlay 0.3s forwards ease;
}

.booking-loader-overlay.fade-out {
    animation: fadeOutOverlay 0.3s forwards ease;
}

.booking-loader-content {
    text-align: center;
    max-width: 500px;
    padding: 40px;
    background: var(--surface-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.booking-loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 175, 55, 0.1);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spinSpinner 1s linear infinite;
}

.booking-loader-content p {
    color: #e0e0e0;
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 500;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOutOverlay {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes spinSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Styl dla akordeonów FAQ sesji */
.faq-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
}

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s;
}

.faq-accordion-header:hover {
    color: var(--accent-color);
}

.faq-accordion-icon {
    font-size: 0.9rem;
    transition: transform 0.3s;
    color: var(--accent-color);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-accordion-content p {
    padding-bottom: 18px;
    margin: 0;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
}

/* Dodatkowe ulepszenie galerii w harmonijce */
.gallery-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.gallery-accordion-content.expanded {
    max-height: 20000px; /* wysoka wartość zapobiegająca ucinaniu zdjęć w kolumnach */
    transition: max-height 1.2s ease-in-out;
}

/* --- FORMULARZ KONTAKTOWY Z CAPTCHA --- */
.contact-form {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.contact-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-secondary);
}

.contact-form-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
    flex-wrap: wrap;
}

.captcha-image-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 16px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    user-select: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 44px;
}

.captcha-refresh-btn {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 1.15rem;
    cursor: pointer;
    transition: color var(--transition-fast), transform 0.3s;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh-btn:hover {
    color: var(--accent-color);
    transform: rotate(180deg);
}

.contact-form-btn {
    background: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(100, 180, 200, 0.2);
}

.contact-form-btn:hover {
    background-color: rgba(120, 200, 220, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(100, 180, 200, 0.4);
}

.contact-form-btn:disabled {
    background: #333;
    color: #777;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-success-msg {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.4s ease;
}

/* --- TYPOGRAFIA DLA TEKSTU PODSTAWOWEGO STOPKI --- */
.main-footer a,
.main-footer p,
.main-footer li,
.main-footer span {
    font-size: 13px !important;
    font-weight: 300 !important;
}