@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --c-beige: #CBAD81;
    --c-beige-dark: #a88a5e;
    --c-pink: #EC008C;
    --c-purple: #6F00FF;
    --c-black: #050505;
    --c-dark: #111111;
    --c-white: #FFFFFF;
    --c-light-gray: #f9f9f9;
    --c-border: #333333;
    
    --f-heading: 'Marcellus', serif;
    --f-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-body);
    background-color: var(--c-black);
    color: var(--c-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    text-align: center;
    color: var(--c-beige);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--c-beige);
    transition: var(--transition);
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--c-white); /* Updated from grey to white for dark backgrounds */
}

a {
    text-decoration: none;
    color: var(--c-white);
    transition: var(--transition);
}

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

section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--c-white);
    color: var(--c-black);
}
.section-light h2 {
    color: var(--c-black);
}
.section-light p {
    color: #000000;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--c-border);
}

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

.logo img {
    height: 35px; /* Logo styling */
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-pink), var(--c-purple));
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--c-white);
    font-size: 1.5rem;
}

/* Hero section */
/* --- HERO SEKCE COMPLETE --- */
.hero {
    position: relative;
    background-color: #000000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(111, 0, 255, 0.141));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 10%;
    margin-top: 40px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    z-index: 2;
}

/* Magická záře v pozadí */
.hero-glow {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(111, 0, 255, 0.6) 0%, rgba(236, 0, 140, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* Typografie podle vzoru */
.highlight-accent {
    color: #CBAD81;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

/* Tvůj původní styl, který už máš vyladěný */
.hero-content-h1 {
    color: #ffffff;
    font-family: 'Marcellus', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Animace pro celou větu */
.animate-all {
    opacity: 0; /* Na začátku neviditelný */
    transform: translateY(20px); /* Lehce posunutý dolů */
    
    animation: revealHero 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    /* animation-delay: 0.3s; */
}

@keyframes revealHero {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px); /* Jemný moderní detail při náběhu */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Tlačítko bez rámečku */
.cta-button {
    display: inline-block;
    padding: 18px 35px;
    background: linear-gradient(90deg, #EC008C, #6F00FF);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(236, 0, 140, 0.4);
}

/* FOTOGRAFIE S BLOB MASKOU A PROLNUTÍM */
.blob-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    /* Maska vytvoří ten organický tvar a rozpití okrajů */
    mask-image: radial-gradient(circle, black 40%, rgba(0,0,0,0.8) 65%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 40%, rgba(0,0,0,0.8) 65%, transparent 100%);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Organické zaoblení samotné fotky */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* RESPONZIVITA - Mobilní verze */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-image-area {
        order: -1; /* Fotka bude nahoře */
    }

    .blob-wrapper {
        max-width: 350px;
    }

    /* .hero-glow {
        width: 300px;
        height: 300px;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
    } */

    .hero-glow {
    position: absolute;
    top: 40%;
    left: -30%;
}
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-pink), var(--c-purple));
    color: var(--c-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--c-purple), var(--c-pink));
    color: var(--c-white);
}

.btn-secondary {
    background: transparent;
    color: var(--c-beige);
    border: 2px solid var(--c-beige);
}

.btn-secondary:hover {
    background: var(--c-beige);
    color: var(--c-black);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}
/* Removed the invalid opening tag and corrected the hierarchy */
.check-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-top: 20px;
}
.check-list li {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.check-icon {
    width: 24px;
    height: 24px;
    color: var(--c-pink);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-intro.appear .check-list li:nth-child(1) .check-icon { transition-delay: 0.2s; opacity: 1; transform: scale(1); }
.faq-intro.appear .check-list li:nth-child(2) .check-icon { transition-delay: 0.4s; opacity: 1; transform: scale(1); }
.faq-intro.appear .check-list li:nth-child(3) .check-icon { transition-delay: 0.6s; opacity: 1; transform: scale(1); }

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--c-dark);
    padding: 50px;
    border-radius: 0; /* Changed to 0 */
    border: 1px solid var(--c-border);
    transition: var(--transition);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    /* max-width: 450px; */
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--c-pink);
    /* Removed shadow */
}

.faq-item:hover h3 {
    color: var(--c-pink); /* Changes title to pink */
}

.faq-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.faq-item p {
    color: var(--c-white);
}

/* Gallery Section (Flex for centering) */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 0; /* Changed to 0 */
    overflow: hidden;
    box-shadow: var(--shadow-light);
    aspect-ratio: 4/3;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 450px;
}

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

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

/* Pricing Section (Flex for centering) */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--c-dark);
    padding: 50px;
    border-radius: 0; /* Changed to 0 */
    border: 1px solid var(--c-border);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: var(--transition);
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
    max-width: 500px;
}

.pricing-card:hover {
    border-color: var(--c-pink);
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--c-white);
    margin-bottom: 20px;
    font-family: var(--f-heading);
}

.pricing-option {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--c-border);
}
.pricing-option:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-option h4 {
    color: var(--c-beige);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.pricing-option p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--c-white);
}
.pricing-option .price {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--c-pink);
}

/* Custom full-width generic card matching pricing-card */
.pricing-card.full-width {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 40px auto 0;
}

/* References Section */
#reference {
    background-color: var(--c-black);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(111, 0, 255, 0.188));
    padding: 100px 0;
}

#reference h2 {
    margin-bottom: 50px;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reference-card {
    background: var(--c-dark);
    padding: 50px 50px;
    border-radius: 0; /* Changed to 0 */
    border: 1px solid var(--c-border);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--c-beige);
    font-family: var(--f-heading);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 20px;
    /* opacity: 0.3; */
}

.reference-card p {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
    margin-top: 20px;
    color: var(--c-white);
}

.reference-card h4 {
    color: var(--c-beige);
    font-size: 1.1rem;
    text-align: right;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-text .cta-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-text h2 {
    text-align: left;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h3 {
    color: var(--c-white);
    margin-bottom: 5px;
}

.contact-info a {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-beige);
    margin-bottom: 15px;
}
.contact-info a:hover {
    color: var(--c-pink);
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: none;
}

/* Footer */
footer {
    padding: 80px 0;
    text-align: center;
    background: #000;
    border-top: 1px solid var(--c-border);
}

footer p {
    font-size: 0.85rem;
    color: var(--c-white); /* Updated from grey string */
    margin-bottom: 5px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--c-beige);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 800px;
}

/* Scroll Animations using simple classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Base CSS */
.lightbox {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    padding-top: 60px;
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.lightbox-content {
    margin: auto; 
    display: block; 
    max-width: 90%; 
    max-height: 80vh; 
    object-fit: contain;
    animation: zoom 0.6s;
}
@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}
.lightbox-close {
    position: absolute; 
    top: 15px; 
    right: 35px; 
    color: #fff; 
    font-size: 40px; 
    font-weight: 300; 
    cursor: pointer;
}
.lightbox-close:hover {
    color: #fff;
    opacity: 0.8;
}
.lightbox-prev, .lightbox-next {
    cursor: pointer; 
    position: absolute; 
    top: 50%; 
    width: auto; 
    padding: 16px; 
    margin-top: -50px;
    color: white; 
    font-weight: 300; 
    font-size: 30px; 
    transition: 0.3s ease; 
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.lightbox-next { right: 0; border-radius: 3px 0 0 3px; }
.lightbox-prev { left: 0; }
.lightbox-prev:hover, .lightbox-next:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text .subheadline {
        margin: 0 auto 40px;
    }
    
    .contact-text h2 {
        text-align: center;
    }

    /* Hero image moves below text on mobile */
    .hero-image {
        order: 1;
        margin-top: 20px;
        justify-content: center;
    }
    .blob-container {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 75px; /* height of header slightly variable */
        right: -100%;
        flex-direction: column;
        background: rgba(5, 5, 5, 0.98);
        width: 100%;
        height: calc(100vh - 75px);
        align-items: center;
        justify-content: center;
        gap: 20px; /* Reduced gap as per feedback */
        transition: right 0.4s ease;
        border-top: 1px solid var(--c-border);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .gallery-item {
        flex: 1 1 100%; /* stack gallery completely on very small screens */
    }

    #reference h2 {
        margin-bottom: 30px;
    }
}
