* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #000);
    color: #fff;
    overflow-x: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #d4a373;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 1s ease-out;
}
@keyframes slideDown {
    from {transform: translateY(-100%);}
    to {transform: translateY(0);}
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    width: 60px;
    transition: 0.4s;
}

.logo-container img:hover {
    transform: scale(1.1) rotate(10deg);
}

.logo-container h1 {
    color: #d4a373;
    font-weight: 800;
    letter-spacing: 1px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    padding: 8px 18px;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: 0.4s;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    border: 2px solid #d4a373;
    box-shadow: 0 0 15px #d4a373;
    color: #d4a373;
}

section {
    padding: 80px 10%;
    text-align: center;
}

h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #d4a373;
    font-weight: 700;
}

.intro p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: auto;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}


.gallery-grid img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
    border: 2px solid #d4a373;
    box-shadow: 0 10px 30px rgba(212,163,115,0.6), 0 0 20px rgba(212,163,115,0.4);
}


.map-section h2 {
    font-size: 36px;
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #d4a373;
    box-shadow: 0 0 30px rgba(212,163,115,0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* FOOTER */
footer {
    background: #0d0d0d;             
    padding: 25px 10%;
    text-align: center;
    border-top: 2px solid #d4a373;   
    box-shadow: 0 -3px 10px rgba(0,0,0,0.5);
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

footer p {
    color: #d4a373;                  
    font-size: 14px;
    font-weight: 500;
    margin: 3px 0;
}

footer a {
    color: #fff;                   
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

footer a:hover {
    color: #d4a373;                  
    text-shadow: 0 0 5px #d4a373;
}

#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 1000;
}

#overlay.active {
    opacity: 1;
    visibility: visible;
}

#overlay img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(212,163,115,0.8);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    color: #d4a373;
    cursor: pointer;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #d4a373;
    cursor: pointer;
    padding: 20px;
}

.prev { left: 40px; }
.next { right: 40px; }


/* TABLET */
@media (max-width: 1024px) {

    section {
        padding: 60px 8%;
    }

    .gallery-grid {
        column-count: 3;
    }

    h2 {
        font-size: 30px;
    }

    .intro p {
        font-size: 17px;
    }
}

/* ===== TELEFON ===== */
@media (max-width: 760px) {

    section {
        padding: 50px 6%; 
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 0; 
        margin: 0 -6%; 
        padding-left: 6%;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-item {
        flex: 0 0 88%; 
        height: 250px;
        scroll-snap-align: center;
        border-radius: 18px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }
}

