@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary-color: #8fa684; 
    --secondary-color: #6a825f; 
    --dark-color: #43543b; 
    --light-bg: #f4f6f3; 
    --white: #FFFFFF;
    --accent: #d0dcc8;
    
    --font-text: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    background-color: var(--light-bg);
    color: var(--dark-color);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(106, 130, 95, 0.3);
}

header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.desktop-btn {
    display: inline-block;
}

.mobile-btn-li {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--white);
    text-align: center;
    padding: 12rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%; 
    margin: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
    font-style: italic;
}

section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-color);
    max-width: 600px;
    margin: 0 auto;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: var(--white);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(106, 130, 95, 0.08);
    position: relative;
    overflow: hidden;
}

.about-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.5;
}

.about-text {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.about-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.about-image-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    object-fit: contain;
    max-height: 550px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(106, 130, 95, 0.08);
    border-top: 5px solid var(--primary-color);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--accent);
}

.price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.price-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    padding-right: 1rem;
}

.price-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-color);
    white-space: nowrap;
}

.price-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.info-banner {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    font-weight: 500;
}

.info-banner p {
    margin-bottom: 0.5rem;
}
.info-banner p:last-child {
    margin-bottom: 0;
}

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

.gallery-item {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(106, 130, 95, 0.08);
    border-top: 5px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 130, 95, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    display: block;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(106, 130, 95, 0.08);
    background-image: radial-gradient(circle at bottom right, var(--accent) 0%, transparent 40%);
}

.contact-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.contact-item a, .contact-item p {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

footer {
    background-color: var(--dark-color);
    color: var(--light-bg);
    padding: 2rem 5%;
    text-align: center;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* --- TADY ZAČÍNÁ ÚPRAVA PRO MOBIL (Vyjížděcí menu zleva) --- */
@media (max-width: 850px) {
    nav {
        flex-wrap: nowrap; 
    }
    
    .logo img {
        height: 70px; /* Menší logo na mobilu ať nezabere půl displeje */
    }
    
    .hamburger {
        display: flex;
        z-index: 1000; /* Musí být nejvýš, abys mohla menu zase zavřít */
    }
    
    .desktop-btn {
        display: none !important;
    }
    
    .mobile-btn-li {
        display: block !important;
        margin-top: 1rem;
    }

    /* Základní schované boční menu */
    nav ul {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%; /* Schované úplně vlevo ven z displeje */
        width: 280px; /* Šířka bočního panelu */
        height: 100vh; /* Přes celou výšku displeje */
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start; /* Zarovnání položek doleva */
        padding: 100px 2rem 2rem 2rem; /* Velká mezera nahoře kvůli křížku */
        box-shadow: 2px 0 15px rgba(0,0,0,0.15); /* Hezčí stín panelu */
        transition: left 0.4s ease-in-out; /* Plynulá animace vyjetí */
        z-index: 999; /* Pod hamburgerem, ale nad zbytkem webu */
        margin: 0;
    }

    /* Když se přidá třída "active" z JavaScriptu - menu vyjede */
    nav ul.active {
        left: 0; 
    }

    nav ul li {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    nav ul a {
        font-size: 1.2rem;
        display: block;
    }

    .hero {
        padding: 6rem 1rem;
    }
    
    .about-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .pricing-card, .contact-container {
        padding: 2rem;
    }
    
    .contact-items {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
}