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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #3A3A3C;
    background-color: #FAF8F5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FAF8F5;
}

::-webkit-scrollbar-thumb {
    background: #8B9C8A;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3A3A3C;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(58, 58, 60, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: #3A3A3C;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #3A3A3C;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B9C8A;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #3A3A3C;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.pexels.com/photos/5806924/pexels-photo-5806924.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    margin-top: 72px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(58, 58, 60, 0.3), transparent, rgba(250, 248, 245, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 1024px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Buttons */
.btn {
    padding: 1.5rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.5s ease;
    display: inline-block;
}

.btn-primary {
    background: #3A3A3C;
    color: white;
}

.btn-primary:hover {
    background: #8B9C8A;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 1px solid #3A3A3C;
    color: #3A3A3C;
}

.btn-outline:hover {
    background: #3A3A3C;
    color: white;
}

.btn-sage {
    background: #8B9C8A;
    color: white;
}

.btn-sage:hover {
    background: #3A3A3C;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #3A3A3C;
    margin-bottom: 1.5rem;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(58, 58, 60, 0.7);
    max-width: 42rem;
    margin: 0 auto;
}

.separator {
    width: 5rem;
    height: 2px;
    background: #8B9C8A;
    margin: 1.5rem 0 2rem;
}

.separator.centered {
    margin: 1.5rem auto 2rem;
}

.centered {
    text-align: center;
}

/* Values Section */
.values-section {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(139, 156, 138, 0.1);
    color: #8B9C8A;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.value-card:hover .value-icon {
    background: rgba(139, 156, 138, 0.2);
    transform: scale(1.1);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #3A3A3C;
}

.value-description {
    color: rgba(58, 58, 60, 0.6);
    line-height: 1.7;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.two-column-layout.reverse .column:first-child {
    order: 2;
}

.two-column-layout.reverse .column:last-child {
    order: 1;
}

.column {
    width: 100%;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #3A3A3C;
    line-height: 1.3;
}

.column-text {
    font-size: 1.125rem;
    color: rgba(58, 58, 60, 0.8);
    line-height: 1.8;
}

.section-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Craftsmanship Section */
.craftsmanship-section {
    background: #FAF8F5;
}

/* Advisory Section */
.advisory-section {
    background: white;
}

/* Why Section */
.why-section {
    background: rgba(139, 156, 138, 0.05);
}

.why-text {
    font-size: 1.125rem;
    color: rgba(58, 58, 60, 0.8);
    line-height: 1.8;
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Testimonials */
.testimonials-section {
    background: white;
}

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

.testimonial-card {
    background: #FAF8F5;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.stars {
    color: #8B9C8A;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: rgba(58, 58, 60, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: 'Cormorant', serif;
    font-size: 1.125rem;
    color: #3A3A3C;
}

/* facebook Section */
.facebook-section {
    background: #FAF8F5;
}

.facebook-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.facebook-icon {
    color: #3A3A3C;
    margin-bottom: 20px;
}

.facebook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.facebook-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.facebook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.facebook-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 58, 60, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.facebook-overlay svg {
    color: white;
}

.facebook-item:hover img {
    transform: scale(1.1);
}

.facebook-item:hover .facebook-overlay {
    opacity: 1;
}

/* Footer */
.footer {
    background: #3A3A3C;
    color: white;
    padding: 5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-title {
    font-family: 'Cormorant', serif;
    font-size: 1.875rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-family: 'Cormorant', serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-text p {
    margin-bottom: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item svg {
    color: #8B9C8A;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-left: 50px;
    margin-right: 50px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8B9C8A;
}

.images-zigzag {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: flex-start;
}

.zigzag-item {
    width: 220px;
    transition: transform 0.4s ease;
}

.zigzag-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Přeskakování nahoru/dolů */
.zigzag-item:nth-child(even) {
    margin-top: 60px;
}

/* Hover efekt */
.zigzag-item:hover {
    transform: translateY(-10px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        margin-top: 60px;
    }

    section {
        padding: 4rem 0;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-column-layout.reverse .column:first-child,
    .two-column-layout.reverse .column:last-child {
        order: 0;
    }

    .section-image {
        height: 400px;
    }

    .facebook-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .btn {
        padding: 1.25rem 2rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}