/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#000;
    color:white;
    overflow-x:hidden;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#b88a44;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#111;
}

/* GLOBAL */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

section{
    padding:110px 0;
}

.gold{
    color:#c59b5d;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,0.65);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.navbar{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:150px;
    height:150px;
    object-fit:cover;
    border-radius:50%;
	
    filter: drop-shadow(0 0 12px rgba(197,155,93,0.35));
}

.logo h1{
    font-size:20px;
    font-weight:500;
    letter-spacing:5px;
    color:#c59b5d;
}

/* MENU */

nav ul{
    display:flex;
    list-style:none;
    gap:45px;
}

nav a{
    text-decoration:none;
    color:#ddd;
    font-size:14px;
    letter-spacing:1px;
    position:relative;
    transition:0.3s;
}

nav a::after{
    content:"";
    position:absolute;
    bottom:-8px;
    left:0;
    width:0%;
    height:2px;
    background:#c59b5d;
    transition:0.4s;
}

nav a:hover{
    color:white;
}

nav a:hover::after{
    width:100%;
}

/* HERO */

.hero{
    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.72),rgba(0,0,0,0.88)),
    url("img/background_logo.png");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    position:relative;
}

/* ANIMATED OVERLAY */

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top left, rgba(197,155,93,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(197,155,93,0.12), transparent 35%);

    animation:glowMove 8s infinite alternate;
}

@keyframes glowMove{

    from{
        transform:scale(1) translateY(0px);
    }

    to{
        transform:scale(1.1) translateY(-20px);
    }

}

.hero-content{
    position:relative;
    z-index:2;
    animation:fadeUp 1.5s ease;
}

.hero-logo{
    width:300px;
    max-width:80%;
    margin-bottom:30px;
    opacity:0.95;
}

/* HERO TEXT */

.hero h2{
    font-size: clamp(34px, 6vw, 72px);
    letter-spacing:8px;
    margin-bottom:20px;
    color:#c59b5d;
    font-weight:500;
}

.hero p{
    color:#ddd;
    font-size:22px;
    margin-bottom:40px;
    letter-spacing:2px;
}

/* BUTTON */

.btn{
    display:inline-block;
    padding:16px 40px;
    border:1px solid #c59b5d;
    color:#c59b5d;
    text-decoration:none;
    border-radius:50px;
    transition:0.4s;
    letter-spacing:2px;
    font-size:14px;
}

.btn:hover{
    background:#c59b5d;
    color:black;
    transform:translateY(-4px);
    box-shadow:0 10px 35px rgba(197,155,93,0.35);
}

/* SECTION TITLE */

.section-title{
    margin-bottom:70px;
}

.section-title h2{
    font-size:46px;
    color:#c59b5d;
    letter-spacing:6px;
    margin-bottom:15px;
}

.section-line{
    width:200px;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        #c59b5d,
        transparent
    );
}

.section-line-kontakt{
    width:200px;
    height:2px;
    margin:0 auto;
    background:linear-gradient(
        90deg,
        transparent,
        #c59b5d,
        transparent
    );
}

/* ABOUT */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about img{
    width:65%;
    border-radius:25px;
    filter:grayscale(50%);
    object-fit:cover;

    box-shadow:0 20px 60px rgba(0,0,0,0.6);

    transition:0.5s;
}

.about-text p{
    color:#bdbdbd;
    line-height:2;
    margin-bottom:25px;
    font-size:17px;
}

/* PORTFOLIO */

.albums{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.album{
    position:relative;
    height:460px;
    border-radius:25px;
    overflow:hidden;
    cursor:pointer;
    transition:0.5s;
    border:1px solid rgba(255,255,255,0.08);
}

.album:hover{
    transform:translateY(-10px);
}

.album img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.album:hover img{
    transform:scale(1.08);
}

.album-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.95),transparent);

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:35px;
}

.album-overlay h3{
    font-size:34px;
    letter-spacing:3px;
    margin-bottom:10px;
}

.album-overlay p{
    color:#ccc;
}

/* MODAL */

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.96);

    display:none;
    justify-content:center;
    align-items:center;

    z-index:9999;

    padding:50px;
}

.modal-content{
    width:100%;
    max-width:1300px;
}

.modal-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.modal-top h2{
    font-size:42px;
    color:#c59b5d;
}

.close{
    font-size:50px;
    cursor:pointer;
    transition:0.3s;
}

.close:hover{
    color:#c59b5d;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s;
}

.gallery img:hover{
    transform:scale(1.03);
}

/* SERVICES */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-box{
    padding:45px;
    border-radius:25px;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;
}

.service-box:hover{
    transform:translateY(-8px);
    border-color:#c59b5d;
}

.service-box h3{
    margin-bottom:20px;
    color:#c59b5d;
    font-size:24px;
}

.service-box p{
    color:#bdbdbd;
    line-height:1.9;
}

/* CONTACT */

.contact{
    text-align:center;
}

.contact p{
    margin:18px 0;
    color:#ddd;
    font-size:18px;
}

/* FOOTER */

footer{
    padding:35px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
    color:#777;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:950px){

    .about{
        grid-template-columns:1fr;
    }

    .hero h2{
        font-size:48px;
    }

}

@media(max-width:700px){

    .navbar{
        flex-direction:column;
        height:auto;
        padding:20px 0;
        gap:20px;
    }

    nav ul{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h2{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .section-title h2{
        font-size:34px;
    }

}

/* MORE ABOUT */

.more-about{

    max-height:0;
    overflow:hidden;

    opacity:0;

    transition:
    max-height 0.7s ease,
    opacity 0.5s ease;

    margin-top:30px;
}

.more-about.active{

    max-height:500px;

    opacity:1;
}

.more-about p{

    color:#bdbdbd;
    line-height:2;
    margin-bottom:18px;
}

/* SOCIAL LINKS */

.contact a{

    color:#c59b5d;

    text-decoration:none;

    transition:0.3s;
}

.contact a:hover{

    color:white;

}

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.97);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:10000;
}

.lightbox img{
    max-width:90%;
    max-height:85%;
    border-radius:15px;
    box-shadow:0 20px 80px rgba(0,0,0,0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
    position:absolute;
    color:white;
    font-size:50px;
    cursor:pointer;
    user-select:none;
    transition:0.3s;
}

.lightbox-close{
    top:20px;
    right:40px;
}

.lightbox-prev{
    left:30px;
    top:50%;
    transform:translateY(-50%);
}

.lightbox-next{
    right:30px;
    top:50%;
    transform:translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
    color:#c59b5d;
}


/* =========================
   MOBILNÉ ZARIADENIA
   ========================= */

@media (max-width:700px){

    /* HERO */
    .hero{
        background-attachment:scroll;
    }

    .hero h2{
        font-size:34px;
        letter-spacing:3px;
    }

    .hero p{
        font-size:16px;
    }

    /* LOGO */
    .logo{
        flex-direction:column;
        gap:10px;
    }

    .logo img{
        width:80px;
        height:80px;
    }

    .logo h1{
        font-size:14px;
        letter-spacing:2px;
        text-align:center;
    }

    /* MENU */
    nav ul{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav a{
        font-size:12px;
    }

    /* ABOUT */
    .about{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .about img{
        width:80%;
        margin:auto;
    }

    /* TITULKY */
    .section-title h2{
        font-size:32px;
        letter-spacing:3px;
    }

    /* PORTFOLIO ALBUMY */
    .albums{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .album{
        height:170px;
        border-radius:15px;
    }

    .album-overlay{
        padding:10px;
    }

    .album-overlay h3{
        font-size:13px;
        letter-spacing:1px;
        margin-bottom:3px;
    }

    .album-overlay p{
        font-size:10px;
    }

    /* MODAL */
    .modal{
        padding:15px;
    }

    .modal-content{
        width:100%;
    }

    .modal-top{
        margin-bottom:20px;
    }

    .modal-top h2{
        font-size:24px;
    }

    .close{
        font-size:35px;
    }

    /* NÁHĽADY VO VNÚTRI GALÉRIE */
    .gallery{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .gallery img{
        height:120px;
        border-radius:12px;
    }

    /* LIGHTBOX */
    .lightbox img{
        max-width:95%;
        max-height:75%;
    }

    .lightbox-close{
        top:15px;
        right:20px;
        font-size:35px;
    }

    .lightbox-prev,
    .lightbox-next{
        font-size:35px;
    }

    .lightbox-prev{
        left:15px;
    }

    .lightbox-next{
        right:15px;
    }

    /* SLUŽBY */
    .service-box{
        padding:25px;
    }

    .service-box h3{
        font-size:20px;
    }

    /* KONTAKT */
    .contact p{
        font-size:16px;
    }
}

/* EXTRA MALÉ TELEFÓNY */

@media (max-width:480px){

    .album{
        height:130px;
    }

    .album-overlay h3{
        font-size:11px;
    }

    .album-overlay p{
        font-size:9px;
    }

    .gallery{
        gap:8px;
    }

    .gallery img{
        height:95px;
    }

    .modal-top h2{
        font-size:20px;
    }

    .hero h2{
        font-size:28px;
    }

    .hero p{
        font-size:14px;
    }
}