:root {
    --pink-soft: #f8d3e2;
    --pink-deep: #d48ba8;
    --blue-soft: #97d8ec;
    --blue-deep: #5bbce4; 
    --dark: #1a1a1a;
    --white-card: #ffffff;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --radius-md: 15px;
    --shadow-soft: 0 10px 40px -5px rgba(0,0,0,0.06); 
    --gold-star: #d4af37;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    font-family: var(--font-body);
    color: #555;
    background: #fafafa;
    overflow-x: hidden;
}

body.locked { overflow: hidden !important; height: 100vh; touch-action: none; padding-right: 0; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { display: block; max-width: 100%; height: auto; }

header { 
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; height: 90px; 
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); 
    box-shadow: 0 2px 20px rgba(0,0,0,0.03); transition: all 0.5s; 
    overflow: visible;
}
header.scrolled { height: 70px; background: rgba(255, 255, 255, 0.98); }

header.menu-open .logo-wrapper {
    top: 100px; 
    transform: translateX(-50%) scale(1.1); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-container { 
    width: 100%; max-width: 1400px; height: 100%; margin: 0 auto; padding: 0 40px; 
    display: flex; justify-content: space-between; align-items: center; position: relative; 
}

.logo-wrapper { 
    position: absolute; 
    left: 50%; 
    top: 0; 
    transform: translateX(-50%); 
    width: 110px; height: 110px; 
    background: #fff; border-radius: 50%; 
    display: flex; justify-content: center; align-items: center; 
    box-shadow: 0 5px 30px rgba(0,0,0,0.05); z-index: 1001; 
    margin-top: 15px; 
    padding: 5px; transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); 
}
header.scrolled .logo-wrapper { width: 80px; height: 80px; margin-top: 5px; }
.logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.desktop-nav { display: flex; width: 100%; justify-content: space-between; align-items: center; }
.nav-group { display: flex; flex: 1; gap: 30px; }

.nav-group.left { justify-content: flex-start; padding-right: 120px; padding-left: 0; } 
.nav-group.right { justify-content: flex-end; padding-left: 120px; }

.nav-link { 
    text-transform: uppercase; font-family: var(--font-body); font-size: 0.75rem; 
    letter-spacing: 2px; font-weight: 600; color: var(--dark); position: relative; padding: 5px 0;
}
.nav-link::after { 
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px; 
    background: var(--pink-deep); transition: 0.4s; transform: translateX(-50%); 
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.hamburger-wrap { display: none; cursor: pointer; z-index: 1002; width: 25px; height: 20px; position: relative; }
.h-line { position: absolute; width: 100%; height: 2px; background: var(--dark); transition: 0.4s; }
.h-line:nth-child(1) { top: 0; }
.h-line:nth-child(2) { bottom: 0; }
.hamburger-wrap.active .h-line:nth-child(1) { top: 9px; transform: rotate(45deg); background: var(--pink-deep); }
.hamburger-wrap.active .h-line:nth-child(2) { bottom: 9px; transform: rotate(-45deg); background: var(--pink-deep); }

.mobile-menu-drawer { 
    position: fixed; top: 0; left: 0; width: 100%; 
    height: 85vh; 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(10px);
    z-index: 999; 
    padding-top: 230px; 
    padding-bottom: 30px;
    transform: translateY(-100%); 
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); 
    display: flex; flex-direction: column; align-items: center; gap: 25px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow-y: auto; 
}
.mobile-menu-drawer.open { transform: translateY(0); }

.mobile-link { font-family: var(--font-heading); font-size: 1.8rem; color: var(--dark); flex-shrink: 0; }

.mobile-copyright {
    margin-top: auto; 
    font-size: 10px; 
    color: #ccc; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    flex-shrink: 0;
    padding-bottom: 20px;
}

.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); backdrop-filter: blur(5px);
    z-index: 998; opacity: 0; visibility: hidden; transition: 0.4s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }


#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #fff; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.4s ease;
}
.loader-wrap { animation: pulseGentle 0.8s infinite ease-in-out; }
.loader-icon { font-size: 50px; color: var(--pink-soft); filter: drop-shadow(0 0 10px rgba(0,0,0,0.1)); }
@keyframes pulseGentle {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.hero {
    height: 100dvh; position: relative; 
    display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; 
}
.hero-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}
.hero-content {
    padding: 30px; max-width: 900px;
    opacity: 0; animation: fadeUpHero 1s ease-out forwards 0.5s; position: relative; z-index: 1;
}
@keyframes fadeUpHero { to { opacity: 1; transform: translateY(0); } }

.hero h1 { 
    font-family: var(--font-heading); font-size: 5.5rem; color: #fff;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4); margin-bottom: 10px; font-weight: 500;
}
.hero p { 
    color: #f0f0f0; font-size: 1.1rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-btn {
    display: inline-block; padding: 16px 50px;
    background: rgba(255,255,255,0.95); color: var(--dark);
    font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    border-radius: 2px; text-decoration: none; transition: all 0.4s ease;
}
.hero-btn:hover {
    background: var(--pink-soft); color: var(--dark); transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(248, 211, 226, 0.159);
}
.hero-btn1 {
    display: inline-block; padding: 16px 50px;
    background: rgba(237, 193, 211, 0.796); color: var(--dark);
    font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    border-radius: 2px; text-decoration: none; transition: all 0.4s ease;
}
.hero-btn1:hover {
    background: var(--pink-soft); color: var(--dark); transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(248, 211, 226, 0.159);
}

.section { padding: 100px 20px; }
.sec-title { text-align: center; margin-bottom: 70px; }
.sec-title h2 { font-family: var(--font-heading); font-size: 3.5rem; color: var(--dark); font-weight: 500; margin: 0; }

.separator {
    display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.6;
}
.sep-line { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--dark)); }
.sep-line.right { background: linear-gradient(to left, transparent, var(--dark)); }
.sep-diamond { width: 8px; height: 8px; background: var(--pink-deep); transform: rotate(45deg); }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto;
}
.pro-card {
    background: var(--white-card); border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-soft); transition: 0.5s; display: flex; flex-direction: column; height: 450px;
}
.pro-card:hover { transform: translateY(-15px); box-shadow: 0 20px 50px -5px rgba(0,0,0,0.12); }
.card-img-wrap { height: 65%; overflow: hidden; position: relative; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.pro-card:hover .card-img-wrap img { transform: scale(1.1); }
.card-content { height: 35%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 25px; }
.card-content h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 5px; }
.card-content p { color: #888; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; }

.btn-minimal {
    display: inline-block; padding: 12px 0; border-bottom: 1px solid var(--dark); color: var(--dark);
    font-weight: 500; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s;
}
.btn-minimal:hover { color: var(--pink-deep); border-color: var(--pink-deep); letter-spacing: 3px; }
.read-more-wrap { text-align: center; margin-top: 60px; }

.image-wrapper { position: relative; width:100%; height: 100%;}
.image-wrapper img { display: block; width:100%; height:100%; object-fit: cover;}
.uskoro { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0, 0, 0, 0.7); color: #fff; padding: 15px 30px; font-size: 24px; font-weight: bold; letter-spacing: 3px; text-transform: uppercase; border-radius: 8px; white-space: nowrap; }

.reviews-container {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto;
}
.review-card {
    background: #fff; padding: 40px 30px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft); text-align: center; transition: 0.3s;
    border: 1px solid #f0f0f0;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--pink-soft); }
.stars { color: var(--gold-star); margin-bottom: 15px; font-size: 1.1rem; }
.review-text { font-style: italic; color: #666; margin-bottom: 20px; line-height: 1.6; }
.client-name { font-family: var(--font-heading); font-weight: 600; color: var(--dark); font-size: 1.2rem; }

.faq-wrapper { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: transparent; border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 25px; padding-bottom: 10px; transition: 0.3s ease;
}
.faq-question {
    padding: 15px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-heading); font-weight: 500; color: var(--dark); font-size: 1.6rem; transition: color 0.3s;
}
.faq-item:hover .faq-question { color: var(--pink-deep); }
.faq-question i { font-size: 1.2rem; color: #ccc; transition: 0.3s; font-weight: 300; }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, padding 0.3s ease;
    color: #666; font-size: 1rem; line-height: 1.7; padding-right: 20px;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; } 
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--dark); }
.faq-item.active { border-bottom-color: var(--pink-deep); }

.team-wrap {
    display: flex; justify-content: center; align-items: center; max-width: 1200px; margin: 0 auto; gap: 40px;
}
.team-card-pro {
    background: #fff; padding: 40px 25px; text-align: center; border-radius: 4px;
    transition: all 0.4s ease; box-shadow: var(--shadow-soft);
    display: flex; flex-direction: column; align-items: center; border-top: 3px solid transparent;
}
.team-card-pro:hover { border-top-color: var(--pink-soft); transform: translateY(-10px); }
.team-img { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; margin-bottom: 25px; border: 1px solid #eee; padding: 5px; }
.team-name { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 5px; color: var(--dark); }
.team-role { font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.worker-link { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; border-bottom: 1px solid #ccc; padding-bottom: 3px; }
.team-card-pro.small { width: 280px; opacity: 0.9; }
.team-card-pro.large { width: 340px; transform: scale(1.05); z-index: 2; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.gallery-wrap {
    position: relative; 
    height: 500px; max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: center; align-items: center; 
    perspective: 1000px; overflow: hidden; touch-action: pan-y;
}
.nav-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; 
    border-radius: 50%; cursor: pointer; border: none; background: #fff; 
    display: flex; justify-content: center; align-items: center; font-size: 24px; z-index: 100;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: 0.3s;
}
.arrow-left { left: 0; color: var(--pink-deep); }
.arrow-left:hover { background: var(--pink-deep); color: #fff; transform: translateY(-50%) scale(1.1); }
.arrow-right { right: 0; color: var(--blue-soft); }
.arrow-right:hover { background: var(--blue-deep); color: #fff; transform: translateY(-50%) scale(1.1); }

.g-item {
    position: absolute; border-radius: 10px; overflow: hidden;
    will-change: transform, opacity; 
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    width: 600px; height: 400px;
    opacity: 0; transform: scale(0.5); z-index: 1; visibility: hidden;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.g-item.center { opacity: 1; transform: translateX(0) scale(1); z-index: 10; visibility: visible; }
.g-item.left { opacity: 0.6; transform: translateX(-60%) scale(0.8) rotateY(10deg); z-index: 5; visibility: visible; filter: brightness(0.7); }
.g-item.right { opacity: 0.6; transform: translateX(60%) scale(0.8) rotateY(-10deg); z-index: 5; visibility: visible; filter: brightness(0.7); }

#kontakt { position: relative; padding: 100px 20px; overflow: hidden; background: #fff;}
.contact-pro-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
}
.contact-info h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 40px; }
.info-card {
    display: flex; align-items: center; margin-bottom: 20px; padding: 25px;
    background: #fdfdfd; border: 1px solid #eee; border-radius: 10px;
    transition: 0.3s; cursor: pointer; text-decoration: none;
}
.info-card.no-hover { cursor: default; } 
.info-card:not(.no-hover):hover { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateX(10px); border-color: var(--pink-soft); }
.icon-circle { width: 50px; height: 50px; background: var(--pink-soft); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #fff; font-size: 1.2rem; margin-right: 20px; flex-shrink: 0; }
.icon-circle.blue { background: var(--blue-soft); }
.icon-circle.dark { background: var(--dark); }

.map-frame { position: relative; padding: 15px; background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: rotate(1deg); transition: 0.4s; }
.map-frame:hover { transform: rotate(0); }

.map-wrapper { 
    width: 100%; height: 500px; overflow: hidden; background: #eee; 
    position: relative;
}

footer { text-align: center; padding: 60px 20px; background: #fafafa; border-top: 1px solid #eee; }
.footer-logo { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; display: block; }
.f-icons a { font-size: 22px; margin: 0 15px; color: var(--dark); transition: 0.3s; }
.f-icons a:hover { color: var(--pink-deep); }
.copy-text { margin-top: 30px; font-size: 0.8rem; color: #888; display: block; }
.created-by { margin-top: 10px; font-size: 0.75rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; display: block; }
.created-by a { color: var(--pink-deep); font-weight: 600; }

@media (max-width: 900px) {
    header { height: 80px; }
    .desktop-nav { display: none; }
    
    .logo-wrapper {
        width: 90px; height: 90px;
        top: 0; margin-top: 15px; 
        transform: translateX(-50%);
    }
    header.scrolled .logo-wrapper { width: 70px; height: 70px; margin-top: 5px; }

    .hamburger-wrap {
        display: block;
        position: absolute; right: 20px; top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
    }

    .hero h1 { font-size: 3.5rem; line-height: 1; }
    .hero p { font-size: 0.9rem; }
    
    .grid-3 { grid-template-columns: 1fr; gap: 30px; }
    .reviews-container { grid-template-columns: 1fr; gap: 20px; }
    .pro-card { height: auto; min-height: 400px; }
    
    .team-wrap { flex-direction: column; }
    .team-card-pro.small, .team-card-pro.large { width: 100%; transform: scale(1); opacity: 1; }

    .contact-pro-container { grid-template-columns: 1fr; gap: 40px; }
    .map-frame { transform: rotate(0); padding: 10px; }
    .map-wrapper { height: 300px; }

    .sec-title h2 { font-size: 2.5rem; }
    .faq-question { font-size: 1.4rem; }

    .gallery-wrap { height: 350px; perspective: 600px; }
    .nav-arrow { width: 40px; height: 40px; font-size: 16px; background: rgba(255,255,255,0.8); display: flex !important; }
    .arrow-left { left: 10px; }
    .arrow-right { right: 10px; }

    .g-item { width: 80%; height: 250px; }
    .g-item.left { transform: translateX(-55%) scale(0.85); opacity: 0.5; z-index: 5; }
    .g-item.right { transform: translateX(55%) scale(0.85); opacity: 0.5; z-index: 5; }
    .g-item.center { transform: translateX(0) scale(1); z-index: 10; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 11000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 15px;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(60px) scale(0.95);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal-overlay.show .modal-box {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    border: none;
    font-size: 1.2rem;
    color: var(--dark);
    cursor: pointer;
    transition: 0.3s;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.close-modal:hover {
    background: #fff;
    transform: rotate(90deg) scale(1.1);
}

.modal-img-top {
    width: 100%;
    height: 240px;
    position: relative;
}

.modal-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 30px 25px 40px 25px;
}

.modal-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.1;
}

.highlight-font {
    color: var(--pink-deep);
    font-style: italic;
    font-weight: 600;
}

.wishes-text {
    font-size: 1rem;
    color: #777;
    margin-bottom: 25px;
}

.notice-box {
    background: #fff0f6;
    border: 2px dashed #f1cddf;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    color: #444;
}

.notice-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--pink-deep);
    margin-bottom: 5px;
}

.notice-box p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

.notice-box strong {
    font-size: 1.6rem;
    color: var(--dark);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .modal-box {
        max-width: 100%;
    }
    .modal-img-top {
        height: 200px;
    }
    .modal-headline {
        font-size: 1.8rem;
    }
}