* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}
body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    /*overflow: hidden;*/
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(3px);      /* sila rozmazania */
    transform: scale(1.05);
    z-index: -1;
}
.hero {
    display: flex;
    height: 90vh;
}
.section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
    transition: 0.4s;
}
.section h2 {
    font-size: 52px;
    margin-bottom: 20px;
    letter-spacing: 0px;
    font-weight: 900;
    background: linear-gradient(
        to bottom,
        #8a6b54 0%,
        #886951 50%,
        #6b4f3a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Lora', serif;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 250, 240, 0.2);
}
.section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    font-weight: 900;
    background: linear-gradient(
        to bottom,
        #8a6b54 0%,
        #886951 50%,
        #6b4f3a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 250, 240, 0.2);
}
.h2-div {
    position: relative;
    display: inline-block;
    font-family: 'Lora', serif;
    font-size: 52px;
    margin: 0 0 35px 0;
    text-align: center;
}
.h2-div::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(107,79,58,0) 0%,
        #e6d5c8 15%,
        #8a6a54 45%,
        #6b4f3a 50%,
        #8a6a54 55%,
        #e6d5c8 85%,
        rgba(107,79,58,0) 100%
    );
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-radius: 2px;
}
.divider {
    width: 2px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(240,100,122,0.4),
        transparent
    );
    background-size: 100% 200%;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
    }
    .divider {
        width: 100%;
        height: 2px;
    }
    .section h2 {
        font-size: 36px;
    }
}












/* FOOTER */
.footer-wrapper{
    margin-top: 40vh;
    text-align: center;
    font-family: 'Lora', serif;
}
.footer-wrapper::before{
    content:"";
    display:block;
    height:120px;
    backdrop-filter: blur(6px);
    mask-image: linear-gradient(to bottom, transparent, black);
}
.footer-logo{
    padding:60px 20px 40px;
    background:white;
}
.footer-logo img{
    width:320px;
    max-width:80%;
    opacity:0.95;
}
.footer-content{
    background:white;
    width:100%;
}
.footer-inner{
    max-width:900px;
    margin:auto;
    padding:50px 20px;
    background:white;
}
.footer-top{
    display:flex;
    justify-content:center;
    gap:80px;
    flex-wrap:wrap;

    font-family: 'Lora', serif;
    font-weight: 400;
}
.footer-left{
    text-align:left;
    font-size:15px;
    color:#444;
    line-height:1.8;
}
.footer-left a{
    color: inherit;
    text-decoration: none;
}
.footer-left a:hover{
    text-decoration: underline;
}

.footer-right{
    min-width:200px;
}
.footer-right h3{
    font-family:'Playfair Display', serif;
    margin-bottom:15px;
}
.hours-row{
    display:flex;
    justify-content:space-between;
    padding:5px 0;
    border-bottom:1px solid #eee;
    font-size:14px;
}
.map{
    margin: 40px auto 0;
    width:90%;

    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}
.copyright{
    text-align:center;
    margin-top:30px;
    font-size:14px;
    color:#777;

    font-family: 'Lora', serif;
    font-weight: 600;
}
@media (max-width:900px){
    .footer-top{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:30px;
    }
    .footer-left{
        text-align:center;
    }
}
































.welcome-section {
    padding: 100px 20px;
    text-align: center;
    background: rgba(255, 250, 240, 0.85);
    border-radius: 12px;
    margin: 60px auto;
    max-width: 1000px;
    backdrop-filter: blur(5px);
}
.welcome-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
    background: linear-gradient(to bottom, #8a6b54 0%, #886951 50%, #6b4f3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 6px rgba(255, 250, 240, 0.2);
}
.welcome-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #555;
}
.gallery-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #6b4f3a;
}





.gallery-section {
    margin-top: 60px;
}

.gallery-previews {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery-previews img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-previews img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}








.btn-gallery {
    display: inline-block;
    font-size: 1.1rem;
    padding: 14px 28px;
    background: linear-gradient(135deg, #8a6b54, #6b4f3a);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.btn-gallery i {
    margin-right: 10px;
}
.btn-gallery:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #6b4f3a, #8a6b54);
}
@media (max-width: 900px) {
    .welcome-section h2 {
        font-size: 2.2rem;
    }
    .gallery-section h3 {
        font-size: 1.6rem;
    }
    .welcome-section p {
        font-size: 1rem;
    }
    .btn-gallery {
        padding: 12px 24px;
        font-size: 1rem;
    }
}



/* VER 3 GALLERY */
/* Carousel container */
.carousel {
    position: relative;
    overflow: hidden;
    max-width: 800px;  /* maximálna šírka slidera */
    width: 90%;        /* flexibilná šírka podľa obrazovky */
    margin: 0 auto 30px auto;
    border-radius: 12px;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel-item img {
    width: 80%; /* obrázok zaplní šírku kontajnera */
    height: auto; /* zachová pomer strán */
    max-height: 400px; /* maximálna výška */
    object-fit: cover; /* obrázok sa vyplní a orezáva, aby vyzeral dobre */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(107,79,58,0.7);
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: 0.3s;
}
.carousel-btn:hover {
    background: rgba(107,79,58,0.9);
}
.carousel-btn.prev {
    left: 10px;
}
.carousel-btn.next {
    right: 10px;
}
@media(max-width: 900px){
    .carousel-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }
    .carousel-item img {
        max-height: 250px;
    }
}