/* General Styling */
body {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: linear-gradient(45deg, #004aad, #0066cc);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-around;
    background: #333;
    padding: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

nav a:hover {
    background: #444;
    border-radius: 5px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
}

.hamburger span {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px 0;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

.nav-links {
    display: flex;
}

.nav-links.active {
    display: block;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem 0;
}

.nav-links a {
    padding: 1rem;
    text-align: center;
}

.white-link {
    color: white;
    text-decoration: none;
}

.white-link:hover {
    color: #ee9618;
    text-decoration: underline;
}

/* Class for white and underlined link */
.white-underlined-link {
    color: white;
    text-decoration: underline;
}

.white-underlined-link:hover {
    color: #ee9618;
    text-decoration: underline;
}

.hero {
    background: url('img/or-cover.webp') no-repeat center center / cover;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
    background-attachment: fixed;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero h1 {
    z-index: 2;
    position: relative;
    font-weight: 700;
    font-size: 2.5rem;
}

.hero p {
    z-index: 2;
    position: relative;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.section {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: #f4f4f4;
    margin: 1rem 0;
}

.section:nth-child(even) {
    background: #e8e8e8;
}

.section div {
    flex: 1;
    margin: 0 1rem;
}

.cta {
    background: linear-gradient(45deg, #004aad, #0066cc);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.cta h2 {
    margin-bottom: 1rem;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

.map {
    width: 100%;
    height: 300px;
    margin: 1rem 0;
}

.image-placeholder {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.gallery img {
    width: 30%;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    nav ul {
        flex-direction: column;
    }

    nav a {
        margin: 0.5rem 0;
    }

    .section {
        flex-direction: column;
    }
}
