* {
    box-sizing: border-box;
    min-width: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}


:root {
    --primary: #bfa46f;
    --secondary: #f6f1e8;
    --accent: #e6d8c3;
    --text-dark: #3a2f1f;
    --text-light: #8c7b65;
    --white: #ffffff;
}

* { box-sizing: border-box; }

body {
    font-family: 'Georgia', serif;
    margin: 0;
    background: var(--secondary);
    color: var(--text-dark);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

/* logo vlevo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo-title {
    font-size: 0.9rem;
    color: var(--primary);
    letter-spacing: 1px;
}

/* pravá část */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* menu */
nav ul {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav li {
    list-style: none;
}

/* odkazy */
nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--primary);
}

.btn {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
	flex: 0 0 auto;
}

.btn:hover {
    background: var(--accent);
    color: var(--text-dark);
}

.hero {
    background: linear-gradient(180deg, #ffffff 0%, #f6f1e8 100%);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    padding-bottom: 3rem;
}

.services {
    padding: 4rem 0;
    text-align: center;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    flex: 1 1 300px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* obrázky vedle sebe */
.service-images {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 5px 25px #dac1b144;
}

/* text přes celou šířku */
.service-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

.about {
    background: white;
    border-radius: 40px;
    margin: 4rem auto;
    padding: 3rem;
}

.about-flex {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-photo img {
    width: 280px;
    border-radius: 30px;
}

.contact {
    padding: 4rem 0;
    text-align: center;
}

nav li {
    list-style: none;
    max-width: 100%;
}

form {
    max-width: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid var(--accent);
}

.contact-info {
    margin-top: 2rem;
    color: var(--text-light);
}

footer {
    background: var(--accent);
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.modal-content {
    background: white;
    margin: 10vh auto;
    padding: 1.5rem;
    width: calc(100% - 20px);
    max-width: 500px;
    border-radius: 24px;
    position: relative;
}
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.alt-contact img {
    width: 20px;
    vertical-align: middle;
    margin-right: 6px;
}

.video-section {
    padding: 80px 0;
    text-align: center;
}

.video-container video {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
}

.more-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.more-text.open {
    max-height: 500px; /* případně víc podle textu */
}

.read-more-btn {
    margin-top: 1rem;
    background: none;
    border: none;
    color: var(--primary);
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.read-more-btn:hover {
    text-decoration: underline;
}

html {
    scroll-behavior: smooth;
}

.fascia-image {
    margin: 2rem auto;
    max-width: 250px;
}

.fascia-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-list {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px #dac1b144;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.price-item strong {
    color: var(--primary);
    font-weight: bold;
}



img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

.hero-content,
.hero-points,
.service-text,
.about-text,
.fascia-text {
    width: 100%;
    overflow-wrap: break-word;
}

/* =========================
   HERO MODERN
========================= */

.hero-content {
    text-align: center;
    margin-top: 4rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(191,164,111,0.25);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.hero-intro {
    max-width: 720px;
    margin: 0 auto 1.2rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
}

.hero-intro.second {
    margin-bottom: 3rem;
}

.hero-grid {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.hero-box {
    background: rgba(255,255,255,0.7);
    padding: 2rem;
    border-radius: 28px;
    text-align: left;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(191,164,111,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.hero-box h3 {
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.hero-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
	display: block;
}

.hero-box li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.hero-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.4rem;
    line-height: 1;
}

.hero-cta {
    margin-top: 3rem;
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero-box.full {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

/* =========================
   MOBILE ONLY
========================= */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    body {
        position: relative;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }
	
	.logo img {
		height: 75px;
	}
	
	.logo-title {
		font-size: 0.8rem;
	}
	
    .nav-right {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
    }

    nav li {
        max-width: 100%;
    }

    nav a {
        font-size: 0.9rem;
    }

    .nav-right .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
}

    .service-list {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
    }

    .service-images {
        flex-direction: column;
        align-items: center;
    }

    .service-images img {
        max-width: 100%;
    }

    .about {
        margin: 2rem 1rem;
        padding: 2rem 1.2rem;
    }

    .about-flex {
        flex-direction: column;
    }

    .about-photo img {
        width: 100%;
        max-width: 320px;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .modal-content {
        width: calc(100% - 20px);
        margin: 10vh auto;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }

    .more-text.open {
        max-height: 8000px;
    }
	
	 .hero {
        padding-bottom: 2rem;
        border-bottom-left-radius: 35px;
        border-bottom-right-radius: 35px;
    }

    .hero-content {
        margin-top: 0.5rem;
        max-width: 100%;
		padding-left: 4px;
    padding-right: 4px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.55rem 1rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 1.2rem;
    }

    .hero-intro {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 1rem;
        padding: 0 0.2rem;
    }

    .hero-intro.second {
        margin-bottom: 2rem;
    }

    .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
	display: grid;
}

    .hero-box {
		background: rgba(255, 255, 255, 0.92);
		box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        padding: 1.3rem;
        border-radius: 20px;
		width: 100%;
		min-width: 0;
    }

    .hero-box h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-box li {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 0.8rem;
        padding-left: 1.5rem;
    }

    .hero-box li::before {
        font-size: 1.1rem;
        top: 1px;
    }

    .hero-cta {
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
        padding: 1rem;
        font-size: 1rem;
    }
}

