body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* TOPMENY */
.topnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;

    display: flex;
        justify-content: flex-start;
    align-items: center;

    padding: 0 40px;

    background: rgba(0, 0, 0, 0.25); /* mörk transparent overlay */
    backdrop-filter: blur(12px);

    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.topnav nav {
    margin-left: -40px; /* flyttar menyn åt vänster */
}


.topnav .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
   margin-right: 60px; /
}

/* MENYKNAPPAR – honungsvax-stil */
.topnav nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.topnav nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;

    padding: 10px 18px;
    border-radius: 12px;

    background: linear-gradient(180deg, #f7d36b, #e5b84a);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);

    transition: all 0.25s ease;
}

.topnav nav ul li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

/* HERO-CONTAINER */
.hero {
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;

    /* MENYN SKA LIGGA OVANPÅ → ingen margin-top */
}

/* BAKGRUNDSLAGRET (bi.jpg) */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('bi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: grayscale(100%);
    transition: filter 2s ease-in-out;
}

/* ZOOM-BILDEN (bi2.jpg) */
.zoom-image {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%) scale(0.1);
    transform-origin: center center;

    opacity: 0;
    transition: transform 1.5s ease-in-out, opacity 1s ease-in-out;

    width: auto;
    height: 100%;
    z-index: 10;
}
