/* Nebre Kreator Landing Page Styles */

:root {
    /* Paleta kolorów Nebre */
    --nebre-rose: #e39eb3;
    --nebre-dark: #464341;
    --nebre-gray: #6c6967;
    --nebre-gray-dark: #51504f;
    --nebre-gray-light: #b7b7b7;
    --nebre-gray-medium: #666666;
    --nebre-cream: #fdf0e9;
    --nebre-light: #f7f7f7;
    --nebre-white: #ffffff;
    
    /* Dodatkowe */
    --nebre-gold: #d4af37;
    --nebre-gold-light: #f2d678;
}

/* Reset i bazowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nebre-kreator-landing {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: var(--nebre-dark);
    background: var(--nebre-white);
    overflow-x: hidden;
}

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

/* Hero Section */
.nkl-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--nebre-white);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.nkl-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--nebre-rose) 0%, transparent 70%);
    opacity: 0.05;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(5deg); }
}

.nkl-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.nkl-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nkl-title-accent {
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--nebre-rose);
    font-weight: 600;
    opacity: 0;
    animation: slideDown 1s ease forwards 0.2s;
}

.nkl-title-main {
    display: block;
    font-weight: 300;
    font-style: italic;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.4s;
}

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

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

.nkl-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--nebre-gray);
    margin-bottom: 50px;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

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

.nkl-video-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.nkl-video-intro {
    text-align: center;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.9s;
}

.nkl-video-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nebre-rose);
    font-weight: 600;
    padding: 8px 20px;
    background: var(--nebre-cream);
    border-radius: 20px;
}

.nkl-hero-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(227, 158, 179, 0.2);
    opacity: 0;
    animation: scaleIn 1s ease forwards 1s;
    background: transparent;
    box-sizing: border-box;
}

.nkl-hero-video > div {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.nkl-hero-video iframe {
    max-width: 100%;
}

.nkl-hero-video::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--nebre-rose) 0%, var(--nebre-cream) 100%);
    border-radius: 23px;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* How it Works Section */
.nkl-how-it-works {
    padding: 100px 0;
    background: var(--nebre-white);
}

.nkl-section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.nkl-section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-align: center;
    color: var(--nebre-gray);
    margin-bottom: 60px;
    font-weight: 300;
}

.nkl-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.nkl-step {
    text-align: center;
    padding: 40px 30px;
    background: var(--nebre-cream);
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
}

.nkl-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(227, 158, 179, 0.2);
}

.nkl-step-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--nebre-rose);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.nkl-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--nebre-dark);
}

.nkl-step-desc {
    font-size: 1rem;
    color: var(--nebre-gray);
    line-height: 1.6;
}

/* Gallery Section - Multi-Slide Fullwidth Slider */
.nkl-gallery {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--nebre-white) 0%, var(--nebre-light) 100%);
}

.nkl-gallery-header {
    margin-bottom: 60px;
}

.nkl-gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 60px;
}

.nkl-slider-container {
    width: 100%;
    overflow: hidden;
}

.nkl-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nkl-slider-slide {
    min-width: 350px;
    max-width: 350px;
    height: 350px;
    flex-shrink: 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nkl-slider-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(227, 158, 179, 0.3);
}

.nkl-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nkl-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nebre-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nkl-slider-nav:hover {
    background: var(--nebre-rose);
    color: var(--nebre-white);
    transform: translateY(-50%) scale(1.1);
}

.nkl-slider-prev {
    left: 10px;
}

.nkl-slider-next {
    right: 10px;
}

.nkl-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 0 20px;
}

.nkl-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--nebre-gray-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nkl-slider-dot.active {
    background: var(--nebre-rose);
    width: 30px;
    border-radius: 6px;
}

.nkl-slider-dot:hover {
    background: var(--nebre-rose);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .nkl-slider-slide {
        min-width: 300px;
        max-width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nkl-gallery-slider {
        padding: 0 50px;
    }
    
    .nkl-slider-slide {
        min-width: 280px;
        max-width: 280px;
        height: 280px;
    }
    
    .nkl-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .nkl-slider-prev {
        left: 5px;
    }
    
    .nkl-slider-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .nkl-slider-slide {
        min-width: 250px;
        max-width: 250px;
        height: 250px;
    }
}

/* Testimonials Section */
.nkl-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--nebre-white) 0%, var(--nebre-light) 100%);
    position: relative;
    overflow: hidden;
}

.nkl-testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 158, 179, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.nkl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.nkl-testimonial-card {
    background: var(--nebre-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nkl-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(227, 158, 179, 0.25);
}

.nkl-featured-testimonial {
    background: linear-gradient(135deg, var(--nebre-rose) 0%, #d88ca0 100%);
    color: var(--nebre-white);
    transform: scale(1.05);
}

.nkl-featured-testimonial:hover {
    transform: translateY(-10px) scale(1.05);
}

.nkl-testimonial-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--nebre-gold);
    color: var(--nebre-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.nkl-testimonial-stars {
    display: flex;
    gap: 5px;
    color: var(--nebre-gold);
}

.nkl-featured-testimonial .nkl-testimonial-stars {
    color: var(--nebre-gold-light);
}

.nkl-testimonial-stars svg {
    width: 20px;
    height: 20px;
}

.nkl-testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--nebre-dark);
    font-style: italic;
    flex-grow: 1;
}

.nkl-featured-testimonial .nkl-testimonial-text {
    color: var(--nebre-white);
}

.nkl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.nkl-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nebre-rose) 0%, #d88ca0 100%);
    color: var(--nebre-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.nkl-featured-testimonial .nkl-testimonial-avatar {
    background: var(--nebre-white);
    color: var(--nebre-rose);
}

.nkl-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nkl-testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nebre-dark);
}

.nkl-featured-testimonial .nkl-testimonial-name {
    color: var(--nebre-white);
}

.nkl-testimonial-date {
    font-size: 0.9rem;
    color: var(--nebre-gray);
}

.nkl-featured-testimonial .nkl-testimonial-date {
    color: rgba(255, 255, 255, 0.8);
}

.nkl-testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px 0 20px;
    border-top: 2px solid rgba(227, 158, 179, 0.2);
}

.nkl-stat {
    text-align: center;
}

.nkl-stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--nebre-rose);
    line-height: 1;
    margin-bottom: 10px;
    font-style: italic;
}

.nkl-stat-label {
    font-size: 1rem;
    color: var(--nebre-gray);
    font-weight: 500;
}

/* Responsive dla testimonials */
@media (max-width: 1024px) {
    .nkl-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nkl-featured-testimonial {
        transform: scale(1);
    }
    
    .nkl-featured-testimonial:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .nkl-testimonials-stats {
        gap: 50px;
    }
}

@media (max-width: 640px) {
    .nkl-testimonials {
        padding: 60px 0;
    }
    
    .nkl-testimonial-card {
        padding: 30px 25px;
    }
    
    .nkl-testimonials-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .nkl-stat-number {
        font-size: 2.5rem;
    }
}

/* Features Section */
.nkl-features {
    padding: 80px 0;
    background: var(--nebre-cream);
}

.nkl-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.nkl-feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--nebre-white);
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
}

.nkl-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(227, 158, 179, 0.2);
}

.nkl-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--nebre-rose);
    transition: transform 0.3s ease;
}

.nkl-feature:hover .nkl-feature-icon {
    transform: scale(1.1);
}

.nkl-feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.nkl-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--nebre-dark);
}

.nkl-feature-desc {
    font-size: 1rem;
    color: var(--nebre-gray);
    line-height: 1.6;
}

/* Responsive dla features */
@media (max-width: 1024px) {
    .nkl-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .nkl-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .nkl-feature {
        padding: 35px 25px;
    }
}

/* CTA Section - Kreatory */
.nkl-cta {
    padding: 100px 0;
    background: var(--nebre-white);
}

.nkl-creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.nkl-creator-card {
    background: var(--nebre-white);
    border: 2px solid var(--nebre-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nkl-creator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--nebre-rose);
}

.nkl-creator-card.nkl-featured {
    border: 3px solid var(--nebre-rose);
}

.nkl-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--nebre-rose);
    color: var(--nebre-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.nkl-creator-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--nebre-light);
    flex-shrink: 0;
}

.nkl-creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nkl-creator-card:hover .nkl-creator-image img {
    transform: scale(1.05);
}

.nkl-creator-card > * {
    padding: 0 25px;
}

.nkl-creator-card > .nkl-creator-image {
    padding: 0;
}

.nkl-creator-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 25px 10px;
    color: var(--nebre-dark);
    min-height: 3.6rem;
    display: flex;
    align-items: center;
}

.nkl-creator-price {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--nebre-rose);
    margin: 0 25px 15px;
    font-style: italic;
}

.nkl-creator-desc {
    font-size: 0.95rem;
    color: var(--nebre-gray);
    line-height: 1.6;
    margin: 0 25px 25px;
    flex-grow: 1;
    min-height: 3rem;
}

.nkl-creator-btn {
    display: block;
    width: calc(100% - 50px);
    margin: auto 25px 25px;
    padding: 15px 30px;
    background: var(--nebre-dark);
    color: var(--nebre-white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nkl-creator-btn:hover {
    background: var(--nebre-rose);
    transform: scale(1.02);
}

/* Final CTA Section */
.nkl-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--nebre-rose) 0%, #d88ca0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nkl-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.nkl-final-cta-content {
    position: relative;
    z-index: 1;
}

.nkl-final-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--nebre-white);
    margin-bottom: 20px;
    font-style: italic;
}

.nkl-final-cta-desc {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.nkl-final-cta-btn {
    display: inline-block;
    padding: 20px 50px;
    background: var(--nebre-white);
    color: var(--nebre-rose);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nkl-final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nkl-hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .nkl-hero-title {
        margin-bottom: 15px;
    }
    
    .nkl-hero-subtitle {
        margin-bottom: 30px;
    }
    
    .nkl-video-section {
        padding: 0 15px;
    }
    
    .nkl-hero-video {
        border-radius: 15px;
    }
    
    .nkl-how-it-works,
    .nkl-gallery,
    .nkl-cta {
        padding: 60px 0;
    }
    
    .nkl-steps,
    .nkl-gallery-grid,
    .nkl-creators-grid {
        gap: 20px;
    }
    
    .nkl-step {
        padding: 30px 20px;
    }
    
    .nkl-creators-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Placeholder images styling */
.nkl-gallery-image,
.nkl-creator-image img {
    background: linear-gradient(135deg, var(--nebre-cream) 0%, var(--nebre-light) 100%);
}
