/* ========================================
   LUXURY STUCCO WORK ONE-PAGER
   Czarno-szara elegancja inspirowana oryginalnym designem
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Elegancka czarno-szara paleta */
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #4a4a4a;
    --light-gray: #d0d0d0;
    --lighter-gray: #e8e8e8;
    --white: #FFFFFF;
    
    /* Złote akcenty */
    --gold: #C5A572;
    --gold-light: #D4B896;
    --gold-dark: #9B7F4F;
    
    /* Kolory funkcjonalne */
    --primary: var(--black);
    --secondary: var(--gold);
    --text-light: #6a6a6a;
    --border: #b0b0b0;
    
    /* Gradienty */
    --gradient-gold: linear-gradient(135deg, #D4B896 0%, #C5A572 50%, #9B7F4F 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    
    /* Cienie - subtelne dla eleganckiego wyglądu */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 4px 20px rgba(197, 165, 114, 0.3);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', 'Verdana', sans-serif;
    background: var(--lighter-gray);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   TEXTURED BACKGROUND
   ======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(45deg, 
            rgba(0,0,0,0.02) 0%, 
            transparent 50%, 
            rgba(0,0,0,0.02) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0,0,0,0.01) 10px,
            rgba(0,0,0,0.01) 20px
        ),
        var(--lighter-gray);
    animation: subtleShift 30s ease infinite;
}

@keyframes subtleShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* ========================================
   NAVIGATION - Czarny luksusowy header
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-dark);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--gold-light);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Dekoracyjna linia pod nawigacją */
.nav-container::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-family: 'Tangerine', 'Pinyon Script', cursive;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
}

/* Dekoracyjny underline dla logo */
.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
}

.nav-menu {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.nav-link:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(197, 165, 114, 0.05);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.lang-switch {
    display: flex;
    gap: 0;
    background: transparent;
    padding: 0;
    border: 2px solid var(--gold);
    overflow: hidden;
}

.lang-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-right: 1px solid var(--gold);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.lang-btn:last-child {
    border-right: none;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--gradient-gold);
    color: var(--black);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ========================================
   DECORATIVE ORNAMENTS
   ======================================== */
.ornament {
    display: inline-block;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 1rem;
}

.ornament-left,
.ornament-right {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.1;
    pointer-events: none;
}

.ornament-left {
    top: 20%;
    left: 2%;
}

.ornament-right {
    top: 40%;
    right: 2%;
}

/* ========================================
   HERO SECTION - Dramatyczny, elegancki z slideshow
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

/* Slideshow container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Pojedynczy slajd */
.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenBurns 20s ease-in-out infinite;
}

/* Aktywny slajd */
.hero-slideshow .slide.active {
    opacity: 1;
}

/* Efekt Ken Burns - subtelny zoom */
@keyframes kenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Ciemna nakładka dla czytelności tekstu */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0,0,0,0.85) 0%, 
        rgba(26,26,26,0.75) 50%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}

/* Dodatkowy wzór tekstury na nakładce */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(197, 165, 114, 0.02) 10px,
            rgba(197, 165, 114, 0.02) 20px
        );
}

/* Złota ramka dekoracyjna */
.hero::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    height: calc(100% - 180px);
    border: 2px solid var(--gold);
    pointer-events: none;
    opacity: 0.3;
    box-shadow: inset 0 0 50px rgba(197, 165, 114, 0.1);
}

/* Narożniki */
.hero::after {
    content: '';
    position: absolute;
    top: 115px;
    left: calc(50% - 45% - 5px);
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    opacity: 0.5;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 3px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

/* Dekoracyjne linie wokół gradient text */
.gradient-text::before,
.gradient-text::after {
    content: '◆';
    position: absolute;
    color: var(--gold);
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

.gradient-text::before {
    left: -3rem;
}

.gradient-text::after {
    right: -3rem;
}

.hero-description {
    max-width: 800px;
    margin: 2rem auto 2.5rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-description p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--light-gray);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    text-align: center;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.feature-check {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 165, 114, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    border-width: 2px;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* Scroll indicator - złoty */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   STATS SECTION - Eleganckie na szarym
   ======================================== */
.stats {
    padding: 5rem 0;
    background: var(--white);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.stat-number {
    font-size: 5rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
}

.stat-number::after {
    content: '+';
    color: var(--gold);
    font-weight: 400;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: 7rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: relative;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dekoracyjny separator */
section::before {
    content: '◆';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--gold);
    background: var(--lighter-gray);
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

/* Dekoracyjne linie po bokach */
.section-header::before,
.section-header::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-header::before {
    right: calc(50% + 250px);
}

.section-header::after {
    left: calc(50% + 250px);
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.6rem 2rem;
    background: transparent;
    border: 1px solid var(--gold);
    position: relative;
}

/* Narożniki dla label */
.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold);
}

.section-label::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.section-label::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 3px;
}

/* ========================================
   ABOUT SECTION
   (Usunięto, bo treść przeniesiona do HERO)
   ======================================== */
.about {
    /* Zachowanie stylów sekcji, na wypadek ponownego użycia */
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.features-list {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--lighter-gray);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--gold-light);
    background: var(--white);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    border: 2px solid var(--gold-dark);
}

.feature-item h4 {
    color: var(--black);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background: var(--lighter-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    padding: 3rem 2rem;
    background: var(--white);
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.95) 100%);
    transition: height 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    height: 100%;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    color: var(--gold);
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--gold));
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

/* ========================================
   GALLERY SECTION - Elegancka siatka z ramkami
   ======================================== */
.projects {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-frame {
    position: relative;
    overflow: hidden;
    background: var(--lighter-gray);
    border: 4px solid var(--gold);
    box-shadow: 
        0 0 0 1px var(--gold-dark),
        var(--shadow);
    aspect-ratio: 4 / 3;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-frame {
    border-color: var(--gold-light);
    box-shadow: 
        0 0 0 1px var(--gold-light),
        0 0 20px rgba(197, 165, 114, 0.4),
        var(--shadow-lg);
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-frame img {
    transform: scale(1.1);
}

/* Nakładka z ikoną */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3rem;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========================================
   LIGHTBOX - Pełnoekranowy podgląd
   ======================================== */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border: 5px solid var(--gold);
    box-shadow: 
        0 0 0 2px var(--gold-dark),
        0 0 50px rgba(197, 165, 114, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Przyciski nawigacji */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(197, 165, 114, 0.2);
    border: 2px solid var(--gold);
    color: var(--white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(197, 165, 114, 0.6);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 300;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
    padding-bottom: 5px;
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
    padding-bottom: 5px;
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Licznik */
.lightbox-counter {
    margin-top: 2rem;
    color: var(--gold);
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 2rem;
    border: 1px solid var(--gold);
    backdrop-filter: blur(5px);
}

/* ========================================
   RESPONSIVE - Gallery
   ======================================== */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-frame {
        border-width: 3px;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-counter {
        font-size: 1.2rem;
        padding: 0.6rem 1.5rem;
        margin-top: 1rem;
    }
    
    .lightbox-content img {
        border-width: 3px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT SECTION (USUNIĘTO)
   ======================================== */
/* Usunięto style dla .contact, .contact-content, .contact-info, .contact-item,
   .contact-icon, .contact-form, .form-row, .form-group, .form-group input/textarea/label */

/* ========================================
   FOOTER - Czarny elegancki (Zmodyfikowany)
   ======================================== */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 3px solid var(--gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-gold);
}

/* Nowe style dla stopki jako sekcji kontaktowej */
.contact-footer-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-footer-title {
    font-size: 2.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-footer-location {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    letter-spacing: 1px;
}

.contact-footer-details p {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.8;
}

.contact-footer-details a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-footer-details a:hover {
    color: var(--gold);
}

.contact-footer-services {
    max-width: 90%;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.contact-footer-services p {
    font-size: 0.95rem;
    color: var(--light-gray);
    line-height: 1.8;
    font-style: italic;
    opacity: 0.8;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Dekoracyjna linia przed stopką */
.footer-info::before {
    content: '◆';
    display: block;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border: 4px solid var(--gold);
    box-shadow: 0 0 50px rgba(197, 165, 114, 0.5);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--gold);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    /* USUNIĘTE: .contact-content */
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .section-header::before,
    .section-header::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--gradient-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        border-top: 3px solid var(--gold);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.2rem;
    }
    
    .nav-link:first-child {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .gradient-text::before,
    .gradient-text::after {
        display: none;
    }
    
    .hero-description p {
        text-align: left;
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hero-feature {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    /* USUNIĘTE: .form-row */
    
    .stats-grid {
        gap: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .contact-footer-title {
        font-size: 2.2rem;
    }
    
    .contact-footer-details p {
        font-size: 1.2rem;
    }
    
    .contact-footer-location {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* USUNIĘTE: .contact-form */
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-footer-title {
        font-size: 1.8rem;
    }
    
    .contact-footer-details p {
        font-size: 1rem;
    }
    
    .contact-footer-services p {
        font-size: 0.85rem;
    }
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}