*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}

body{
    background:#faf7f2;
    color:#2d2d2d;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

header{
    background:#1f2933;
    position:sticky;
    top:0;
    z-index:1000;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}


    .logo {
        height: 85px;
        margin-left: -50px; /* posunie logo viac doľava */
    }



.logo .left,
.logo .right{
    font-size:28px;
    letter-spacing:2px;
}

.logo .center{
    font-size:12px;
    line-height:1.1;
    color:#c49a6c;
    text-align:center;
}


    nav a {
        color: white;
        text-decoration: none;
        margin-left: 25px;
        font-size: 18px; /* pôvodne bolo implicitne menšie, napr. 16px */
        font-weight: 500; /* mierne tučnejšie */

    }


nav a:hover{
    color:#c49a6c;
}

.menu-toggle{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}

.hero{
    background:url('img.png') center/cover;
    height:80vh;
    position: relative;
}

.hero-overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
            rgba(31,41,51,0.35),
            rgba(31,41,51,0.45)
    );
}

.hero h1{

    margin-top: 250px;
    font-size:48px;
    color:white;
}

.hero p{
    color:#ddd;
    font-size:22px;
    margin:40px 0 20px 0;
    font-weight: bold;
}

.btn{
    background:#8b5e3c;
    color:white;
    padding:12px 25px;
    border-radius:6px;
    text-decoration:none;
}

.btn:hover{
    background:#5a3d2b;
}

section{
    padding:70px 0;
}

h2{
    text-align:center;
    margin-bottom:40px;
}

h2:after{
    content:"";
    width:60px;
    height:3px;
    background:#8b5e3c;
    display:block;
    margin:10px auto;
}

.services{
    background:#f3efe7;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    border:1px solid #e6e1d9;
    text-align:center;
}

.gallery{
    background:#faf7f2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.contact-note {
    background: #fdf4e7; /* jemná farba pre zvýraznenie */
    border-left: 5px solid #8b5e3c; /* vizuálne zvýraznenie */
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 16px;
    text-align: center;
    color: #2d2d2d;
}

.contact-note p strong {
    color: #8b5e3c;
    font-weight: 600;
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1; /* robí z obrázkov štvorce */
    object-fit: cover;   /* oreže nadbytočné časti, zachová pomer */
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.contact{
    background:#f3efe7;
}
.contact-info p{
    margin-bottom:12px;
    line-height:1.5;
}

.contact-info strong{
    display:inline-block;
    width:120px;
    text-transform:uppercase; /* všetko veľkými písmenami */
    color:#8b5e3c;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

@media(max-width:768px){
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-info strong{
        width:100px;
    }
}
.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    padding:12px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:6px;
}

.contact-form button{
    padding:12px;
    background:#8b5e3c;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.contact-form button:hover{
    background:#5a3d2b;
}

footer{
    background:#1f2933;
    color:#d1d5db;
    text-align:center;
    padding:25px;
}

/* MOBILE */

/* MOBILE MENU */
@media(max-width:768px){

    nav{
        display:none;
        flex-direction:column;
        background:#1f2933;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        padding:20px 0;
        text-align:center;
    }

    nav a{
        font-size:20px;
        margin:15px 0;
        display:block;
    }

    .menu-toggle{
        display:block;
    }


    .hero h1{
        font-size:32px;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);

    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    object-fit: contain; /* aby sa zachoval pomer */
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 10000;
}

.lightbox .prev { left: 15px; }
.lightbox .next { right: 15px; }

@media (max-width: 768px) {
    .lightbox .prev,
    .lightbox .next {
        font-size: 35px;
    }
    .lightbox .close {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }
}