/* ═══════════════════════════════════════════════════════════════════════════
   DWÓR HUBERTUSA - Premium Wedding Venue
   Redesigned CSS - Clean, Consistent, Elegant
   ═══════════════════════════════════════════════════════════════════════════ */

/* --- VARIABLES --- */
:root {
    --gold: #C9A227;
    --gold-light: #E8D48B;
    --gold-dark: #A68921;
    --black: #0A0A0A;
    --dark: #111111;
    --dark-lighter: #1A1A1A;
    --dark-card: #141414;
    --white: #FFFFFF;
    --text-primary: #E8E8E8;
    --text-secondary: #A0A0A0;
    --text-muted: #707070;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
    
    --section-padding: clamp(80px, 12vw, 140px);
    --container-max: 1280px;
    --gap-xl: 80px;
    --gap-lg: 60px;
    --gap-md: 40px;
    --gap-sm: 24px;
    --gap-xs: 16px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--black);
    overflow-x: hidden;
}

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

ul, ol { list-style: none; }

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
}

/* --- UTILITY --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gap-sm);
}

/* --- SECTION LABELS --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--gap-sm);
}

.section-label-center {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--gap-xs);
}

.label-icon { font-size: 1.2rem; }

.section-title { margin-bottom: var(--gap-md); }
.section-title-center { text-align: center; margin-bottom: var(--gap-md); }
.title-accent { color: var(--gold); font-style: italic; }

/* --- BUTTONS --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: var(--transition-base);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-primary i {
    font-size: 0.8rem;
    transition: transform var(--transition-base);
}

.btn-primary:hover i { transform: translateX(4px); }
.btn-primary.small { padding: 12px 24px; font-size: 0.8rem; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-base);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline.small { padding: 10px 20px; font-size: 0.75rem; }

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.btn-text:hover { color: var(--gold); }

.btn-nav {
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-base);
}

.btn-nav:hover { background: var(--black); color: var(--black); }

/* ═══════════════════════════════════════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════════════════════════════════════ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.spinner {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.nav-links a:hover { color: var(--gold); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.2); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 var(--gap-sm);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--gap-md);
}

.hero-badge span:not(.badge-line) {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.hero h1 {
    margin-bottom: var(--gap-sm);
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-accent { color: var(--gold); font-style: italic; }

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto var(--gap-lg);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-sm);
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition-base);
}

.scroll-indicator:hover { color: var(--gold); }

.scroll-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 12px;
    background: var(--gold);
    position: absolute;
    left: -1px;
    top: 0;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.section-about {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

.about-content { max-width: 540px; }
.about-text { margin-bottom: var(--gap-md); }
.about-text p:last-child { margin-bottom: 0; }

.location-card {
    display: flex;
    gap: var(--gap-sm);
    padding: var(--gap-sm);
    background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, transparent 100%);
    border-left: 3px solid var(--gold);
}

.location-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,162,39,0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.location-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.location-info p { font-size: 0.9rem; margin: 0; }

/* About Gallery */
.about-gallery {
    position: relative;
    height: 550px;
}

.gallery-frame {
    position: absolute;
    top: 40px;
    right: 0;
    bottom: 0;
    left: 40px;
    border: 1px solid rgba(201,162,39,0.2);
    z-index: 0;
}

.gallery-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 75%;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.gallery-main img { transition: transform var(--transition-slow); }
.about-gallery:hover .gallery-main img { transform: scale(1.05); }

.gallery-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    z-index: 3;
    border: 5px solid var(--dark);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.gallery-accent img { transition: transform var(--transition-slow); }
.about-gallery:hover .gallery-accent img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════════════════════
   HALLS SECTION (ACCORDION)
   ═══════════════════════════════════════════════════════════════════════════ */
.section-halls { background: var(--black); }

.halls-header {
    padding: var(--section-padding) 0 var(--gap-lg);
    text-align: center;
}

.halls-accordion {
    display: flex;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
}

.hall-panel {
    position: relative;
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    transition: flex var(--transition-smooth);
}

.hall-panel:hover { flex: 2.5; }

.panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.hall-panel:hover .panel-bg { transform: scale(1.05); }

.panel-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    transition: var(--transition-base);
}

.hall-panel:hover .panel-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--gap-md);
    z-index: 2;
}

.panel-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 8px;
}

.panel-content h3 {
    font-size: 1.8rem;
    white-space: nowrap;
    margin-bottom: 0;
    transition: var(--transition-base);
}

.hall-panel:hover .panel-content h3 { margin-bottom: 16px; }

.panel-info {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.hall-panel:hover .panel-info { opacity: 1; max-height: 200px; }

.panel-capacity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.panel-info p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    max-width: 300px;
}

.panel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.panel-link:hover { color: var(--white); }
.panel-link i { font-size: 0.7rem; transition: transform var(--transition-base); }
.panel-link:hover i { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════════════════
   KITCHEN SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.section-kitchen {
    padding: var(--section-padding) 0;
    background: var(--dark-lighter);
}

.kitchen-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

.kitchen-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: var(--gap-sm);
}

.kitchen-desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--gap-md);
}

.kitchen-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-sm);
    margin-bottom: var(--gap-md);
    padding: var(--gap-sm) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition-base);
}

.feature-item:hover .feature-icon { background: var(--gold); color: var(--black); }

.feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kitchen Visual */
.kitchen-visual { position: relative; }

.visual-frame {
    position: absolute;
    top: 30px;
    right: -20px;
    bottom: -30px;
    left: 30px;
    border: 1px solid rgba(201,162,39,0.2);
    z-index: 0;
}

.visual-image {
    position: relative;
    z-index: 1;
    height: 550px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.visual-image img { transition: transform var(--transition-slow); }
.kitchen-visual:hover .visual-image img { transform: scale(1.05); }

/* Dish Card */
.dish-card {
    position: absolute;
    bottom: 50px;
    left: -30px;
    z-index: 2;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    padding: var(--gap-sm);
    width: 260px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.dish-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.dish-card h4 { font-size: 1.3rem; margin-bottom: 8px; }
.dish-card p { font-size: 0.8rem; line-height: 1.6; margin-bottom: 12px; }
.dish-rating { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; }

/* ═══════════════════════════════════════════════════════════════════════════
   OUTDOOR SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.section-outdoor {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.outdoor-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.outdoor-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outdoor-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.section-outdoor .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.outdoor-card {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: var(--gap-lg);
    max-width: 520px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.outdoor-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: var(--gap-sm);
}

.outdoor-desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--gap-md);
}

.outdoor-features {
    display: flex;
    justify-content: space-between;
    gap: var(--gap-sm);
    margin-bottom: var(--gap-md);
    padding-bottom: var(--gap-md);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.outdoor-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.outdoor-feature i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition-base);
}

.outdoor-feature:hover i { background: var(--gold); color: var(--black); }

.outdoor-feature span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outdoor-cta { margin-bottom: var(--gap-md); }

.plan-b {
    display: flex;
    gap: 16px;
    padding: var(--gap-xs);
    background: rgba(255,255,255,0.03);
    border-left: 2px solid var(--gold);
}

.plan-b > i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.plan-b-text strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 4px; }
.plan-b-text p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   WEDDING SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.section-wedding {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.wedding-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

.wedding-image {
    position: relative;
    height: 600px;
}

.wedding-frame {
    position: absolute;
    top: -20px;
    right: 30px;
    bottom: 30px;
    left: -20px;
    border: 1px solid rgba(201,162,39,0.2);
    z-index: 0;
}

.wedding-image > img {
    position: relative;
    z-index: 1;
    height: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.wedding-content { max-width: 520px; }

.wedding-desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--gap-md);
}

.wedding-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: var(--gap-md);
}

.wedding-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.wedding-checklist i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.6rem;
}

.wedding-stats {
    display: flex;
    gap: var(--gap-md);
    padding: var(--gap-sm) 0;
    margin-bottom: var(--gap-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item { display: flex; flex-direction: column; }
.stat-number { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 4px; }

.wedding-cta {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   EVENTS TABS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.section-events {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.events-header {
    text-align: center;
    margin-bottom: var(--gap-lg);
}

.events-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: var(--gap-md);
    margin-bottom: var(--gap-lg);
    padding-bottom: var(--gap-sm);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-base);
    position: relative;
}

.tab-btn i { font-size: 1rem; opacity: 0.6; transition: var(--transition-base); }
.tab-btn:hover { color: var(--text-primary); }
.tab-btn:hover i { opacity: 1; }
.tab-btn.active { color: var(--gold); }
.tab-btn.active i { opacity: 1; }

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

/* Tab Panels */
.tab-panel {
    display: none;
    opacity: 0;
    animation: tabFadeIn 0.5s ease forwards;
}

.tab-panel.active { display: block; }

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

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

.tab-content h3 { font-size: 1.8rem; margin-bottom: var(--gap-xs); }
.tab-content p { font-size: 1rem; line-height: 1.8; margin-bottom: var(--gap-sm); }

.tab-list { margin-bottom: var(--gap-md); }

.tab-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.tab-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
}

.tab-actions {
    display: flex;
    gap: var(--gap-xs);
    flex-wrap: wrap;
}

.tab-image {
    height: 400px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.tab-image img { transition: transform var(--transition-slow); }
.tab-panel:hover .tab-image img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
footer {
    position: relative;
    padding: var(--section-padding) 0 0;
    background: #050505;
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: var(--gap-lg);
    padding-bottom: var(--gap-lg);
}

.footer-brand { max-width: 300px; }

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: var(--gap-xs);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--gap-sm);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: var(--gap-sm);
    color: var(--white);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-list i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 20px;
    margin-top: 4px;
}

.contact-list a:hover { color: var(--gold); }

.wzk-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.wzk-badge i { color: #e91e63; }
.wzk-badge:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }

/* Footer Map */
.map-card {
    background: var(--dark-lighter);
    padding: var(--gap-xs);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--white);
}

.google-rating i { color: var(--gold); }

.map-frame {
    height: 180px;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.05);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) contrast(85%);
    opacity: 0.8;
    transition: var(--transition-base);
}

.map-frame:hover iframe { opacity: 1; filter: none; }

.map-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-link:hover { text-decoration: underline; }

.footer-bottom {
    padding: var(--gap-sm) 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   COOKIE BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--dark-card);
    border-top: 1px solid var(--gold);
    padding: var(--gap-xs) 0;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-bar.active { transform: translateY(0); }

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gap-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-sm);
}

.cookie-content p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cookie-content i { color: var(--gold); }

.btn-cookie {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: var(--transition-base);
}

.btn-cookie:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE - TABLET
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --section-padding: clamp(60px, 10vw, 100px);
        --gap-xl: 60px;
        --gap-lg: 40px;
    }
    
    .about-layout, .kitchen-layout, .wedding-layout, .tab-layout { gap: var(--gap-lg); }
    .halls-accordion { height: 60vh; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --gap-xl: 40px;
        --gap-lg: 32px;
        --gap-md: 24px;
    }
    
    /* Navigation Mobile */
    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }
    
    .nav-links.active { opacity: 1; visibility: visible; }
    .nav-links a { font-size: 1rem; color: var(--white); }
    .hamburger { display: flex; }
    
    /* Hero Mobile */
    .hero-subtitle br { display: none; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn-secondary { width: 100%; justify-content: center; }
    .scroll-indicator { display: none; }
    
    /* About Mobile */
    .about-layout { grid-template-columns: 1fr; }
    .about-content { max-width: 100%; order: 2; }
    .about-gallery { order: 1; height: 400px; }
    .gallery-main { width: 85%; }
    .gallery-accent { width: 60%; height: 50%; }
    
    /* Halls Mobile */
    .halls-accordion { flex-direction: column; height: auto; }
    .hall-panel { min-height: 300px; }
    .hall-panel:hover { flex: none; }
    .panel-info { opacity: 1; max-height: none; }
    .panel-content h3 { margin-bottom: 16px; }
    
    /* Kitchen Mobile */
    .kitchen-layout { grid-template-columns: 1fr; }
    .kitchen-features { grid-template-columns: 1fr 1fr; }
    .kitchen-visual { order: -1; }
    .visual-image { height: 350px; }
    .dish-card { left: 16px; right: 16px; bottom: 16px; width: auto; }
    .visual-frame { display: none; }
    
    /* Outdoor Mobile */
    .section-outdoor .container { justify-content: center; }
    .outdoor-card { padding: var(--gap-md); margin: var(--gap-sm); }
    .outdoor-features { flex-wrap: wrap; justify-content: center; }
    
    /* Wedding Mobile */
    .wedding-layout { grid-template-columns: 1fr; }
    .wedding-image { height: 350px; order: -1; }
    .wedding-frame { display: none; }
    .wedding-checklist { grid-template-columns: 1fr; }
    .wedding-stats { justify-content: space-between; }
    .wedding-cta { flex-direction: column; align-items: flex-start; }
    
    /* Events Tabs Mobile */
    .tabs-navigation { flex-direction: column; gap: 0; border-bottom: none; }
    .tab-btn { width: 100%; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 16px; }
    .tab-btn.active::after { display: none; }
    .tab-btn.active { background: rgba(201,162,39,0.1); }
    .tab-layout { grid-template-columns: 1fr; }
    .tab-image { height: 250px; order: -1; }
    .tab-actions { flex-direction: column; }
    .tab-actions .btn-primary, .tab-actions .btn-outline { width: 100%; justify-content: center; }
    
    /* Footer Mobile */
    .footer-layout { grid-template-columns: 1fr; gap: var(--gap-lg); text-align: center; }
    .footer-brand { max-width: 100%; }
    .footer-social { justify-content: center; }
    .contact-list li { justify-content: center; }
    .wzk-badge { justify-content: center; width: 100%; }
    
    /* Cookie Mobile */
    .cookie-content { flex-direction: column; text-align: center; }
    .btn-cookie { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE - SMALL MOBILE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .about-gallery { height: 320px; }
    .kitchen-features { grid-template-columns: 1fr; }
    .outdoor-features { flex-direction: column; gap: var(--gap-sm); }
    .wedding-stats { flex-direction: column; gap: var(--gap-sm); align-items: center; }
    .stat-item { align-items: center; }
}/* ═══════════════════════════════════════════════════════════════════════════
   WEDDING CALCULATOR - Styles v3 (Compact version)
   Smaller paddings, tighter spacing - still elegant
   ═══════════════════════════════════════════════════════════════════════════ */

.section-calculator {
    position: relative;
    padding: 80px 0;
    min-height: auto;
    overflow: hidden;
}

/* Background Image */
.section-calculator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/projects/hubertus/assets/images/sala_bg.png') center/cover no-repeat;
    z-index: 0;
}

/* Dark Overlay */
.section-calculator::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

.section-calculator .container {
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header .section-title-center {
    margin-bottom: 10px;
}

.calculator-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLASS CARD WRAPPER
   ═══════════════════════════════════════════════════════════════════════════ */
.calculator-wrapper {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.calc-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
    transition: var(--transition-base);
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.progress-step.completed .step-number {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.step-number {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition-base);
}

.progress-step.active .step-number {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
}

.step-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.progress-step.active .step-label {
    color: var(--gold);
}

.progress-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 16px;
    margin-bottom: 22px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.5s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM STEPS
   ═══════════════════════════════════════════════════════════════════════════ */
.calc-form {
    padding: 30px 35px;
}

.calc-step {
    display: none;
    animation: fadeInStep 0.35s ease;
}

.calc-step.active {
    display: block;
}

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

.step-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--white);
    text-align: center;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Range Slider */
.range-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.range-input {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(201, 162, 39, 0.4);
    transition: transform var(--transition-base);
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.range-value {
    min-width: 95px;
    padding: 10px 16px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gold);
}

/* Hall Options */
.hall-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hall-option input { display: none; }

.hall-card {
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.hall-option input:checked + .hall-card {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.hall-card:hover {
    border-color: rgba(201, 162, 39, 0.5);
}

.hall-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 3px;
}

.hall-capacity {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Season Options */
.season-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.season-option input { display: none; }

.season-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.season-option input:checked + .season-card {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.season-card:hover {
    border-color: rgba(201, 162, 39, 0.5);
}

.season-card i {
    font-size: 1.2rem;
    color: var(--gold);
}

.season-card span {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.discount-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PACKAGE OPTIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.package-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.package-option input { display: none; }

.package-card {
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.package-option input:checked + .package-card {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
}

.package-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-2px);
}

.package-option.featured .package-card {
    border-color: rgba(201, 162, 39, 0.3);
}

.package-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    white-space: nowrap;
}

.package-badge {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.package-badge.bronze {
    background: rgba(205, 127, 50, 0.15);
    color: #cd7f32;
    border: 1px solid rgba(205, 127, 50, 0.3);
}

.package-badge.silver {
    background: rgba(192, 192, 192, 0.15);
    color: #c0c0c0;
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.package-badge.gold {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.package-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 14px;
}

.package-price small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.package-features {
    text-align: left;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 7px;
    line-height: 1.35;
}

.package-features i {
    color: var(--gold);
    font-size: 0.55rem;
    margin-top: 4px;
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXTRAS GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.extra-option input { display: none; }

.extra-card {
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.extra-option input:checked + .extra-card {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.extra-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
}

.extra-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.extra-option input:checked + .extra-card .extra-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.extra-name {
    display: block;
    font-size: 0.78rem;
    color: var(--white);
    margin-bottom: 4px;
}

.extra-price {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
}

.extra-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: transparent;
    transition: var(--transition-base);
}

.extra-option input:checked + .extra-card .extra-check {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Rooms Counter */
.rooms-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 16px;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 6px;
}

.rooms-counter label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.counter-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.counter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.counter-controls > span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    min-width: 30px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUMMARY
   ═══════════════════════════════════════════════════════════════════════════ */
.summary-wrapper {
    max-width: 550px;
    margin: 0 auto;
}

.summary-details {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 20px;
}

.summary-section {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-section:first-child {
    padding-top: 0;
}

.summary-section h4 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.summary-row.discount span {
    color: #4CAF50;
}

.discount-section {
    background: rgba(76, 175, 80, 0.1);
    margin: 0 -18px;
    padding: 12px 18px !important;
    border-bottom: none !important;
}

/* Total */
.summary-total {
    text-align: center;
    padding: 22px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 6px;
    margin-bottom: 20px;
}

.total-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.total-amount {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.total-note {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Summary Actions */
.summary-actions {
    text-align: center;
}

.pdf-form p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.email-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.email-input-group input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-base);
}

.email-input-group input:focus {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.email-input-group input::placeholder {
    color: var(--text-muted);
}

.email-input-group .btn-primary {
    padding: 12px 20px;
    font-size: 0.8rem;
}

.summary-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-contact span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.summary-contact .btn-secondary {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.calc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 25px;
}

.calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition-base);
}

.calc-btn.prev {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.calc-btn.prev:hover {
    border-color: var(--white);
    color: var(--white);
}

.calc-btn.next {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.calc-btn.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .section-calculator {
        padding: 60px 0;
    }
    
    .calc-progress {
        padding: 16px;
    }
    
    .progress-line {
        width: 35px;
        margin: 0 10px;
        margin-bottom: 22px;
    }
    
    .step-label {
        display: none;
    }
    
    .calc-form {
        padding: 24px 20px;
    }
    
    .hall-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hall-card {
        padding: 14px;
    }
    
    .package-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .section-calculator {
        padding: 50px 0;
    }
    
    .calculator-wrapper {
        margin: 0 -12px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .calc-form {
        padding: 20px 16px;
    }
    
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .range-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .season-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .extra-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 12px 16px;
        gap: 14px;
    }
    
    .extra-icon {
        margin: 0;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .email-input-group {
        flex-direction: column;
    }
    
    .email-input-group .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .total-amount {
        font-size: 2.2rem;
    }
    
    .calc-nav {
        flex-direction: column-reverse;
        gap: 10px;
        padding-top: 18px;
        margin-top: 20px;
    }
    
    .calc-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .calc-btn.prev {
        visibility: visible !important;
    }
    
    .summary-contact {
        flex-direction: column;
        gap: 12px;
    }
    
    .summary-contact .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
/* --- NOWE STYLE DLA GALERII --- */

/* Kontener na przyciski w panelu */
.panel-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Nowy guzik "Galeria" (Outline) */
.panel-link-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-body);
}

.panel-link-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- LIGHTBOX (MODAL) --- */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); /* Bardzo ciemne tło */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none; /* Kliknięcia przelatują gdy ukryty */
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-height: 80vh; /* Zdjęcie nie wyższe niż 80% ekranu */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border: 1px solid #333;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.lightbox-caption {
    margin-top: 15px;
    text-align: center;
    color: var(--white);
}

#lightbox-counter {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Przyciski sterowania */
.lightbox-close {
    position: absolute;
    top: 30px; right: 30px;
    background: none; border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: 0.3s;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 20px;
    transition: 0.3s;
    z-index: 10001;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    color: var(--gold);
}

/* --- Mobile Lightbox (Ulepszony) --- */
@media (max-width: 768px) {
    /* 1. Zdjęcie na całą szerokość */
    .lightbox-content {
        max-width: 100%;
        width: 100%;
        padding: 0 10px; /* Mały margines, żeby nie dotykało krawędzi */
    }

    .lightbox-content img {
        max-height: 60vh; /* Mniejsza wysokość, żeby zmieściły się opisy i guziki */
    }

    /* 2. Duże, wygodne przyciski na dole ekranu (zamiast po bokach) 
       To jest lepsze UX, bo łatwiej sięgnąć kciukiem */
    .lightbox-prev, .lightbox-next {
        top: auto; /* Wyłączamy centrowanie pionowe */
        bottom: 5%; /* Przenosimy na dół ekranu */
        transform: none;
        background: rgba(255, 255, 255, 0.1); /* Delikatne tło */
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 20%; /* Rozstawiamy je szeroko */
    }

    .lightbox-next {
        right: 20%;
    }

    /* 3. Guzik zamknij - duży w rogu */
    .lightbox-close {
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.5); /* Tło, żeby było widać na zdjęciu */
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1; /* Reset wysokości linii */
        padding-bottom: 5px; /* Korekta optyczna */
    }
}