/* ===========================
   Header Styling
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
}
/* Header */
.header {
    background-color: #CFFFFA;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}
/* Logo */
.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
/* Navigation */
.navigation {
    flex: 1;
    margin-left: 3rem;
    text-align: right;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
}
.nav-link:hover {
    color: #3498db;
    border-bottom-color: #3498db;
}
.nav-link.active {
    color: #3498db;
    border-bottom-color: #3498db;
}
/* Header Icons (Instagram + Organisationslogo) */
.header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}
.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.icon-link:hover {
    opacity: 0.75;
    transform: scale(1.05);
}
.instagram-icon {
    color: #000000;
    width: 30px;
    height: 30px;
}
.org-logo-link img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}
/* Hero Section */
.hero {
    color: black;
    text-align: center;
    padding: 1.5rem 2rem;
}
.hero h1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}
.hero p {
    font-size: 1.1rem;
    color: #555;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    .navigation {
        margin-left: 0;
        width: 100%;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
    }
    .header-icons {
        justify-content: center;
        margin-top: 0.5rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
}
