/* GOOGLE FONTS: --------------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* GENERAL: --------------------------------------------------------------------------------------- */

:root {
    --glass-bg: rgba(20, 26, 32, 0.55);
    /* dunkles Glas */
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --glass-blur: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
}

body {
    background-color: black !important;
}

.header-logo {
    width: 100px;
    height: auto;
}

/* Background im Body */
.header-successcamps {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url(../images/community_image_urbanheroes.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header-inner {
    min-height: 60vh;
}

/* Glass Panel */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    border-radius: 28px;
}

.link-item{
    width: 100%;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 14px 14px;
    text-decoration: none;
    color: #e9eef3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.link-item:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.22);
    color: #fff;
}

.link-left{
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.link-icon{
    width: 60px;
    height: 60px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.12);
}

.link-text{
    min-width: 0;
}

.link-title{
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    font-size: 0.98rem;
}

.link-sub{
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.78;
}

/* MEDIAQUERY: --------------------------------------------------------------------------------------- */

@media (min-width: 700px) {
    main, footer {
        width: 70%;
        margin: 20px auto;
    }

    .header-successcamps {
        border-radius: 20px 20px 0 0;
    }
}

@media (min-width: 850px) {
    main, footer {
        width: 50%;
        margin: 20px auto;
    }

    .header-successcamps {
        border-radius: 20px 20px 0 0;
    }
}