:root {
    /*--gradient-start: #4a69bd; /* blue *
    --gradient-end: #f39c12; /* orange */
    --gradient-start: #43B0A2;
    --gradient-end: #050C46;
    --text-color: #333;
    --bg-light: #f4f4f8;
}

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

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    margin: 0.5rem 0;
}

header h2 {
    font-weight: 400;
    font-size: 1.3rem;
}

section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease;
}

section h3 {
    font-size: 1.8rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    cursor: pointer;
}

ul {
    list-style: disc;
    padding-left: 1.5rem;
}

a.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

a.btn:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #555;
    background: #eee;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header .logo-container{
    padding: 20px;
}

header .logo-container img {
    max-width: 800px;
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.7));
}

header .text-container {
    max-width: 600px;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
}

header h2 {
    margin: 0.5rem 0 0;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

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

section p{
    text-align: justify;
    margin-bottom: 5px;
}

#goals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#goals div.plock {
    flex: 1 1 45%; /* 2 per row */
    background: lightblue;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
}

#goals div.plock h2{
    font-size: 20px;
}

ul#team {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    width: 95%;
}

ul#team li {
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--gradient-end);
    width: 100%;
}

ul#team li img{
    float: left;
    width: 150px;
    height: 150px;
}

ul#team li p{
    margin: 5px;
    float: left;
    width: 78%;
}

.news {
    border: 1px solid #ccc;
    border-radius: 8px;
    /*box-shadow: 0 3px 10px #4a69bd;*/
    width: 100%;
    padding: 10px;
}

.hidden {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}