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

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;

    background-image: url("images/backgroundImg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%
}

.menu{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 33%;
    align-items: center;
    justify-content: center;
}

.lang-switcher{
    display: flex;
    gap: 10px;
}

.lang-switcher button{
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    opacity: 0.55;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switcher button:hover,
.lang-switcher button.active{
    opacity: 1;
    transform: scale(1.1);
}

.menu li{
    list-style: none;
    margin-bottom: 30px;
}
.menu a{
    font-family:Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-size: 24px;
    color: black;
}

.header{
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;

    h1{
        font-family: Arial, Helvetica, sans-serif;
        font-size: 48px;
        text-align: center;
    }
    h2{
        font-family: Arial, Helvetica, sans-serif;
        font-size: 22px;
        text-align: center;
        margin-top: 10px;
    }
}

.header-undertext{
    margin-top: 30px;
}
.filler{
    width: 33%;
    display: flex;
    justify-content: center;

    .links{
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;

        h3{
            font-family: Arial, Helvetica, sans-serif;
            font-size: 18px;
            margin-bottom: 10px;
            text-align: center;
        }

        li{
            margin-bottom: 6px;
            font-size: 24px;
            font-family:Arial, Helvetica, sans-serif;

        }
    }
}

.destinations{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    margin-top: 30px;

    li{
        margin-bottom: 6px;
        font-size: 24px;
        font-family:Arial, Helvetica, sans-serif;

    }
}

.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    img{
        height: 50px;
        margin: 0 10px;
    }
}

.information-text{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;

    li{
        margin-bottom: 18px;
        font-size: 18px;
        font-family:Arial, Helvetica, sans-serif;

    }
}

/* Hamburger button: hidden by default, shown only on mobile */
.menu-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}
.menu-toggle span{
    display: block;
    height: 3px;
    width: 100%;
    background: black;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity: 0; }
.menu-toggle.active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ===== Responsive: tablets and phones ===== */
@media (max-width: 900px) {
    body{
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        justify-content: center;
        padding: 90px 15px 30px;
        gap: 20px;
        background-size: cover;
        overflow-x: hidden;
    }

    .header,
    .filler{
        width: 100%;
        height: auto;
    }

    /* Menu becomes a fixed top bar with a hamburger toggle asda */
    .menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.92);
        z-index: 1000;
    }

    .menu-toggle{
        display: flex;
    }

    .menu ul{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.97);
    }

    .menu ul.open{
        display: flex;
    }

    .menu li{
        margin-bottom: 0;
    }

    .menu a{
        font-size: 18px;
    }

    .header h1{
        font-size: 32px;
    }

    .header h2{
        font-size: 16px;
    }

    .destinations li,
    .information-text li,
    .filler .links li{
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header h1{
        font-size: 26px;
    }

    .icons img{
        height: 36px;
    }
}

/* ===== Gallery page: image carousel ===== */
.gallery-container{
    width: 66%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.gallery-container h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
}

.carousel{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.carousel-main{
    width: 520px;
    max-width: 50vw;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.carousel-thumb{
    width: 140px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.55;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.carousel-thumb:hover{
    opacity: 0.9;
    transform: scale(1.04);
}

.carousel-arrow{
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: black;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 900px) {
    .gallery-container{
        width: 100%;
    }

    .gallery-container h1{
        font-size: 32px;
    }

    .carousel-thumb{
        display: none;
    }

    .carousel{
        gap: 10px;
    }

    .carousel-arrow{
        display: block;
        flex-shrink: 0;
    }

    .carousel-main{
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .carousel-main{
        height: 220px;
    }

    .carousel-arrow{
        font-size: 22px;
    }
}
