*, html {
    scroll-behavior: smooth !important;
    scroll-margin-top: 100px;
}

html, body {
    overflow-x: clip;
}

:root {
    --mint: #F1FDD8;
    --sky: #BFDEF5;
    --lavender: #E1D4FF;
    --green-color: #A095C8;
    --light-green-color: #BFDEF5;
    --yellow: #DBAD6A;
    --yellow2: #EDCB96;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    color: black;
    font-family: 'Josefin Sans', sans-serif;
}

body {
    background-image: url(images/noise4.png);
}

h1 {
    font-family: 'Parisienne', cursive;
}

.wrapper {
    width: 100%;
    height: auto;
    position: relative;
}

.wrapper-image {
    position: absolute;
    z-index: 1;
}

body .wrapper:first-of-type {
    position: relative;
}

body .wrapper:first-of-type .wrapper-image {
    height: auto;
    width: 50%;
    top: 0%;
    right: 0;
    transform: rotate(270deg) scaleX(-1) translate(-50%,0%);
    position: absolute;
    opacity: 0;
}

body .wrapper:nth-of-type(2) .wrapper-image {
    height: 60%;
    width: auto;
    bottom: 10%;
    transform: scaleX(1);
    opacity: .6;
    rotate: 50deg;
    left: -50px;
}

body .wrapper:nth-of-type(3) .wrapper-image {
    height: auto;
    width: 20%;
    top: 100px;
    left: -10px;
    transform: rotate(70deg);
    opacity: .6;
}

.container h2 {
    font-size: 50px;
    z-index: 2;
}

p {
    line-height: 30px;
    margin: 20px 0px;
}

li, input, label, textarea {
    line-height: 30px;
}

.button {
    display: inline-block;
    text-align: center;
    color: #3d3d3d;
    box-sizing: border-box;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: var(--sky);
    background: linear-gradient(100deg, var(--sky) 0%, var(--lavender) 100%);
    box-shadow: 0px 2px 8px rgba(0,0,0,0.12);
    transition: filter .3s, box-shadow .3s;
    border: none;
    cursor: pointer;
}

.button i {
    color: #3d3d3d;
    margin-right: 8px;
}

.button:hover {
    filter: brightness(0.93);
    box-shadow: 0px 4px 14px rgba(0,0,0,0.18);
}

.container {
    width: 1140px;
    height: auto;
    padding: 100px 20px;
    box-sizing: border-box;
    margin: 0px auto;
}

.container .container-text {
    width: 30%;
    box-sizing: border-box;
    z-index: 3;
}

header {
	width: 100%;
	height: auto;
	overflow: hidden;
    background-color: white;
	z-index: 100;
	box-shadow: 0px 5px 30px 0px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
}

header .container {
    height: 100px;
    margin: 0 auto;
    padding: 0;
}

header .container img {
    float: left;
    height: 80px;
    width: auto;
    margin-top: 10px;
    margin-left: 20px;
}

header .container ul {
    float: right;
    line-height: 100px;
    margin-right: 20px;
}

header .container .menu-icon {
    display: none;
}

header .container ul a {
	display: inline-block;
	margin: 0 5px;
}

header .container ul a.menu-logo {
    display: none;
}

header .container ul .button li {
    color: #3d3d3d;
}

header .container ul .button li i {
    margin: 0 0 0 10px;
}

header .container ul .button:hover {
    text-decoration: none;
}

header .container ul a:last-of-type {
    margin-right: 0px;
}

header .container ul a:hover {
	text-decoration: underline;
}

header .container ul a li {
    font-weight: bold;
}

.hero {
    width: 1140px;
    margin: auto 0;
    padding: 60px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text h1 {
    font-family: "Great Vibes", cursive;
    font-size: clamp(60px, 5.5vw, 88px);
    font-weight: 400;
    margin: 0 0 12px 0;
    line-height: 1.1;
}

.hero-text h1 span {
    font-size: 0.45em;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    color: #999;
}

.hero-date {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 32px 0;
}

.hero-image {
    flex: 1.2;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-photo img {
    display: block;
    height: 65%;
    width: auto;
    transition: .5s;
}

.details {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Zmenené z align-items: flex-start */
}

.detail-item {
    display: flex;
    flex-direction: column;
    height: auto; /* Môžete nastaviť konkrétnu výšku, ak chcete */
    box-sizing: border-box;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    background-size: cover;
    background-position: center;
    width: 48%;
    background-color: white;
    z-index: 2;
}

.detail-icon {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon i {
    font-size: 30px;
    color: #3d3d3d;
}

.detail-item .detail-icon {
    background-color: var(--lavender);
}

.detail-item h2 {
    font-size: 30px;
}

.detail-item ul {
    margin-bottom: 20px;
}

.detail-item ul li i {
    width: 30px;
}

.detail-item .button {
    margin-top: auto;
    align-self: flex-start;
}

.accordions {
    width: 70%;
    z-index: 9;
}

.accordion {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.accordion:last-of-type {
    margin-bottom: 0px;
}

.accordion-header {
    z-index: 9;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.2);
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 20px;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.accordion-header h3 span {
    color: gray;
    margin-right: 5px;
    font-size: 70%;
}

.accordion-header i {
    font-size: 25px;
}

.accordion-header:hover {
    cursor: pointer;
}

.accordion-content {
    box-sizing: border-box;
    padding: 10px 20px;
}

.accordion-content p {
    margin: 0;
    z-index: 10;
}

.accordion-content p img {
    width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.2);
}

.accordion-content ul li i {
    width: 40px;
    text-align: left;
}

.slider {
    padding: 60px 0;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-image: url(images/hero_back.png);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
}

.slider-flower {
    position: absolute;
    width: 30%;
    max-width: 400px;
    top: -40px;
    right: -80px;
    rotate: -40deg;
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.acceptation {
    position: relative;
}

.acceptation-flower {
    position: absolute;
    width: 30%;
    max-width: 400px;
    top: 60px;
    right: -70px;
    rotate: -40deg;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

@media screen and (max-width: 750px) {
    .slider-flower {
        width: 30%;
        top: -20px;
        right: -30px;
    }
    .acceptation-flower {
        width: 28%;
        top: 30px;
        right: -30px;
    }
}

.slider-layout {
    display: flex;
    align-items: center;
    width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.slider-info {
    width: 30%;
    padding-right: 20px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.slider-info h2 {
    font-size: 50px;
    z-index: 2;
}

.slider-info p {
    line-height: 30px;
    margin: 20px 0;
}

.slider-cards-outer {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.slider-cards {
    display: flex;
    gap: 12px;
    transition: transform .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slider-card {
    width: calc((100% - 24px) / 3);
    flex-shrink: 0;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.slider-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(50deg, var(--sky) 0%, var(--lavender) 100%);
    opacity: 0;
    transition: opacity .3s;
}

.slider-cards:has(.slider-card:hover) .slider-card::after {
    opacity: 0.8;
}

.slider-cards:has(.slider-card:hover) .slider-card:hover::after {
    opacity: 0;
}

.slider-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.slider-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-pos-counter {
    font-size: 13px;
    letter-spacing: 2px;
    color: #666;
    min-width: 50px;
    text-align: center;
}

.slider-move-left,
.slider-move-right {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--sky);
    background: linear-gradient(100deg, var(--sky) 0%, var(--lavender) 100%);
    box-shadow: 0px 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #3d3d3d;
    transition: opacity .3s, transform .2s, filter .2s;
}

.slider-move-left:hover,
.slider-move-right:hover {
    transform: scale(1.08);
    filter: brightness(0.93);
}

.slider-move-left.faded,
.slider-move-right.faded {
    opacity: 0.3;
}

#fullscreen-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fullscreen-gallery img {
    max-height: 85vh;
    max-width: 85vw;
    object-fit: contain;
    border-radius: 5px;
    transition: opacity .25s;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sky);
    background: linear-gradient(100deg, var(--sky) 0%, var(--lavender) 100%);
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #3d3d3d;
    cursor: pointer;
    transition: filter .2s, transform .2s;
    z-index: 10;
}

.close:hover {
    filter: brightness(0.93);
    transform: scale(1.08);
}

.gallery-controls {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gallery-image {
    border-radius: 5px;
}

.prev, .next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--sky);
    background: linear-gradient(100deg, var(--sky) 0%, var(--lavender) 100%);
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #3d3d3d;
    transition: filter .2s, transform .2s;
}

.prev:hover, .next:hover {
    filter: brightness(0.93);
    transform: scale(1.08);
}

.prev i, .next i {
    color: #3d3d3d;
}

.gallery-counter {
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
    min-width: 50px;
    text-align: center;
}

.faq {
    z-index: 3;
    display: flex;
    padding-bottom: 0;
}

.faq .container-text h2 {
    position: sticky;
    top: 120px;
}

.counter-container {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
}

.counter-container .counter-text {
    width: 30%;
    padding-right: 50px;
    box-sizing: border-box;
}

.counter-container .counter-text p {
    margin-bottom: 0;
}

.counters {
    width: 70%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.counter {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: white;
    background-position: center;
    background-size: cover;
    z-index: 2;
    box-sizing: border-box;
    box-shadow: 10px 10px 0px 0px var(--light-green-color);
    box-sizing: border-box;
}

.counter h3:first-of-type {
    font-size: 50px;
}

.counter h3:nth-of-type(2) {
    font-size: 100%;
}

.acceptation {
    display: flex;
    height: auto;
}

.acceptation-text-container {
    width: 100%;
    height: auto;
    position: sticky;
    top: 120px;
}

.acceptation-text-container p {
    margin-bottom: 0;
}

.acceptation-text p {
    text-align: justify;
}

.acceptation form {
    width: 70%;
    height: auto;
}

.form-item {
    width: 100%;
    height: auto;
    background-color: white;
    box-sizing: border-box;
    padding: 20px;
	box-shadow: 0px 5px 30px 0px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 3;
    margin-bottom: 50px;
}

.acceptation .form-item input, 
.acceptation .form-item textarea {
    font-size: 16px;
}

.acceptation .form-item:last-of-type {
    margin-bottom: 0px;
}

.form-item input {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    border: 3px solid #f2f2f2;
    background-color: #f2f2f2;
    border-radius: 5px;
    outline: none;
    resize: none;
    display: block;
}

.form-item input:focus {
    border-color: var(--light-green-color);
}

.form-item input:last-of-type {
    margin-bottom: 0;
}

.form-item-header {
    box-sizing: border-box;
    padding: 15px;
    background: var(--sky);
    background: linear-gradient(53deg, var(--sky) 50%, var(--lavender) 100%);
    border-radius: 5px;
}

.form-item-header h3 {
    color: #3d3d3d;
}

.form-item-header h3 i {
    width: 30px;
    color: #3d3d3d;
}

.label-container {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 20px;
    margin-bottom: 10px;
}

.acceptation .label-container:last-of-type {
    margin-bottom: 0;
}
  
.label-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
  
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}
  
.label-container:hover input ~ .checkmark {
    background-color: #ccc;
}
  
.label-container input:checked ~ .checkmark {
    background-color: var(--light-green-color);
}
  
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.label-container input:checked ~ .checkmark:after {
    display: block;
}

.label-container .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.form-item textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    border: 3px solid #f2f2f2;
    background-color: #f2f2f2;
    border-radius: 5px;
    outline: none;
    resize: none;
}

.form-item textarea:focus {
    border-color: var(--light-green-color);
}

.form-item textarea:last-of-type {
    margin-bottom: 0;
}

.check-container {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 20px;
    margin-bottom: 10px;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark-check {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 5px;
}

.check-container:hover input ~ .checkmark-check {
    background-color: #ccc;
}

.check-container input:checked ~ .checkmark-check {
    background-color: var(--light-green-color);
}

.checkmark-check:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked ~ .checkmark-check:after {
    display: block;
}

.check-container .checkmark-check:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.acceptation .form-item:last-of-type input {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #3d3d3d;
    background: var(--sky);
    background: linear-gradient(100deg, var(--sky) 0%, var(--lavender) 100%);
    box-shadow: 0px 2px 8px rgba(0,0,0,0.12);
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    transition: filter .3s, box-shadow .3s;
    cursor: pointer;
}

.acceptation .form-item:last-of-type input:hover {
    filter: brightness(0.93);
    box-shadow: 0px 4px 14px rgba(0,0,0,0.18);
}

.zahrada {
    width: 100%;
    height: auto;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    background-image: url(images/grass.png);
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: auto 50px;
    padding-top: 60px;
    padding-bottom: 10px;
}

.zahrada img {
    height: 150px;
    width: auto;
    position: relative;
    z-index: 1;
}

.zahrada img.zahrada-cat {
    position: absolute;
    bottom: 0;
    left: 4%;
    height: 200px;
    width: auto;
    z-index: 2;
    pointer-events: none;
}

@media screen and (max-width: 1000px) {
    .zahrada {
        padding-top: 40px;
    }
    .zahrada img {
        height: 110px;
    }
    .zahrada img.zahrada-cat {
        height: 130px;
        left: -10px;
    }
}

@media screen and (max-width: 750px) {
    .zahrada {
        padding-top: 60px;
    }
    .zahrada img {
        height: 80px;
    }
    .zahrada img.zahrada-cat {
        height: 120px;
        left: -10px;
    }
}

@media screen and (max-width: 500px) {
    .zahrada {
        padding-top: 50px;
        background-size: auto 35px;
    }
    .zahrada img {
        height: 60px;
    }
    .zahrada img.zahrada-cat {
        height: 90px;
        left: -8px;
    }
}

.footer-image {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    background: linear-gradient(0deg, var(--sky) 0%, var(--lavender) 100%);
    width: 100%;
    box-sizing: border-box;
    padding: 50px 0 50px 0;
}

footer .container:first-of-type h2,
footer .container:first-of-type p {
    color: #3d3d3d;
}

footer .container {
    margin: 0 auto;
    padding: 0 20px;
}

footer .container:nth-of-type(2) {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.footer-item {
    background-color: rgba(255, 255, 255, 0.55);
    width: 45%;
    height: auto;
    box-sizing: border-box;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-item-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(100deg, var(--sky) 0%, var(--lavender) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.footer-item-avatar i {
    font-size: 22px;
    color: #3d3d3d;
}

.footer-item h3 {
    color: #3d3d3d;
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-item li {
    color: #555;
    margin-bottom: 8px;
}

.footer-item li:last-child {
    margin-bottom: 0;
}

.footer-item li i {
    width: 30px;
    color: #555;
}

.footer-item li a {
    color: #555;
    transition: color .2s;
}

.footer-item li a:hover {
    color: #3d3d3d;
    text-decoration: underline;
}

.footer-copyright {
    width: 100%;
    height: auto;
    text-align: center;
    color: #555;
    font-weight: bold;
    margin-top: 20px;
}

/* HONEYPOT — skryté pole proti spam-botom (nesmie sa zobraziť) */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* STAVOVÉ STRÁNKY — dakujeme.php / chyba.php */
.status-page {
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 60px 20px;
    overflow: hidden;
}

.status-flower {
    position: absolute;
    z-index: 1;
    opacity: .55;
    pointer-events: none;
}

.status-flower-1 {
    width: 28%;
    max-width: 360px;
    top: -40px;
    right: -40px;
    transform: rotate(25deg);
}

.status-flower-2 {
    width: 22%;
    max-width: 300px;
    bottom: -40px;
    left: -40px;
    transform: rotate(-15deg);
}

.status-card {
    position: relative;
    z-index: 3;
    background-color: white;
    box-sizing: border-box;
    width: 100%;
    max-width: 560px;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0px 5px 30px 0px rgba(0,0,0,0.2);
    text-align: center;
}

.status-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.12);
}

.status-icon i {
    font-size: 42px;
    color: #3d3d3d;
}

.status-icon-success {
    background: linear-gradient(100deg, var(--sky) 0%, var(--lavender) 100%);
}

.status-icon-error {
    background: linear-gradient(100deg, var(--yellow2) 0%, var(--yellow) 100%);
}

.status-card h1 {
    font-family: "Great Vibes", cursive;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #3d3d3d;
}

.status-card h2 {
    font-size: 24px;
    color: #3d3d3d;
    margin-bottom: 5px;
}

.status-card p {
    text-align: center;
    color: #555;
}

.status-card .status-sign {
    font-style: italic;
    color: #777;
}

.status-card .button {
    margin-top: 20px;
}













@media screen and (max-width: 1350px) {
    .header-photo img {
        height: 50%;
    }
}








@media screen and (max-width: 1140px) {
	.container {
		width: 100%;
        padding: 50px 20px;
	}

    .wrapper-image {
        display: none;
    }

    .slider {
        padding: 50px 0;
        gap: 20px;
    }

    .slider-layout {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 20px;
    }

    .slider-info {
        width: 100%;
        padding-right: 0;
        position: static;
    }

    .slider-bottom {
        width: 100%;
        padding: 0 20px;
    }

    .slider-card {
        width: calc((100% - 24px) / 3);
        height: 260px;
    }
}




@media screen and (max-width: 1000px) {
    .container .container-text {
        width: 100%;
        margin-bottom: 20px;
    }

    .container {
        display: block;
    }

    .details {
        padding-top: 50px;
    }

    .detail-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .counters {
        width: 100%;
    }

    .accordions {
        width: 100%;
    }

    .acceptation form {
        width: 100%;
    }

    .acceptation form .form-item {
        margin-bottom: 20px;
    }

    .accordion-header h3 span {
        display: none;
    }

    .counter-container {
        padding-bottom: 0;
    }

    .counter-container .container-text {
        text-align: center;
    }
}




@media screen and (max-width: 750px) {
    footer .container:nth-of-type(2) {
        display: block;
    }

    .footer-item {
        width: 100%;
        margin-bottom: 20px;
    }


    .hero {
        width: auto;
        margin: 0;
        padding: 30px 20px;
        flex-direction: column;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: clamp(50px, 13vw, 80px);
    }

    .hero-image {
        width: 100%;
        height: 280px;
        border-radius: 16px;
    }
}




@media screen and (max-width: 650px) {
    *, html {
        scroll-behavior: smooth !important;
        scroll-margin-top: 100px;
    }

    header .container ul a:last-of-type {
        margin: 0 15%;
        width: 70%;
    }

    header .container {
        width: 100%;
        position: relative;
    }

    header .container .menu-icon {
        float: right;
        margin-right: 20px;
        font-size: 25px;
        line-height: 100px;
        display: block;
        z-index: 1001;
        position: relative;
    }

    header .container ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        z-index: 1000;
        line-height: normal;
    }

    header .container ul.open {
        display: flex;
    }

    header .container ul a {
        display: block;
        width: auto;
        text-align: center;
        margin: 0;
        font-size: 20px;
    }

    header .container ul a.menu-logo {
        display: block;
        margin-bottom: 20px;
    }

    header .container ul a.menu-logo img {
        height: 100px;
        width: auto;
        float: none;
        margin: 0;
    }

    header .container ul a li {
        padding: 10px 20px;
    }

    header .container ul a:last-of-type {
        margin: 20px 0 0 0;
        width: auto;
    }

    .header-photo img {
        height: 35%;
    }
}




@media screen and (max-width: 500px) {
    .counters {
        gap: 10px;
    }

    .counter {
        flex: 1;
        width: auto;
        height: auto;
        padding: 15px 5px;
        border-radius: 5px;
        box-shadow: 5px 5px 0px 0px var(--light-green-color);
    }

    .counter h3:first-of-type {
        font-size: 32px;
    }

    .counter h3:nth-of-type(2) {
        font-size: 11px;
    }

    .slider-card {
        width: calc((100% - 12px) / 2);
    }

    .status-card {
        padding: 40px 25px;
    }

    .status-card h1 {
        font-size: 52px;
    }

    .status-card h2 {
        font-size: 20px;
    }
}

/* HERO */
.hero {
    width: 100%;
    min-height: 80vh;
    background-image: url(images/hero_back.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 10;
}

.hero-names {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(80px, 11vw, 190px);
    color: #222;
    text-align: center;
    line-height: 0.6;
}

.hero-names h1 {
    z-index: 10;
}

.hero-date {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(48px, 6vw, 110px);
    font-weight: 400;
    color: var(--lavender);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: inline-block;
    line-height: 1;
    margin: 0.1em 0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}

.hero-image img {
    max-height: 85vh;
    max-width: 100%;
    object-fit: contain;
}

/* Dekoratívne kvety — "vyrastajú" z bočných okrajov hero sekcie.
   Stonka je ukotvená o okraj (left/right), hlava trčí dovnútra.
   Veľkosť cez clamp() => plynulé škálovanie bez tvrdých skokov,
   takže to drží na desktope, tablete aj mobile. */
.hero-image-1,
.hero-image-2,
.hero-image-3 {
    position: absolute;
    width: auto;
    opacity: .6;
    z-index: 0;
    pointer-events: none;
}

/* Presah za bok je fixný v px (translateX), nezávislý od veľkosti obrázka,
   takže kvet vždy "vyrastá" z boku rovnako a nikdy neutečie celý von.
   Vertikálne kotvíme stred kvetu na dané % cez translateY(-50%),
   aby ani po rotácii nevyliezol nad/pod hero sekciu. */

/* ľavý okraj, stred výšky */
.hero-image-1 {
    position: absolute;
    height: 300px;
    width: auto;
    left: 0;
    bottom: 0;
    rotate: 100deg;
}

/* pravý okraj, horná tretina */
.hero-image-2 {
    position: absolute;
    height: 300px;
    width: auto;
    right: 0;
    top: 0;
    rotate: -180deg;
}

/* pravý okraj, dolná tretina */
.hero-image-3 {
    position: absolute;
    height: 300px;
    width: auto;
    right: 0;
    bottom: -30px;
    rotate: 9;
    rotate: -30deg;
}

@media screen and (max-width: 750px) {
    .hero .container {
        flex-direction: column;
        gap: 8px;
    }

    /* na mobile menší presah (úzka plocha), hlavy kvetov ostanú viditeľné */
    .hero-image-1 {
        height: 200px;
    }

    .hero-image-2 {
        
        height: 150px;
    }

    .hero-image-3 {

        height: 200px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-names {
        font-size: clamp(72px, 18vw, 130px);
    }

    .hero-date {
        font-size: clamp(44px, 10vw, 80px);
    }

    .hero-image img {
        max-height: 45vh;
    }
}

