/* RESET (doporučeno na začátek) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FONTS */
@font-face {
	font-family: Sharis;
	src: url('fonts/Sharis-448142/SharisLight.otf') format("opentype");
}
@font-face {
    font-family: NewIconScriptRegular;
    src: url('fonts/new-icon-script-regular-1775136653-0/New-Icon-Script-Exfont1157.otf') format("opentype");
}
@font-face {
    font-family: OldStandartTT;
    src: url('fonts/Old_Standard_TT/OldStandardTT-Regular.ttf') format("truetype");
}

body {
    font-family: 'OldStandartTT', OldStandartTT;
}

h1, h2 {
	font-family: 'OldStandartTT', OldStandartTT;
}
h3 {
	font-family: 'OldStandartTT', OldStandartTT;
}


/* ===================== */
/* HEADER */
/* ===================== */
#header {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* 👉 VARIANTA: sticky menu (zapni/vypni) */
#header.sticky {
    position: fixed;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
}

/* vypnuto = normální flow */
#header:not(.sticky) {
    position: absolute;
}

/* ===================== */
/* NAV */
/* ===================== */
.nav-container {
    display: flex;
    justify-content: flex-end; /* 🔥 všechno doprava */
    align-items: center;
    padding: 20px 100px;
}

/* LOGO */
.logo {
    font-family: 'Sharis', Sharis;
    font-size: 1.5rem;
}

/* MENU */
#nav-menu ul {
	font-family: 'OldStandartTT', OldStandartTT;
    display: flex;
    list-style: none;
    gap: 60px; /* 🔥 větší mezery */
    margin: 0;
    padding: 0;
}

#nav-menu a {
    text-decoration: none;
    color: #000;
    font-size: 1.2rem; /* 🔥 větší */
    font-weight: 500;
    letter-spacing: 1px;

    transition: opacity 0.3s ease;
}
#nav-menu a:hover {
    opacity: 0.6;
}

/* ===================== */
/* MOBILE */
/* ===================== */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* overlay */
#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: none;
    z-index: 900;
}


/*
PRVNÍ SEKCE
*/
/* HERO SEKCE */
#hero {
    position: relative;
    height: 100vh;
    background: url('images/hero-compress-small.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
}

/* tmavý jemný overlay pro čitelnost */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}

/* HERO CONTENT POSUN */
.hero-content {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

/* JMÉNA – HLAVNÍ ÚPRAVA */
.hero-content h1 {
    font-family: 'NewIconScriptRegular', NewIconScriptRegular;
    font-size: 10rem;
    margin-bottom: 40px;
    letter-spacing: 10px;

    /* POSUN NAHORU */
    transform: translateY(-150px);
}


/* INFO KONTEJNER */
.hero-info {
    position: absolute; /* 🔥 změna */
    bottom: 120px;
    width: 100%;

    font-size: 2rem;
    letter-spacing: 1px;
    color: #fff;
    z-index: 3;
}

/* DATUM – VLEVO */
.hero-info .date {
    position: absolute;
    left: 100px;
}

/* MÍSTO – VPRAVO */
.hero-info .place {
    position: absolute;
    right: 100px;
}

/* WRAPPER */
.hero-names {
     position: absolute;

    top: 55%; /* 🔥 KLÍČ – posun nahoru */
    transform: translateY(-50%);

    width: 100%;
    padding: 0 200px;

    font-family: 'NewIconScriptRegular', NewIconScriptRegular;
    color: #fff;
    z-index: 3;
}

/* Lorem */
.name-left {
    display: block;
    font-size: 8rem;
    margin-left: 10%;

    margin-bottom: 60px; /* 🔥 víc mezery */
}

/* & */
.amp {
    display: block;
    font-size: 4rem;

    margin-left: 35%;
    margin-bottom: 60px; /* 🔥 víc mezery */
}

/* Ipsum */
.name-right {
    display: block;
    font-size: 8rem;
    text-align: center;
}

.hero-countdown {
    position: absolute;
    top: 80px; /* 🔥 víc odshora */
    right: 100px;

    display: flex;
    gap: 30px;

    color: #fff;
    z-index: 3; /* 🔥 aby byl nad overlay */
	
	background: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 8px;
}
/* čísla */
.hero-countdown span {
    display: block;
    font-size: 3.5rem; /* 🔥 větší */
    font-weight: 600;
}

/* popisky */
.hero-countdown small {
    font-size: 1.9rem;
    opacity: 0.8;
}

.hero-countdown div {
    text-align: center;
}

.hero-countdown span {
    display: block;
    font-size: 2.5rem;
}

.hero-countdown small {
    font-size: 1.7rem;
    opacity: 0.8;
}




/*
DRUHÁ SEKCE
*/
/* SEKCE */
#schedule {
    background-color: #ffffff;
    color: #000000;

    padding: 0; /* 🔥 odstraněno – sekce se řídí obrázkem */
	position: relative; /* 🔥 nutné */
}

/* NADPIS */
.schedule-title {
    margin-top: 0;
    font-size: 4rem;
	position: static;
    margin-left: 150px;

    top: 50px;   /* 🔥 vzdálenost odshora */
    left: 150px;

    font-size: 4rem;
    color: #000;

    z-index: 3; /* 🔥 nad obrázkem */
}

/* HLAVNÍ GRID */
.schedule-container {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: stretch;
}

/* LEVÁ ČÁST */
.schedule-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
	padding-top: 50px; /* 🔥 odsazení od vrchu sekce */
}

/* KAŽDÝ ŘÁDEK */
.schedule-item {
    position: relative;
    padding: 40px 0; /* 🔥 lehce menší pro lepší proporce */

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* INNER */
.schedule-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;

    padding: 0 80px;
    align-items: center;
}

/* ANIMACE */
.schedule-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* TEXT */
.time {
    text-align: right;
    font-weight: 500;
	font-size: 1.8rem; /* 🔥 větší */
}

.event {
    text-align: left; 
	font-size: 1.8rem; /* 🔥 větší */
}

/* PRAVÁ ČÁST */
.schedule-right {
	position: relative;
    display: flex;
    justify-content: flex-end; /* 🔥 doprava */
    align-items: stretch;
}

/* OBRÁZEK – ŘÍDÍ VÝŠKU */
.schedule-right img {
    height: 85%; /* 🔥 klíč */
    width: 85%;
    object-fit: cover; /* 🔥 lepší než auto */
    //border-radius: 0px;
}

/* čára mezi položkami */
.schedule-item + .schedule-item::before {
    content: "";
    position: absolute;

    left: 80px;   /* 🔥 stejné jako padding */
    right: 80px;  /* 🔥 stejné jako padding */

    top: 0;
    height: 1px;

    background: rgba(0,0,0,0.2);
}
/* 🔥 FADE NA LEVÉ STRANĚ OBRÁZKU */
.schedule-right::before {
    content: "";
    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

	left: 15%; /* 🔥 POSUN NA ZAČÁTEK OBRÁZKU */
    width: 200px; /* 🔥 síla fade */

    background: linear-gradient(
        to right,
        rgba(255,255,255,1) 0%,
		rgba(255,255,255,0.7) 50%,           /* barva pozadí */
        rgba(255,255,255,0) 100%
    );

    z-index: 2;
    pointer-events: none;
}



/*
TŘETÍ SEKCE*/
/* DETAILS SEKCE */
#details {
    background-color: #ffffff;
}

/* NADPIS */
.details-title {
    font-size: 4rem;
	position: relative;
    z-index: 1;

    /* odsazení */
    margin-top: 150px;
    margin-left: 150px;
    margin-bottom: 30px;
}

/* GRID */
.details-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;

    /* KLÍČOVÉ */
	align-items: start; /* 🔥 KLÍČOVÉ */}

/* SLOUPCE */
.details-column {
	display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 🔥 vertikální střed */
	
    text-align: center; /* centrování textu */
	font-family: 'OldStandartTT', OldStandartTT;
	max-width: 420px; /* 🔥 zúžení textu */
    margin: 0 auto;   /* 🔥 vystředění ve sloupci */
	font-size: 1.7rem; /* 🔥 větší */
}


/* ODSTAVCE */
.details-column p {
    margin-bottom: 20px;
	font-size: 1.1rem; /* 🔥 větší */
    line-height: 1.7;
}

/* pravý sloupec */
.details-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	font-size: 1.7rem; /* 🔥 větší */
}
/* prostřední sloupec */
.details-container .details-column:nth-child(2) {
    margin-top: 120px; /* 🔥 posun dolů */
}

/* mapa wrapper */
.map-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin-top: 20px;
}

/* iframe */
.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
/* wrapper */
.gift-colors {
    display: inline-flex; /* 🔥 důležité */
    gap: 10px;

    margin-left: 10px; /* mezera od textu */
    vertical-align: middle; /* zarovnání */
}

/* kruhy */
.color {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-block;

    border: 1px solid rgba(0,0,0,0.1); /* jemný outline */
}



/*
TŘI A PŮL SEKCE
*/
/* SEKCE */
.details-column h3,
.extra-column h3 {
    font-family: 'OldStandartTT', OldStandartTT;
    font-size: 1.8rem;
    font-weight: 600;

    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
#extra-info {
    background: #ffffff;
    padding: 120px 0;
}

/* GRID */
.extra-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;

    align-items: start; /* 🔥 zarovnání nahoře */
}

/* SLOUPCE */
.extra-column {
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
}

/* TEXT */
.extra-column p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* STŘED – layout */
.extra-center {
    display: flex;
    flex-direction: column;
    align-items: center;
	//margin-top: -60px; /* 🔥 posun nahoru */
}
/* levý sloupec dolů */
.extra-container .extra-column:nth-child(1) {
    transform: translateY(160px);
}

/* pravý sloupec dolů */
.extra-container .extra-column:nth-child(3) {
    transform: translateY(160px);
}

/* FOTO DOLE */
.extra-image {
    margin-top: 40px;
}

.extra-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* PRAVÝ – MAPA */
.extra-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* mapa */
.map-container {
    width: 100%;
    max-width: 350px;
    height: 300px;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}




/*
ČTVRTÁ SEKCE
*/
/* SEKCE */
#faq {
    background-color: #ffffff; /* kbílá */
	padding: 150px 0; /* 🔥 víc prostoru nahoře i dole */
}

/* HLAVNÍ LAYOUT */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 33% / 66% */
}

/* LEVÁ STRANA */
.faq-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-left h2 {
    text-align: left;
    font-size: 4rem;
    line-height: 1.4;
}

/* PRAVÁ STRANA */
.faq-right {
    padding: 0 40px;
}

/* ITEM */
.faq-item {
    display: flex;
    align-items: flex-start;
    padding: 50px 0; /* bylo 30px → víc prostoru */
	position: relative; /* 🔥 důležité */
}
/* čára mezi položkami */
.faq-item + .faq-item::before {
    content: "";
    position: absolute;

    left: 100px;  /* 🔥 začátek u textu */
    right: 300px;  /* 🔥 konec dřív */

    top: 0;
    height: 1px;

    background: #ccc;
}


/* ČÍSLO */
.faq-number {
    font-size: 1.2rem;
    width: 50px;
}

/* OBSAH */
.faq-content {
    margin-left: 50px;
}

/* NADPIS */
.faq-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* TEXT */
.faq-content p {
    line-height: 1.6;
	font-family: 'OldStandartTT', OldStandartTT;
}


/*
PÁTÁ SEKCE
*/
/* ABOUT – 2 FOTKY */
#info-cards {
    background-color: #ffffff;
    padding: 120px 0;
}

/* NADPIS */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
}

/* WRAPPER */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

    max-width: 1200px;
    margin: 0 auto;
}

/* KARTA */
.card {
    text-align: center;
}

/* OBRÁZEK */
.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;

    border-radius: 10px;
    margin-bottom: 20px;
}

/* TEXT */
.card p {
    font-size: 1.5rem;
    line-height: 1.5;
}

/* 🔥 POSUN PROSTŘEDNÍCH */
.card-up {
    transform: translateY(-40px);
}
.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}
.card-wide {
    grid-column: 2 / 4; /* 🔥 zabere 2 prostřední sloupce */
	//font-size: 1.5rem;
    text-align: center;
    margin-top: 20px;
}

.card-wide img {
    width: 30%;
    //height: 150px;
    object-fit: cover;

    border-radius: 10px;
    margin-bottom: 20px;
}

.card-wide p {
    font-size: 1.5rem;
}

/* levý sloupec */
.cards .card:nth-child(1) {
    transform: translateY(80px);
}

/* pravý sloupec */
.cards .card:nth-child(4) {
    transform: translateY(80px);
}




/* ===================== */
/* ŠESTÁ SEKCE */
/* ===================== */
/* SEKCE */
#contact-new {
    background: #ffffff;
	//min-height: 600px; /* 🔥 základ */
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* LEVÁ ČÁST */
.contact-left {
    position: relative; /* 🔥 klíč */
    padding: 0 60px;
}

/* BLOK */
.contact-block {
    position: absolute;

    top: 60px; /* 🔥 odsazení shora */
    left: 50%;
    transform: translateX(-50%); /* 🔥 centrování */

    width: 100%;
    max-width: 900px;

    text-align: center;
}

/* NADPIS */
.contact-title {
    font-size: 3rem;
    margin-bottom: 40px;
}

/* TELEFONY */
.contact-phones {
    margin-bottom: 40px;
}

/* POLOŽKY */
.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* IKONY */
.contact-item .icon {
    font-size: 1.4rem;
}

/* MEZERA */
.contact-divider {
    height: 40px;
}

/* PRAVÁ ČÁST */
.contact-right {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* WRAPPER */
.contact-image-wrapper {
    position: relative;
    height: 100%;
}

/* obrázek */
.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🔥 FADE ZLEVA DO OBRÁZKU */
.contact-image-wrapper::before {
    content: "";
    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 200px;

    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255,255,255,0) 100%
    );

    z-index: 2;
    pointer-events: none;
}




/*
SEDMÁ SEKCE
*/
/* FOOTER */
#footer {
    background-color: #1a1a1a; /* tmavý kontrast */
    color: #ffffff;
}

/* OBSAH */
.footer-container {
	font-family: 'OldStandartTT', OldStandartTT;
    text-align: center;
    padding: 30px 20px;
}

/* TEXT */
.footer-container p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}
#footer-trigger {
    cursor: pointer;
    text-decoration: underline;
}

/* MODAL */
.modal {
    display: none;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0,0,0,0.7);

    justify-content: center;
    align-items: center;

    z-index: 2000;
}

/* OBSAH */
.modal-content {
    background: #fff;
    padding: 30px;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
}

/* OBRAZEK */
.modal-content img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* ZAVŘÍT */
.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;

    font-size: 2rem;
    cursor: pointer;
}





/* ===================== */
/* MOBILE GLOBAL */
/* ===================== */
@media (max-width: 768px) {

    #header {
    position: relative;
    z-index: 1002;
	}
	.menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    /* MENU */
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;

        background: #fff;

        display: flex;
        justify-content: center;
        align-items: center;

        transition: right 0.3s ease;
        z-index: 1001;
    }

    #nav-menu.active {
        right: 0;
    }

    #nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }

    /* OVERLAY */
    #menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);

        display: none;
        z-index: 1000;
    }

    #menu-overlay.active {
        display: block;
    }
	
	
	
	
	
	/*======================*/
    /* 1. SEKCE HERO */
	/*======================*/
    #hero {
        height: 100vh;
		//z-index: 1000;
    }

    /* JMÉNA */
    .hero-names {
        top: 50%;
        padding: 0 20px;
    }

    .name-left {
        font-size: 4rem;
        margin-left: 5%;
        margin-bottom: 30px;
    }

    .amp {
        font-size: 2rem;
        margin-left: 35%;
        margin-bottom: 30px;
    }

    .name-right {
        font-size: 4rem;
    }

    /* COUNTDOWN */
    .hero-countdown {
        top: 120px;
        left: 50%;
        right: auto; /* 🔥 zruší pravé zarovnání */
		z-index: 999;
        transform: translateX(-50%); /* 🔥 centrování */

        gap: 10px;
        padding: 8px 12px;
    }

    .hero-countdown span {
        font-size: 1.2rem;
    }

    .hero-countdown small {
        font-size: 0.7rem;
    }

    /* INFO DOLE */
    .hero-info {
        bottom: 40px;
        font-size: 1rem;
    }

    .hero-info .date {
        left: 20px;
    }

    .hero-info .place {
        right: 20px;
    }




    /*======================*/
    /* 2. SEKCE SCHEDULE */
	/*======================*/
    @media (max-width: 768px) {

    /* zrušíme grid */
    .schedule-container {
        display: block;
        position: relative;
    }

    /* obrázek jako pozadí */
    .schedule-right {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .schedule-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        opacity: 0.4;
        filter: brightness(1.3);
    }

    /* overlay */
    

    /* obsah nad tím */
    .schedule-left,
    .schedule-title {
        position: relative;
        z-index: 2;
    }

    /* nadpis */
    .schedule-title {
        position: static;
        text-align: center;
        margin: 40px 0;
		font-size: 2rem; /* 🔥 menší */
		color: #000;
    }

    /* text */
    .schedule-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }

    .time,
    .event {
        text-align: center;
    }

    /* čáry */
    .schedule-item + .schedule-item::before {
        left: 20px;
        right: 20px;
    }
	.schedule-right::before {
        display: none;
    }
	.schedule-right::after {
        content: "";
        position: absolute;
        inset: 0;

        background: rgba(255,255,255,0.6); /* 🔥 overlay jen na obrázek */
        z-index: 1;
        pointer-events: none;
    }

}
    /* EXTRA */
    .extra-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .extra-container .extra-column:nth-child(1),
    .extra-container .extra-column:nth-child(3) {
        transform: none;
    }

    /*======================*/
    /* 3. SEKCE FAQ */
	/*======================*/
	#details {
    margin-top: 100px; /* 🔥 mezera mezi sekcemi */
}
	.details-container {
        grid-template-columns: 1fr; /* 🔥 jeden sloupec */
        gap: 40px;
    }

    .details-column {
        max-width: 100%; /* 🔥 zrušení omezení šířky */
        text-align: center;
    }

    /* zrušení offsetu prostředního sloupce */
    .details-container .details-column:nth-child(2) {
        margin-top: 0;
    }
	
	
	
	/*======================*/
    /* 3.5 SEKCE EXTRA */
	/*======================*/
	.extra-container {
        grid-template-columns: 1fr; /* 🔥 jeden sloupec */
        gap: 40px;
    }

    .extra-column {
        max-width: 100%;
        text-align: center;
    }

    /* zrušení offsetů */
    .extra-container .extra-column:nth-child(1),
    .extra-container .extra-column:nth-child(3) {
        transform: none;
    }

    /* střed taky reset */
    .extra-center {
        margin-top: 0;
		max-width: 80%;
    }

    /* obrázek */
    .extra-image img {
        max-width: 100%;
    }

    /* mapa */
    .map-container {
        max-width: 100%;
        height: 250px;
    }
	.details-column h3,
    .extra-column h3 {
        font-size: 1.5rem;
    }
	
	
	
	/*======================*/
    /* 4. SEKCE FAQ */
	/*======================*/
	#faq {
        padding: 50px 0; /* 🔥 bylo 150px → zmenšeno */
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-left {
        margin-bottom: 40px;
    }

    .faq-item {
        flex-direction: column;
    }

    .faq-item + .faq-item::before {
        left: 0;
        right: 0;
    }

    .faq-content {
        margin-left: 0;
        margin-top: 10px;
    }
	#faq .faq-left h2 {
        font-size: 2rem !important; /* 🔥 přebije všechno */
        text-align: center;
        line-height: 1.3;
		max-width: 300px;
        margin: 0 auto;
    }
	#faq .faq-left h2 br {
        display: none; /* 🔥 zruší zalomení */
    }
	
	
	

    /*======================*/
    /* 5. SEKCE CARDS */
	/*======================*/
    #info-cards {
        padding-top: 60px; /* 🔥 méně než default */
    }
	#info-cards .section-title br {
        display: none;
    }

    #info-cards .section-title {
        font-size: 2rem;
        text-align: center;
        max-width: 300px;
        margin: 0 auto 40px;
        line-height: 1.2;
    }
	.cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* reset transformů */
    .card,
    .card-up {
        transform: none;
    }

    /* pořadí */
    .cards .card:nth-child(2) {
        order: 1;
    }

    .cards .card:nth-child(3) {
        order: 2;
    }

    .cards .card:nth-child(1) {
        order: 3;
    }

    .cards .card:nth-child(4) {
        order: 4;
    }

    .card-wide {
        order: 5;
        grid-column: 1 / -1; /* 🔥 přes oba sloupce */
		margin-top: 100px; /* 🔥 odsazení od horních karet */
        text-align: center;
    }
	.card img {
        height: 220px; /* 🔥 sjednocení */
    }

    .card-wide img {
        width: 50%;
        height: 220px; /* 🔥 stejná výška jako ostatní */
        object-fit: cover;

        border-radius: 10px;
        margin-bottom: 0px; /* 🔥 stejná mezera jako u .card */
    }
	.card-wide p {
        font-size: 1.5rem; /* stejné jako ostatní */
        line-height: 1.5;
		margin-top: 0; /* 🔥 odstraní extra odsazení */
    }
	
	
	
	
	

    /*======================*/
    /* 6. SEKCE CONTACT */
	/*======================*/
    #contact-new {
        position: relative;
        overflow: hidden;
    }

    /* GRID → blok */
    .contact-grid {
        display: block;
        position: relative;
    }

    /* ===================== */
    /* OBRÁZEK JAKO POZADÍ */
    /* ===================== */
    .contact-right {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .contact-image-wrapper {
        position: absolute;
        inset: 0;
    }

    .contact-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        opacity: 0.4;
        filter: brightness(1.2);
    }

    /* jemné zesvětlení */
    #contact-new::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.5);
        z-index: 1;
    }

    /* ===================== */
    /* OBSAH NAD OBRÁZKEM */
    /* ===================== */
    .contact-left {
        position: relative;
        z-index: 2;

        padding: 40px 20px;
        text-align: center;
    }

    .contact-block {
        position: static;
        transform: none;
        max-width: 100%;
    }

    /* ===================== */
    /* NADPIS */
    /* ===================== */
    .contact-title {
        font-size: 2rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    /* ===================== */
    /* TELEFONY */
    /* ===================== */
    .contact-phones {
        margin-bottom: 30px;
    }

    .contact-item {
        justify-content: center;
        font-size: 1.1rem;
    }

    /* ===================== */
    /* TEXT */
    /* ===================== */
    .contact-email {
        font-size: 0.95rem;
    }
	
	
	
	
	/*======================*/
    /* FOOTER */
	/*======================*/
	#footer {
        min-height: 60px; /* 🔥 zajistí výšku */
        display: flex;
        justify-content: center; /* 🔥 horizontálně */
        align-items: center;     /* 🔥 vertikálně */
        text-align: center;      /* 🔥 text */
    }

    .footer-container {
        padding: 20px 20px; /* 🔥 víc prostoru */
    }

    .footer-container p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}