body {
    font-family: Arial, sans-serif;
    background-color: #FFF2CC; /* Light yellow, like honey */
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: #FFCC00; /* Bright bee yellow */
    padding: 10px;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adding shadow to the top bar */
}

.logo {
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #333; /* Dark color for contrast */
}

.logo img {
    width: 30px;
    margin-right: 10px;
}

.menu {
    display: flex;
    flex-wrap: wrap;
}

.menu a {
    margin-right: 20px;
    text-decoration: none;
    color: #333; /* Dark color for menu items */
}

.parallax {
    background-image: url('https://assets.codepen.io/11460359/IU2A0035.JPG');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax h1 {
    color: white;
    font-size: 4em;
    text-align: center;
}

.text-area {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    padding: 20px;
    margin: 20px;
    text-align: justify;
}

.gallery {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    gap: 10px;
    background: linear-gradient(to top, rgba(83, 52, 10, 0.8), transparent); /* Dark brown gradient */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on touch devices */
}

.gallery a {
    flex: 0 0 auto; /* Prevents flex items from growing or shrinking */
    width: 300px;
    height: 300px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

footer {
    background-color: #333; /* Dark footer */
    color: white;
    padding: 20px;
    text-align: center;
}

#map {
    height: 200px;
    background-color: #ccc; /* Placeholder for map */
}

.euDisclaimer {
    display: flex;
    flex-direction: column;
    background: #fff;
    align-items: center;
}

.disclaimerContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.euDisclaimerWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-title {
    font-size: 16px;
}
.operation-title {
    font-size: 18px;
    margin-top: 20px;
}
.subsection {
    font-size: 18px;
    margin: 20px 0;
}
.text-content {
    font-size: 18px;
    text-align: center;
    line-height: 24px;
}
.highlight {
    font-weight: bold;
}

.last-element {
    margin: 20px 0;
}

.greenBar, .blueBar {
    height: 20px;
    width: 100%;
}

.greenBar {
    background-color: #00A651;
}

.blueBar {
    background-color: #0B4EA2;
}

.image-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.responsive-image {
    max-width: 100%;
    height: auto;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .menu a {
        margin: 10px 0; /* Stacks the menu items vertically on small screens */
    }

    .text-area {
        margin: 10px;
    }

    .parallax {
        background-attachment: scroll; /* Fixes background image on smaller screens */
    }
}

