@font-face {
    font-family: Inter;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/Inter_18pt-Regular.ttf") format("truetype");
}

@font-face {
    font-family: Inter;
    font-weight: 700;
    font-display: swap;
    src: url("fonts/Inter_18pt-Bold.ttf") format("truetype");
}

* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1f1f1f;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(40, 40, 40);
    padding: 0.8rem 4rem;
    position: relative;
}

#header-logo a {
    font-size: 2rem;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.header-links {
    display: flex;
    gap: 0.5rem;
}

.header-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 700;
    padding: 0.85rem 0.88rem;
    position: relative;
}

.header-links a::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 0.6rem;
    width: 80%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.header-links a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.hero {
    height: 65vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
    background-color: rgb(40, 40, 40);
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.hero-content {
    position: relative;
    color: white;
    max-width: 900px;
}

.hero-content h1 {
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgb(240, 240, 240);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    font-size: 1.25rem;
}

.intro {
    padding: 4rem 3rem;
    margin: 0 auto;
}

.intro h2 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.intro p {
    color: rgb(80, 80, 80);
    max-width: 750px;
}

.stats {
    background-color: rgb(40, 40, 40);
    color: white;
    padding: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 1.1;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: rgb(200, 200, 200);
    margin-top: 0.25rem;
    display: block;
}

.services {
    padding: 4rem 0;
}

.into-middle-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 3rem;
}

.services h2 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: block;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(225, 220, 215);
    border-radius: 10px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    border-color: rgb(195, 180, 170);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: rgb(30, 30, 30);
}

.service-card p {
    color: rgb(90, 90, 90);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.extras {
    padding: 0rem 0 3rem 0;
}

.extras h2 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.extras-intro {
    color: rgb(80, 80, 80);
    margin-top: 0;
    margin-bottom: 2rem;
    max-width: 650px;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.reviews {
    padding: 4rem 3rem;
}

.reviews h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: #fff;
    border: 1px solid rgb(225, 220, 215);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-author {
    margin-bottom: 1rem;
}

.review-author strong {
    display: block;
    font-size: 1rem;
    color: rgb(30, 30, 30);
}

.review-author span {
    font-size: 0.9rem;
    color: rgb(120, 120, 120);
}

.review-stars {
    color: rgb(255, 153, 0);
}

.review-card p {
    margin: 0;
    color: rgb(60, 60, 60);
    line-height: 1.7;
}

.cta {
    background-color: rgb(40, 40, 40);
    color: white;
    padding: 4rem 3rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta p {
    color: rgb(200, 200, 200);
    margin-bottom: 1.5rem;
}

.cta a {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.95rem 2.2rem;
    background-color: rgb(175, 87, 45);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid rgb(175, 87, 45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cta a:hover {
    transform: translateY(-2px);
    background-color: rgb(195, 100, 52);
    border-color: rgb(195, 100, 52);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.section-to-middle {
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-to-middle h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-to-middle p {
    margin: 0;
    color: rgb(109, 109, 109);
    padding-bottom: 1.7rem;
}

.section-to-middle .bold-text{
    color: rgb(29, 29, 29);
    font-size: 1.5rem;
    padding-bottom: 0;
}

.section-to-middle .bold-text + p{
    padding-top: 0.6rem;
}

#small-bottom-padding {
    padding-bottom: 1rem;
}

#small-top-padding {
    padding-top: 1rem;
}

.gallery-section {
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
    color: black;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

#text-bold {
    font-weight: 700;
}

.card img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    display: block;
}

.contacts-container {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.contacts-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacts-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contacts-item a {
    font-size: 1.1rem;
    color: rgb(37, 37, 37);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contacts-item a:hover {
    color: rgb(175, 87, 45);
}

.contacts-item strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgb(124, 124, 124);
}

.contacts-item span {
    font-size: 1.1rem;
    color: rgb(37, 37, 37);
}

.contacts-map {
    flex: 2;
}

.contacts-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
}

.footer {
    background-color: rgb(25, 25, 25);
    color: rgb(230, 230, 230);
    padding: 3rem 4rem 1.5rem 4rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-brand p {
    max-width: 400px;
    color: rgb(180, 180, 180);
}

.footer-contact p {
    margin: 0.3rem 0;
    color: rgb(200, 200, 200);
}

.footer-contact strong {
    color: white;
}

.renovace-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
}

.renovace-polozka {
    display: flex;
    flex-direction: column;
}

.renovace-obrazky {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.renovace-foto {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.renovace-foto img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    display: block;
}

.renovace-stitek {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    z-index: 1;
    background-color: rgba(40, 40, 40, 0.75);
    color: rgb(230, 230, 230);
}

.renovace-sipka {
    font-size: 1.4rem;
    color: rgb(175, 87, 45);
    flex-shrink: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
        flex-direction: row;
    }

    #header-logo {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .header-links {
        display: none;
        position: absolute;
        z-index: 1;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgb(40, 40, 40);
        padding: 1rem 0;
    }

    .header-links.active {
        display: flex;
    }

    .header-links a {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .header-links a::after {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        padding: 4rem 1.5rem;
    }

    .hero-img {
        object-position: center 23%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .intro {
        padding: 2.5rem 1.5rem;
    }

    .stats {
        padding: 2.5rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services {
        padding: 2.5rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        width: 100%;
        padding: 1.5rem;
    }

    .extras {
        padding: 2.5rem 1.5rem;
    }

    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews {
        padding: 2.5rem 1.5rem;
    }

    .cta {
        padding: 2.5rem 1.5rem;
    }

    .contacts-container {
        flex-direction: column;
    }

    .contacts-map iframe {
        min-height: 300px;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .section-to-middle {
        padding: 3rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .card img {
        height: 180px;
    }

    .renovace-foto img {
        height: 22rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer {
        padding: 2.5rem 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .card img {
        height: 150px;
    }

    .renovace-obrazky {
        gap: 0.4rem;
    }

    .renovace-foto img {
        height: 20rem;
    }

    .renovace-sipka {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.8rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .contacts h1 {
        font-size: 1.3rem;
    }

    .intro h2,
    .reviews h2,
    .cta h2,
    .services h2,
    .extras h2 {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .extras-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .section-to-middle {
        padding: 2rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card img {
        height: 350px;
    }

    .renovace-foto img {
        height: 18rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 1rem 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.15rem;
    }

    .contacts-container {
        gap: 2rem;
    }

    .contacts-map iframe {
        min-height: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-to-middle {
        padding: 4rem 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .card img {
        height: 270px;
    }

    .renovace-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .renovace-foto img {
        height: 22rem;
    }
}

@media (min-width: 1440px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .footer-container {
        max-width: 1400px;
    }
}