/* =============================================
   MOBILE-FIRST CSS — Studio 5 Lublin
   Base = mobile (< 640px)
   sm = min-width: 640px
   md = min-width: 768px
   lg = min-width: 1024px
   xl = min-width: 1280px
   ============================================= */

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #4da9d1; text-decoration: none; transition: color 0.3s; }
a:hover { color: #777; }

/* ========== SKIP LINK ========== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: #4da9d1;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 4px 4px;
    font-size: 14px;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
    color: #fff;
}

/* ========== FOCUS STYLES ========== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #4da9d1;
    outline-offset: 2px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: #333;
    line-height: 1.3;
}
h1 { font-size: 1.6em; }
h2 { font-size: 1.6em; margin-bottom: 0.6em; }
h3 { font-size: 1.4em; margin-bottom: 0.5em; font-weight: 400; }

.label-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

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

section { padding: 50px 0; }

/* Shared: white card */
.reservation-form,
.pricing-card,
.floorplan-wrapper,
.faq-item,
.event-perk {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

/* ========== TOP BAR ========== */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 6000;
    background: #1d2527;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    height: 48px;
}

.top-bar-logo {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-logo:hover {
    color: #4da9d1;
}

.top-bar-nav {
    display: none;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.top-bar-nav a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.top-bar-nav a:hover {
    color: #4da9d1;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1d2527 0%, #2a3638 50%, #1d2527 100%);
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(77, 169, 209, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(77, 169, 209, 0.08) 0%, transparent 60%);
}

.hero h1 {
    color: #fff;
    font-weight: 300;
    font-size: 1.5em;
    margin-bottom: 4px;
}

.hero h1 span {
    color: #4da9d1;
}

.hero-tagline {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 0.85em;
    color: rgba(255,255,255,0.55);
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.tagline-br { display: inline; }
.tagline-sep { display: none; }

.hero-occasions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.hero-occasions span {
    background: rgba(77, 169, 209, 0.12);
    border: 1px solid rgba(77, 169, 209, 0.25);
    border-radius: 30px;
    padding: 5px 14px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 1em;
}

.hero-feature .icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(77, 169, 209, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4da9d1;
    font-size: 17px;
    flex-shrink: 0;
}

/* Hero layout — padding-based on mobile */
.hero-layout {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 25px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: #4da9d1;
    color: #fff;
    padding: 14px 40px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 12px;
}

.btn-primary:hover {
    background: #3a96be;
    color: #fff;
    transform: translateY(-1px);
}

/* ========== MAIN CONTENT: GALLERY + RESERVATION ========== */
.two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

/* Shared: section h2 margins */
.gallery-section h2,
.reservation-section h2 { margin-bottom: 25px; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #f5f5f5;
}

.gallery-grid .gallery-item.featured {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-grid .gallery-item::after {
    content: '\2922';
    position: absolute;
    bottom: 10px;
    right: 12px;
    color: #fff;
    font-size: 21px;
    opacity: 0;
    transition: opacity 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

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

/* ========== CALENDAR ========== */
.calendar-wrapper {
    background: #fff;
    border: 1px solid #eee;
    border-top: 3px solid #4da9d1;
    border-radius: 6px;
    padding: 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.calendar-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.calendar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px 14px;
    border-bottom: 1px solid #f0f0f0;
}

.calendar-header svg {
    width: 20px;
    height: 20px;
    color: #4da9d1;
    flex-shrink: 0;
}

.calendar-header h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 0;
}

.calendar-embed {
    width: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

.calendar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 22px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.calendar-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin: 0;
    font-style: normal;
}

.calendar-note svg {
    width: 14px;
    height: 14px;
    color: #bbb;
    flex-shrink: 0;
}

.calendar-legend {
    display: flex;
    align-items: center;
    gap: 16px;
}

.calendar-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-legend .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.calendar-legend .dot--free {
    background: #fff;
    border: 1.5px solid #ccc;
}

.calendar-legend .dot--busy {
    background: #4da9d1;
}

/* ========== FORM ========== */
.reservation-form { padding: 30px; }

.reservation-form h3 {
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #333;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4da9d1;
    box-shadow: 0 0 0 3px rgba(77, 169, 209, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.form-submit {
    display: block;
    width: 100%;
    background: #4da9d1;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 5px;
}

.form-submit:hover {
    background: #3a96be;
    transform: translateY(-1px);
}

.form-success {
    display: none;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    color: #2e7d32;
}

.form-success.visible { display: block; }

.form-or-call {
    text-align: center;
    margin-top: 25px;
}

.form-or-call-divider {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 15px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #1d2527, #2a3638);
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-call:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(29, 37, 39, 0.3);
}

.btn-call-icon {
    font-size: 23px;
    color: #4da9d1;
}

/* ========== HIGHLIGHTS (under calendar) ========== */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.highlight-item:hover {
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.highlight-icon {
    font-size: 22px;
    color: #4da9d1;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.highlight-item strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin: 0;
}

.highlights-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    align-items: stretch;
}

.highlights-cta .btn-primary,
.highlights-cta .btn-call {
    flex: 1;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    height: 54px;
    margin-top: 0;
    white-space: nowrap;
}

/* ========== DETAILS / FLOOR PLAN ========== */
.details-section,
.event-detail-section.event-detail-alt {
    background: #f8f8f8;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

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

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.pricing-card {
    flex: 1;
    min-width: 180px;
    padding: 25px 20px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.pricing-card .price-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 8px;
}

.pricing-card .price-value {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 2em;
    color: #4da9d1;
}

.pricing-card .price-value small {
    font-size: 0.45em;
    color: #999;
    font-weight: 400;
}

.pricing-card .price-note {
    font-size: 13px;
    color: #ababab;
    margin-top: 5px;
}

.floorplan-wrapper { padding: 20px; text-align: center; }

.floorplan-wrapper img {
    max-height: 400px;
    margin: 0 auto;
    cursor: pointer;
}

/* ========== WHY US ========== */
.why-us-section {
    text-align: center;
}

.why-us-section h2,
.faq-section h2 { margin-bottom: 15px; }

.why-us-subtitle,
.faq-subtitle {
    color: #999;
    font-size: 1.05em;
    max-width: 600px;
}
.why-us-subtitle { margin: 0 auto 50px; }
.faq-subtitle { margin: 0 auto 40px; text-align: center; }

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.why-us-card {
    padding: 30px 20px;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.why-us-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: #4da9d1;
    transition: background 0.3s, color 0.3s;
}

.why-us-card:hover .why-us-icon {
    background: #4da9d1;
    color: #fff;
}

.why-us-card h3 {
    font-size: 1.15em;
    font-weight: 400;
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* ========== EVENT DETAIL SECTIONS ========== */
.event-detail {
    max-width: 820px;
    margin: 0 auto;
}

.event-detail .label-text {
    display: block;
    margin-bottom: 10px;
}

.event-detail h2 {
    margin-bottom: 20px;
}

.event-detail > p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
}

.event-types-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
}

.event-type-badge {
    background: #f0f8fc;
    border: 1px solid #d4ecf5;
    border-radius: 30px;
    padding: 6px 14px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4da9d1;
}

.event-perks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.event-perk { padding: 22px; border-color: #4da9d1; }

.event-perk strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.event-perk p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* ========== FAQ ========== */
.faq-section {
    background: #f8f8f8;
    border-top: 1px solid #eee;
}

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

.faq-item {
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    user-select: none;
    gap: 15px;
    min-height: 48px;
}

.faq-question h3 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1.05em;
    color: #333;
    transition: color 0.3s;
}

.faq-item.active .faq-question h3 { color: #4da9d1; }

.faq-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 19px;
    color: #999;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.faq-item.active .faq-toggle {
    background: #4da9d1;
    color: #fff;
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 25px 20px;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

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

/* ========== CTA BANNER ========== */
.cta-section {
    background: linear-gradient(135deg, #1d2527, #2a3638);
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
}

.footer-subtitle {
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}

.cta-contact a {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.15em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.cta-contact a:hover { color: #4da9d1; }

.cta-contact .cta-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

/* ========== LIGHTBOX ========== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

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

.lightbox-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    touch-action: none;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.4);
    transform-origin: 0 0;
    transition: none;
    pointer-events: none;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 10;
    pointer-events: none;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    color: #fff;
    font-size: 33px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-weight: 300;
    line-height: 1;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 41px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    padding: 20px 28px;
    font-weight: 300;
    user-select: none;
    z-index: 10;
    min-width: 60px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

/* ========== SIDE PANEL ========== */
.side-panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.side-panel-overlay.active {
    display: block;
    opacity: 1;
}

.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 8001;
    width: 100vw;
    background: #fff;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-panel.active {
    transform: translateX(0);
}

.side-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.side-panel-header h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    color: #333;
    margin: 0;
}

.side-panel-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.side-panel-close:hover {
    background: #eee;
    color: #333;
}

.side-panel-body {
    padding: 16px 20px;
    flex: 1;
}

.side-panel-body .form-group { margin-bottom: 10px; }
.side-panel-body .form-group label { font-size: 11px; margin-bottom: 3px; }
.side-panel-body .form-group input,
.side-panel-body .form-group select,
.side-panel-body .form-group textarea {
    padding: 8px 12px;
    font-size: 14px;
}
.side-panel-body .form-group textarea { min-height: 80px; }
.side-panel-body .form-row { gap: 10px; }
.side-panel-body .form-submit { padding: 12px; font-size: 13px; margin-top: 2px; }

.side-panel-body .form-or-call {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.side-panel-body .form-or-call .form-or-call-divider { margin-bottom: 10px; }
.side-panel-body .form-or-call .btn-call { padding: 12px 28px; font-size: 15px; }

/* ========== MOBILE CTA BAR ========== */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 7000;
    display: flex;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-cta-bar.visible {
    transform: translateY(0);
}

.mobile-cta-call,
.mobile-cta-reserve {
    flex: 1;
    padding: 14px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.mobile-cta-call {
    background: linear-gradient(135deg, #1d2527, #2a3638);
    color: #fff;
}

.mobile-cta-call:hover { color: #fff; }

.mobile-cta-reserve {
    background: #4da9d1;
    color: #fff;
}

/* ========== FAQ HEADER ========== */
.faq-header { text-align: center; }

/* ========== LIGHTBOX BUTTON RESET ========== */
.lightbox-close,
.lightbox-nav {
    background: none;
    border: none;
    font-family: inherit;
}

/* ========== FOOTER ========== */
.site-footer {
    background: linear-gradient(135deg, #1d2527, #2a3638);
    padding: 60px 0 30px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}

.site-footer h2 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.site-footer address {
    font-style: normal;
    color: rgba(255,255,255,0.4);
    margin: 30px 0 8px;
    font-size: 13px;
}

.site-footer address strong {
    color: #fff;
    font-weight: 600;
}

.site-footer address a {
    color: rgba(255,255,255,0.7);
}

.site-footer address a:hover {
    color: #4da9d1;
}

.footer-copy {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    margin: 0;
}

.footer-credit {
    color: rgba(255,255,255,0.25);
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    margin: 8px 0 0;
}

.footer-credit a {
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-credit a:hover {
    color: #4da9d1;
}

/* ========== SUBPAGE (regulamin) ========== */
.subpage-hero {
    background: linear-gradient(135deg, #1d2527 0%, #2a3638 50%, #1d2527 100%);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.subpage-hero h1 {
    color: #fff;
    font-weight: 300;
    font-size: 1.6em;
    margin-bottom: 4px;
}

.subpage-tagline {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 0.85em;
    color: rgba(255,255,255,0.55);
    letter-spacing: 2px;
    margin: 0;
}

.back-link {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #4da9d1;
}

.subpage-content {
    padding: 50px 0;
}

.regulamin-body {
    max-width: 820px;
    margin: 0 auto;
}

.regulamin-body h2 {
    font-size: 1.3em;
    font-weight: 400;
    color: #333;
    margin: 35px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.regulamin-body h2:first-child {
    margin-top: 0;
}

.regulamin-body ol {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

.regulamin-body ol li {
    counter-increment: item;
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    border-bottom: 1px solid #f5f5f5;
}

.regulamin-body ol li:last-child {
    border-bottom: none;
}

.regulamin-body ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #4da9d1;
}

.regulamin-download {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.regulamin-download .btn-primary {
    margin-top: 0;
}

/* Footer links (regulamin) */
.footer-links {
    margin: 20px 0 8px;
    font-size: 13px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4da9d1;
}

/* =============================================
   RESPONSIVE — min-width breakpoints
   ============================================= */

/* ========== sm (640px) ========== */
@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr 1fr; gap: 15px; }
    .pricing-cards { flex-direction: row; }
    .event-perks-grid { grid-template-columns: 1fr 1fr; }
    .event-type-badge { font-size: 14px; padding: 8px 20px; }
    .event-types-row { gap: 10px; }
    .highlights-cta { flex-direction: row; }
    .calendar-wrapper iframe { height: 500px; }
    .tagline-br { display: none; }
    .tagline-sep { display: inline; }
    .hero-occasions span { padding: 7px 18px; font-size: 14px; }
}

/* ========== md (768px) ========== */
@media (min-width: 768px) {
    .container { padding: 0 30px; }
    section { padding: 60px 0; }
    .subpage-content { padding: 60px 0; }
    .subpage-hero { padding: 50px 0; }
    .subpage-hero h1 { font-size: 2em; }
    .top-bar-nav { display: flex; }
    h2 { font-size: 1.85em; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .cta-contact { flex-direction: row; gap: 40px; }
    .side-panel { width: 520px; max-width: 92vw; }
    .faq-question { padding: 20px 25px; }
}

/* ========== lg (1024px) ========== */
@media (min-width: 1024px) {
    section { padding: 70px 0; }
    .subpage-content { padding: 70px 0; }
    .subpage-hero { padding: 60px 0; }
    .subpage-hero h1 { font-size: 2.2em; }
    h2 { font-size: 2.06em; }
    .two-columns { grid-template-columns: 1fr 1fr; }
    .details-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .hero h1 { font-size: 1.8em; }
    .hero-layout { height: 160px; padding: 0; }
    .hero-content { height: 100%; }
    .calendar-wrapper iframe { height: 600px; }
    .mobile-cta-bar { display: none; }
}

/* ========== xl (1280px) ========== */
@media (min-width: 1280px) {
    h1 { font-size: 2.33em; }
    .why-us-grid { grid-template-columns: repeat(3, 1fr); gap: 35px; }
}
