@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap');

:root{

    --background:#1b1011;

    --panel-top:rgba(55,22,26,.95);
    --panel-bottom:rgba(34,16,18,.96);

    --text:#f8f4ee;
    --muted:rgba(248,244,238,.72);

    --gold-light:#f7e7b8;
    --gold:#e8c777;
    --gold-dark:#bf8a32;

    --gold-rgb:232,199,119;

    --gold-border:rgba(232,199,119,.45);
    --gold-border-strong:rgba(232,199,119,.70);

    --gold-glow:rgba(232,199,119,.12);

    --field:rgba(255,255,255,.08);
    --field-border:rgba(232,199,119,.55);
}

body{
    margin:0;
    min-height:100%;
    font-family:'Inter', Arial, Helvetica, sans-serif;
    color:var(--text);
    background:var(--background);
}

.lounge-body{
    min-height:100vh;

    background:
        linear-gradient(
            rgba(15,5,7,.45),
            rgba(15,5,7,.65)
        ),
        url("../images/login-background2.jpg")
        center / cover fixed;
}

*{
    box-sizing:border-box;
}

html{
    min-height:100%;
}

button,
input,
textarea,
select{
    font:inherit;
}

.login-page{

    min-height:100svh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.18) 0%,
            rgba(0,0,0,.30) 46%,
            rgba(0,0,0,.76) 100%
        ),
        url("../images/login-background.jpg")
        left center / cover no-repeat;
}

.login-panel{
    width:min(100%, 720px);
 margin-left:8%;
    padding:48px 60px 46px;

    text-align:center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(94, 17, 26, .22),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            var(--panel-top),
            var(--panel-bottom)
        );

    border:1px solid rgba(var(--gold-rgb), .88);
    border-radius:22px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .58),
        inset 0 1px 0 rgba(255, 255, 255, .035);

    backdrop-filter:blur(9px);
}

.login-logo{
    display:block;

    width:165px;
    max-width:58%;
    height:auto;

    margin:0 auto 25px;
}

h1{

    margin:0;

    font-family:'Cormorant Garamond', serif;

    color:var(--gold-light);

    font-size:58px;       /* was veel groter */

    font-weight:500;

    letter-spacing:4px;

    text-transform:none;

    white-space:nowrap;   /* blijft op 1 regel */

}

.title-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    max-width:520px;
    margin:22px auto 24px;

    color:var(--gold);
}

.title-divider span{

    background:linear-gradient(
        90deg,
        transparent,
        var(--gold)
    );
}

.title-divider span:last-child{

    background:linear-gradient(
        90deg,
        var(--gold),
        transparent
    );
}

.title-divider b{
    font-size:.8rem;
    font-weight:400;
}

.tagline{
    max-width:520px;

    margin:0 auto 38px;

    font-family:'Cormorant Garamond', Georgia, serif;
    color:var(--gold-light);

    font-size:24px;
    line-height:1.45;
    letter-spacing:.025em;
}

.login-form{

    width:520px;

    max-width:100%;

    margin:0 auto;
      text-align:left;

}

.form-group{
    margin-bottom:21px;
}

.form-group label{

    display:block;

    text-align:left;

    margin-bottom:8px;

    color:var(--gold-light);

    font-size:.78rem;

    font-weight:600;

    letter-spacing:.09em;

    text-transform:uppercase;
}

.input-wrap{
    position:relative;
}

.form-group input{
    width:100%;
    min-height:58px;

    padding:0 18px;

    color:var(--text);
    background:var(--field);

    border:1px solid var(--field-border);
    border-radius:8px;

    outline:none;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .035),
        0 8px 22px rgba(0, 0, 0, .13);

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.form-group input::placeholder{
    color:rgba(246, 240, 231, .50);
}

.form-group input:focus{
    background:rgba(255, 255, 255, .075);
    border-color:var(--gold-light);

    box-shadow:
        0 0 0 3px rgba(var(--gold-rgb), .10),
        inset 0 1px 0 rgba(255, 255, 255, .045);
}

.form-options{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    margin:4px 0 30px;

    font-size:.92rem;
}

.remember{
    display:flex;
    align-items:center;
    gap:10px;

    color:rgba(246, 240, 231, .82);
    cursor:pointer;
}

.remember input{
    appearance:none;

    width:19px;
    height:19px;

    margin:0;

    border:1px solid var(--gold);
    border-radius:3px;
    background:rgba(255, 255, 255, .025);

    cursor:pointer;
}

.remember input:checked{
    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold-dark)
        );
}

.remember input:checked::after{
    content:"✓";

    display:block;

    color:#140d04;
    font-size:.82rem;
    font-weight:800;
    line-height:17px;
    text-align:center;
}

.text-link{
    color:var(--gold-light);
    text-decoration:underline;
    text-underline-offset:4px;

    transition:color .2s ease;
}

.text-link:hover{
    color:#fffaf0;
}

.login-button{
    width:100%;
    min-height:62px;

    padding:0 28px;

    color:#fffaf0;

    background:
linear-gradient(
    180deg,
    var(--gold),
    var(--gold-dark)
);

border:1px solid var(--gold-light);
    border-radius:7px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .20),
        0 12px 28px rgba(0, 0, 0, .26);

    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.65rem;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;

    cursor:pointer;

    transition:
        transform .2s ease,
        filter .2s ease,
        box-shadow .2s ease;
}

.login-button:hover{
    filter:brightness(1.12);
    transform:translateY(-1px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .24),
        0 15px 32px rgba(0, 0, 0, .34);
}

.members-only{
    margin:34px 0 0;

    color:rgba(var(--gold-rgb), .75);
    font-size:.86rem;
    line-height:1.5;
}
/* ==================================================
   MEMBERS LOUNGE HOME
================================================== */

.lounge-header{
    position:sticky;
    top:0;
    z-index:100;

    background:rgba(12, 6, 7, .94);
    border-bottom:1px solid rgba(var(--gold-rgb), .30);
    backdrop-filter:blur(12px);
}

.header-inner{
    width:min(100% - 40px, 1440px);
    min-height:82px;
    margin:0 auto;

    display:flex;
    align-items:center;
    gap:42px;
}

.header-brand{
    display:flex;
    align-items:center;
    gap:15px;

    color:var(--gold-light);
    text-decoration:none;
}

.header-logo{
    width:68px;
    height:auto;
}

.header-title{
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.85rem;
    letter-spacing:.05em;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
    margin-left:auto;
}

.main-nav a{
    position:relative;

    padding:29px 0 26px;

    color:rgba(246, 240, 231, .72);
    font-size:.88rem;
    font-weight:500;
    text-decoration:none;

    transition:color .2s ease;
}

.main-nav a:hover,
.main-nav a.active{
    color:var(--gold-light);
}

.main-nav a.active::after{
    content:"";

    position:absolute;
    right:0;
    bottom:0;
    left:0;

    height:3px;
    border-radius:3px;

    background:linear-gradient(
        90deg,
        var(--gold-light),
        var(--gold),
        var(--gold-light)
    );

    box-shadow:0 0 8px var(--gold-glow);
}

/* ---------------------------------------------------------
   Mobiel hamburgermenu
--------------------------------------------------------- */

.mobile-menu-toggle{
    display:none;
    width:44px;
    height:44px;
    padding:0;

    background:transparent;
    border:1px solid rgba(var(--gold-rgb), .45);
    border-radius:50%;

    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;

    cursor:pointer;
}

.mobile-menu-toggle span{
    display:block;
    width:19px;
    height:2px;
    background:var(--gold-light);
    transition:.2s ease;
}

.header-account{
    display:flex;
    align-items:center;
    gap:9px;

    padding-left:28px;

    color:rgba(246, 240, 231, .85);
    font-size:.86rem;

    border-left:1px solid rgba(255, 255, 255, .10);
}

.avatar{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
    145deg,
    var(--gold-light),
    var(--gold-dark)
);

    color:#2a1609;

    font-size:.8rem;
    font-weight:700;

    border:2px solid var(--gold-border-strong);

    box-shadow:
        0 5px 15px rgba(0,0,0,.35),
        0 0 0 2px rgba(0,0,0,.25);
}

.lounge-main{
    width:min(100% - 40px, 1380px);
    margin:0 auto;
    padding:54px 0 70px;
}

.welcome-section{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;

    margin-bottom:35px;
}

.section-label{
    margin:0 0 6px;

    color:var(--gold);
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.welcome-section h1{
    margin:0;

    color:var(--gold-light);
    font-size:clamp(2.6rem, 5vw, 4.4rem);
    letter-spacing:.025em;
    text-transform:none;
    white-space:normal;
}

.welcome-text{
    margin:12px 0 0;
    color:rgba(246, 240, 231, .64);
}

.profile-link,
.section-heading a,
.side-link{
    color:var(--gold-light);
    text-decoration:none;
}

.profile-link{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:11px 20px;

    color:var(--gold-light);
    text-decoration:none;

    border:1px solid var(--gold-border);
    border-radius:999px;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .2s ease,
        box-shadow .25s ease;
}

.profile-link:hover{

    color:#fffaf0;

    background:var(--gold-glow);

    border-color:var(--gold-light);

    transform:translateY(-1px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.20);
}

.profile-link:active{
    transform:translateY(0);
}

/* ---------------------------------------------------------
   MIJN FAVORIETEN - PROFIEL
--------------------------------------------------------- */

.profile-favorites-card{
    margin-top:24px;
}

.profile-favorites-list{
    display:flex;
    flex-direction:column;
    gap:10px;

    margin-top:18px;
}

.profile-favorite-item{
    display:grid;
    grid-template-columns:52px minmax(0,1fr) auto;
    align-items:center;
    gap:12px;

    padding:10px;

    color:var(--cream);
    text-decoration:none;

    background:rgba(255,255,255,.025);
    border:1px solid rgba(var(--gold-rgb),.16);
    border-radius:10px;

    transition:
        background .2s ease,
        border-color .2s ease;
}

.profile-favorite-item:hover{
    background:rgba(var(--gold-rgb),.06);
    border-color:rgba(var(--gold-rgb),.38);
}

.profile-favorite-avatar{
    display:flex;
    align-items:center;
    justify-content:center;

    width:52px;
    height:52px;

    overflow:hidden;
    flex:0 0 52px;

    border-radius:50%;
    border:1px solid rgba(var(--gold-rgb),.45);
}

.profile-favorite-avatar img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.profile-favorite-copy{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:3px;
}

.profile-favorite-copy strong{
    color:var(--cream);
    font-size:.95rem;
    line-height:1.2;
}

.profile-favorite-copy small{
    color:var(--muted);
    font-size:.78rem;
}

.profile-favorite-star{
    color:var(--gold-light);
    font-size:1rem;
}
.section-heading a,
.side-link,
.gold-text-link{
    transition:
        color .2s ease,
        opacity .2s ease;
}

.section-heading a:hover,
.side-link:hover,
.gold-text-link:hover{
    color:#fffaf0;
}

.summary-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:18px;

    margin-bottom:35px;
}

.summary-card{

    min-height:132px;
    padding:25px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    background:
        linear-gradient(
            145deg,
            rgba(46, 12, 17, .92),
            rgba(15, 7, 8, .96)
        );

    border:1px solid rgba(var(--gold-rgb), .55);
    border-radius:14px;

    box-shadow:
        0 16px 35px rgba(0,0,0,.20),
        inset 0 1px 0 rgba(255,255,255,.03);
}

.summary-card strong{
    font-family:'Cormorant Garamond', Georgia, serif;
    color:var(--gold-light);
    font-size:2.45rem;
    font-weight:500;
}

.summary-card span{
    margin-top:3px;
    color:rgba(246, 240, 231, .66);
    font-size:.88rem;
}

.content-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 340px;
    gap:28px;
    align-items:start;
}

.main-column,
.side-column{
    min-width:0;
}

.content-card,
.post-card,
.side-card{
    background:
        linear-gradient(
            180deg,
            rgba(34, 10, 14, .93),
            rgba(14, 7, 8, .97)
        );

    border:1px solid rgba(var(--gold-rgb), .22);
    border-radius:14px;

    box-shadow:0 18px 42px rgba(0, 0, 0, .22);
}

.content-card{
    padding:28px;
}

.card-heading h2,
.section-heading h2,
.side-card h2{
    margin:0;

    font-family:'Cormorant Garamond', Georgia, serif;
    color:var(--gold-light);
    font-weight:500;
}

.card-heading h2,
.section-heading h2{
    font-size:2rem;
}

.create-post textarea{
    width:100%;
    min-height:125px;

    margin-top:22px;
    padding:17px 18px;

    resize:vertical;

    color:#fff;
    background:rgba(255, 255, 255, .045);

    border:1px solid rgba(var(--gold-rgb), .32);
    border-radius:9px;

    outline:none;
}

.create-post textarea::placeholder{
    color:rgba(246, 240, 231, .40);
}

.create-post textarea:focus{
    border-color:var(--gold-light);
    box-shadow:0 0 0 3px rgba(var(--gold-rgb), .09);
}

.post-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;

    margin-top:16px;
}

.gold-button,
.secondary-button,
.profile-button{

    min-height:44px;
    padding:0 24px;

    border-radius:7px;

    font-weight:700;
    text-decoration:none;

    cursor:pointer;

    transition:
        transform .2s ease,
        filter .2s ease,
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.gold-button{

    color:#fffaf0;

    background:linear-gradient(
        180deg,
        var(--gold),
        var(--gold-dark)
    );

    border:1px solid var(--gold-light);
}

.secondary-button{

    color:var(--gold-light);
    background:transparent;

    border:1px solid var(--gold-border);
}

.gold-button:hover,
.profile-button.gold-button:hover{

    filter:brightness(1.12);
    transform:translateY(-1px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.22),
        0 10px 24px rgba(0,0,0,.28);
}

.secondary-button:hover,
.profile-button.secondary-button:hover{

    color:#fffaf0;
    background:var(--gold-glow);
    border-color:var(--gold-light);

    transform:translateY(-1px);

    box-shadow:0 8px 20px rgba(0,0,0,.20);
}

.gold-button:active,
.secondary-button:active,
.profile-button:active{

    transform:translateY(0);
}

.feed-section{
    margin-top:38px;
}

.section-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;

    margin-bottom:18px;
}

.section-heading a{
    font-size:.86rem;
}

.post-card{
    padding:25px;
    margin-bottom:18px;
}

.official-post{
    border-color:rgba(var(--gold-rgb), .48);
}

.post-header{
    display:flex;
    align-items:center;
    gap:14px;
}
.profile-mini-avatar,
.profile-post-avatar{
    position:relative;
    overflow:hidden;
}

.profile-mini-avatar img,
.profile-post-avatar img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}
.member-avatar,
.small-avatar{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    flex:0 0 auto;

    border:2px solid var(--gold-border-strong);

    box-shadow:
        0 5px 15px rgba(0,0,0,.30);

    color:#160d05;
    background:linear-gradient(
        145deg,
        var(--gold-light),
        var(--gold-dark)
    );

    font-weight:800;
}
.profile-post-avatar{
    overflow:hidden;
    position:relative;
}

.profile-post-avatar img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.member-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
}

.small-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    font-size:.78rem;
}

/* Officiële Fun4Two avatar */
.fun4two-avatar{
    display:flex;
    align-items:center;
    justify-content:center;

    width:56px;
    height:56px;
    min-width:56px;

    padding:4px;

    background:#21090c;
    border:1px solid rgba(var(--gold-rgb), .55);
    border-radius:50%;

    overflow:hidden;
}

.fun4two-avatar img{
    display:block;

    width:100%;
    height:100%;

    object-fit:contain;
}

.avatar-online{
    position:absolute;
    right:0;
    bottom:1px;

    width:11px;
    height:11px;

    background:#55b778;
    border:2px solid #210c10;
    border-radius:50%;
}

.post-header h3{
    margin:0 0 4px;
    color:#fff;
    font-size:1rem;
}

.post-header p{
    margin:0;

    color:rgba(246, 240, 231, .48);
    font-size:.78rem;
}

.official-label{
    margin-left:auto;
    padding:5px 10px;

    color:var(--gold-light);
    font-size:.68rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;

    border:1px solid rgba(var(--gold-rgb), .40);
    border-radius:999px;
}

.post-content{
    padding:21px 0 18px;
}

.post-content p{
    margin:0;

    color:rgba(246, 240, 231, .84);
    font-size:1rem;
    line-height:1.7;
}

.event-preview{
    margin-top:19px;
    padding:18px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    background:rgba(var(--gold-rgb), .075);
    border-left:3px solid var(--gold);
    border-radius:5px;
}

.event-preview span{
    color:var(--gold-light);
    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.45rem;
}

.event-preview strong{
    color:rgba(246, 240, 231, .66);
    font-size:.78rem;
}

.post-footer{
    display:flex;
    align-items:center;
    gap:22px;

    padding-top:16px;

    border-top:1px solid rgba(255, 255, 255, .07);
}

.post-footer button{
    padding:0;

    color:rgba(246, 240, 231, .58);
    background:none;
    border:0;

    cursor:pointer;
}

.post-footer button:hover{
    color:var(--gold-light);
}

.side-column{
    display:grid;
    gap:20px;
}

.side-card{
    padding:23px;
}

.side-card-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;

    padding-bottom:16px;
    margin-bottom:6px;

    border-bottom:1px solid rgba(255, 255, 255, .07);
}

.side-card-heading h2,
.birthday-card h2{
    font-size:1.55rem;
}

.side-card-heading span{
    color:rgba(246, 240, 231, .42);
    font-size:.72rem;
}

.member-list{
    display:grid;
}

.member-row{
    display:flex;
    align-items:center;
    gap:13px;

    padding:13px 0;

    color:#fff;
    text-decoration:none;

    border-bottom:1px solid rgba(255, 255, 255, .055);
}

.member-row:last-child{
    border-bottom:0;
}

.member-row strong,
.member-row small{
    display:block;
}

.member-row strong{
    margin-bottom:4px;
    font-size:.86rem;
}

.member-row small{
    color:rgba(246, 240, 231, .42);
    font-size:.72rem;
}

.side-link{
    display:block;
    margin-top:15px;
    font-size:.8rem;
}

.birthday-card p:not(.section-label){
    color:rgba(246, 240, 231, .62);
    line-height:1.55;
}

.gold-text-link{
    color:var(--gold-light);
    text-decoration:none;
    font-size:.84rem;
}

.lounge-footer{
    padding:25px 20px;

    color:rgba(246, 240, 231, .35);
    text-align:center;
    font-size:.74rem;

    border-top:1px solid rgba(var(--gold-rgb), .15);
}

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0, 0, 0, 0);
    white-space:nowrap;
    border:0;
}
.event-gallery{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;

    margin-top:22px;
}

.event-image{
    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
    padding:10px;

    background:#100708;

    border:1px solid rgba(var(--gold-rgb), .28);
    border-radius:9px;

    box-shadow:0 12px 28px rgba(0, 0, 0, .22);
}

.event-image img{
    display:block;
    width:100%;
    height:auto;

    object-fit:contain;
    object-position:center;

    transition:
        transform .25s ease,
        filter .25s ease;
}

.event-image:hover img{
    transform:scale(1.02);
    filter:brightness(1.08);
}

/* FOTO'S IN BERICHTEN */

.post-gallery{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:12px;

    margin-top:20px;

}

.post-gallery a{

    display:block;

    overflow:hidden;

    border-radius:8px;

    border:1px solid rgba(var(--gold-rgb), .25);

}

.post-gallery img{

    display:block;

    width:100%;
    height:220px;

    object-fit:cover;

    transition:.25s;

}

.post-gallery img:hover{

    transform:scale(1.04);

}
.post-info h3{
    margin:0 0 4px;
    font-size:20px;
    font-weight:600;
    line-height:1.2;
}

.post-info p{
    margin:0;
    font-size:1.02rem;
    color:#a89a93;
}

/* ==================================================
   LIGHTBOX
================================================== */

body.lightbox-open{
    overflow:hidden;
}

.lightbox{
    position:fixed;
    inset:0;
    z-index:1000;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px 80px;

    background:rgba(4, 1, 2, .94);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.lightbox.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.lightbox-content{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;
}

.lightbox-image{
    display:block;

    max-width:100%;
    max-height:calc(100svh - 80px);

    object-fit:contain;

    border:1px solid rgba(var(--gold-rgb), .55);
    border-radius:10px;

    box-shadow:0 25px 80px rgba(0, 0, 0, .75);

    transform:scale(.96);
    opacity:0;

    transition:
        transform .25s ease,
        opacity .25s ease;
}

.lightbox.is-open .lightbox-image{
    transform:scale(1);
    opacity:1;
}

.lightbox-close,
.lightbox-nav{
    position:absolute;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--gold-light);
    background:rgba(14, 7, 8, .78);

    border:1px solid var(--gold-border);

    cursor:pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover{
    color:#fff;
    background:rgba(82, 20, 29, .92);
}

.lightbox-close{
    top:22px;
    right:24px;

    width:48px;
    height:48px;

    border-radius:50%;

    font-size:2rem;
    line-height:1;
}

.lightbox-nav{
    top:50%;

    width:48px;
    height:70px;

    border-radius:8px;

    font-size:1.7rem;

    transform:translateY(-50%);
}

.lightbox-prev{
    left:22px;
}

.lightbox-next{
    right:22px;
}

.event-image,
.post-gallery a{
    cursor:zoom-in;
}
.promo-card{

    text-align:center;
    overflow:hidden;

}

.promo-card a{

    display:block;

}

.promo-card img,
.promo-card video{

    display:block;
    width:100%;

    border-radius:10px;
    border:1px solid rgba(var(--gold-rgb), .28);

    cursor:pointer;

    transition:transform .25s ease,
               box-shadow .25s ease;

}

.promo-card a:hover img,
.promo-card a:hover video{

    transform:scale(1.02);

    box-shadow:0 10px 25px rgba(0,0,0,.35);

}

.promo-date{

    display:block;

    margin-top:14px;

    color:var(--gold-light);

    font-size:.95rem;
    font-weight:600;

}
/* ==================================================
   PROFILE PAGE
================================================== */

.profile-page{
    padding-top:42px;
}

.profile-hero{
    display:grid;
    grid-template-columns:360px minmax(0, 1fr);
    gap:38px;
    align-items:center;

    margin-bottom:30px;
    padding:30px;

    background:
        linear-gradient(
            145deg,
            rgba(46, 12, 17, .94),
            rgba(15, 7, 8, .97)
        );

    border:1px solid rgba(var(--gold-rgb), .30);
    border-radius:16px;

    box-shadow:0 20px 50px rgba(0, 0, 0, .25);
}

.profile-hero-image{
    overflow:hidden;

    aspect-ratio:4 / 3;

    border:1px solid rgba(var(--gold-rgb), .40);
    border-radius:12px;
}

.profile-hero-image img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;
}

.profile-hero-content h1{
    margin:0;

    color:var(--gold-light);

    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:clamp(3rem, 6vw, 5rem);
    font-weight:500;
    letter-spacing:.02em;

    white-space:normal;
}

.profile-name-row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
}

.profile-location{
    margin:8px 0 0;

    color:rgba(246, 240, 231, .58);
}

.profile-online{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;

    color:#8bd6a1;
    font-size:.78rem;
    font-weight:700;

    background:rgba(85, 183, 120, .08);

    border:1px solid rgba(85, 183, 120, .30);
    border-radius:999px;
}

.profile-online::before{
    content:"";

    width:8px;
    height:8px;

    background:#55b778;
    border-radius:50%;

    box-shadow:0 0 0 4px rgba(85, 183, 120, .12);
}

.profile-intro{
    max-width:760px;
    margin:25px 0 0;

    color:rgba(246, 240, 231, .80);

    font-size:1.05rem;
    line-height:1.75;
}

.profile-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin-top:28px;
}

.profile-button{
    min-height:46px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:0 24px;

    text-decoration:none;
}

.profile-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 330px;
    gap:28px;
    align-items:start;
}

.profile-main-column{
    display:grid;
    gap:24px;
}

.profile-side-column{
    display:grid;
    gap:20px;
}

.profile-section p:not(.section-label){
    color:rgba(246, 240, 231, .72);

    font-size:1rem;
    line-height:1.75;
}

.profile-section h2{
    margin:0 0 20px;

    color:var(--gold-light);

    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:2rem;
    font-weight:500;
}

.interest-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.interest-list span{
    padding:9px 14px;

    color:var(--gold-light);
    background:rgba(var(--gold-rgb), .07);

    border:1px solid rgba(var(--gold-rgb), .30);
    border-radius:999px;

    font-size:.82rem;
}

.profile-gallery{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:12px;

    margin-top:22px;
}

.profile-gallery a{
    display:block;
    overflow:hidden;

    aspect-ratio:1 / 1;

    border:1px solid rgba(var(--gold-rgb), .28);
    border-radius:9px;
}

.profile-gallery img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .25s ease,
        filter .25s ease;
}

.profile-gallery a:hover img{
    transform:scale(1.04);
    filter:brightness(1.08);
}

.profile-details h2{
    margin:0 0 18px;

    color:var(--gold-light);

    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.65rem;
    font-weight:500;
}

.profile-details dl{
    margin:0;
}

.profile-details dl div{
    display:grid;
    grid-template-columns:110px 1fr;
    gap:12px;

    padding:13px 0;

    border-bottom:1px solid rgba(255, 255, 255, .06);
}

.profile-details dl div:last-child{
    border-bottom:0;
}

.profile-details dt{
    color:rgba(246, 240, 231, .42);
    font-size:.78rem;
}

.profile-details dd{
    margin:0;

    color:rgba(246, 240, 231, .82);
    font-size:.84rem;
}

.profile-stat-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
}

.profile-stat-grid div{
    min-height:90px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:16px;

    background:rgba(var(--gold-rgb), .055);

    border:1px solid rgba(var(--gold-rgb), .18);
    border-radius:9px;
}

.profile-stat-grid strong{
    color:var(--gold-light);

    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.8rem;
    font-weight:500;
}

.profile-stat-grid span{
    margin-top:3px;

    color:rgba(246, 240, 231, .48);
    font-size:.74rem;
}

.profile-feed{
    margin-top:0;
}

/* ---------------------------------------------------------
   Profielfoto wijzigen
--------------------------------------------------------- */

.profile-hero-image{
    position:relative;
}

.profile-photo-edit-button{
    position:absolute;
    right:14px;
    bottom:14px;

    padding:10px 16px;

    background:rgba(0,0,0,.72);

    border:1px solid rgba(var(--gold-rgb),.55);
    border-radius:8px;

    color:var(--cream);

    font:inherit;
    font-size:.88rem;
    font-weight:600;

    cursor:pointer;

    backdrop-filter:blur(6px);

    transition:
        background .2s ease,
        border-color .2s ease;
}

.profile-photo-edit-button:hover{
    background:rgba(0,0,0,.88);
    border-color:var(--gold);
}
.profile-photo-form{
    position:absolute;
    right:14px;
    bottom:14px;
    z-index:3;
}

.profile-photo-form[hidden]{
    display:none;
}

.profile-photo-form input[type="file"]{
    display:none;
}

.profile-photo-actions{
    display:flex;
    gap:8px;
    align-items:center;
}

.profile-photo-actions .secondary-button,
.profile-photo-actions .gold-button{
    width:auto;
    min-width:110px;
    margin:0;
    padding:10px 16px;
}

/* ---------------------------------------------------------
   Profieltekst bewerken
--------------------------------------------------------- */

.profile-edit-form{
    margin-top:22px;
}

.profile-edit-form textarea{
    display:block;
    width:100%;
    min-height:130px;

    padding:16px 18px;

    box-sizing:border-box;
    resize:vertical;

    background:rgba(0,0,0,.22);

    border:1px solid rgba(var(--gold-rgb),.30);
    border-radius:10px;

    color:var(--cream);

    font:inherit;
    font-size:1rem;
    line-height:1.6;

    outline:none;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.profile-edit-form textarea:focus{
    border-color:rgba(var(--gold-rgb),.70);
    background:rgba(0,0,0,.30);
}

.profile-edit-form textarea::placeholder{
    color:rgba(246,240,231,.45);
}

.profile-edit-button{
    display:block;

    width:auto;
    min-width:130px;

    margin:14px 0 0 auto;
    padding:11px 22px;

    cursor:pointer;
}

.profile-text-view{
    margin-top:14px;
}

.profile-empty-text{
    color:rgba(246,240,231,.48);
    font-style:italic;
}

.profile-edit-toggle{
    width:auto;
    min-width:120px;

    margin-top:14px;
    padding:10px 18px;

    cursor:pointer;
}

.profile-edit-panel{
    margin-top:18px;
}

.profile-edit-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;

    margin-top:14px;
}

.profile-edit-actions .profile-edit-button,
.profile-edit-actions .profile-edit-cancel{
    width:auto;
    min-width:120px;
    margin:0;
}

/* ==================================================
   TOEGANKELIJKE FOCUS
================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
    outline:2px solid var(--gold-light);
    outline-offset:3px;
}


.attendance-members{
    scrollbar-width:thin;
    scrollbar-color:var(--gold-border-strong) rgba(255,255,255,.04);
}

/* Chrome, Edge en Safari */

.attendance-members::-webkit-scrollbar{
    width:7px;
}

.attendance-members::-webkit-scrollbar-track{
    background:rgba(255,255,255,.04);
    border-radius:10px;
}

.attendance-members::-webkit-scrollbar-thumb{
    background:linear-gradient(
        180deg,
        var(--gold-light),
        var(--gold)
    );

    border-radius:10px;
}

.attendance-members::-webkit-scrollbar-thumb:hover{
    background:var(--gold-light);
}

.language-button{

    position:fixed;
    right:30px;
    bottom:30px;
    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:175px;
    height:58px;
    padding:0 30px;

    border-radius:999px;

    text-decoration:none;
	
	font-family:'Cormorant Garamond', Georgia, serif;
 	font-size:23px;
    font-weight:600;
    letter-spacing:.5px;

    color:#fff;

    background:linear-gradient(180deg,#c20f18 0%,#8d0810 100%);

    border:3px solid #d8b15b;

    box-shadow:
        0 10px 25px rgba(0,0,0,.45),
        inset 0 2px 3px rgba(255,255,255,.25);

    transition:.25s;
}

.language-button:hover{

    transform:translateY(-4px) scale(1.05);

    background:linear-gradient(180deg,#d71822 0%,#a10d16 100%);

    box-shadow:
        0 18px 35px rgba(0,0,0,.55),
        0 0 18px rgba(216,177,91,.45);
}
/* Desktop header */

.header-account{
    display:flex;
}

.main-nav{
    display:flex;
}

.mobile-menu-toggle{
    display:none;
}

@keyframes languagePulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.04);
    }

    100%{
        transform:scale(1);
    }

}

.language-button{

    animation:languagePulse 2.5s infinite;
}

.hero-intro .profile-edit-toggle{
    margin-top:10px;
    min-width:110px;
}

.hero-intro-edit{
    margin-top:12px;
}

.gallery-upload-form{
    margin:0 0 22px;
}

.gallery-upload-button{
    width:auto;
    min-width:150px;
    padding:10px 18px
}
.profile-gallery-item{
    position:relative;
}

.profile-gallery-item > a{
    display:block;
    height:100%;
}

.gallery-delete-form{
    position:absolute;
    top:10px;
    right:10px;
    margin:0;
}

.gallery-delete-button{
    display:flex;
    align-items:center;
    justify-content:center;

    width:34px;
    height:34px;

    padding:0;

    border:1px solid rgba(255,255,255,.55);
    border-radius:50%;

    background:rgba(0,0,0,.72);
    color:#fff;

    font-size:1.3rem;
    line-height:1;

    cursor:pointer;
}

.gallery-delete-button:hover{
    background:rgba(150,20,30,.92);
}
.gallery-extra-photo{
    display:none;
}

.profile-gallery.show-all .gallery-extra-photo{
    display:block;
}

.gallery-show-more{
    margin-top:20px;
}

.member-post-create{
    margin-bottom:24px;
}

.member-post-form{
    margin-top:22px;
}

.member-post-form textarea{
    display:block;
    width:100%;
    min-height:130px;
    resize:vertical;
}

.member-post-form .profile-edit-actions{
    margin-top:14px;
}
.profile-post-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.profile-extra-post{
    display:none;
}

.profile-post-list.show-all .profile-extra-post{
    display:block;
}

.profile-post-show-more{
    margin-top:20px;
}

.post-like-form{
    margin:0;
    padding:0;
}

.post-like-button{
    font:inherit;
    cursor:pointer;
}

.post-like-button.is-liked{
    color:var(--gold);
    font-weight:600;
}

.member-post-photo-field{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:14px;
}

.member-post-photo-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:auto;
    cursor:pointer;
    line-height:1;
}

.member-post-file-name{
    color:rgba(246,240,231,.60);
    font-size:.86rem;
}
.post-card .post-content .post-image{
    margin-top:18px;
    width:100%;
    max-width:520px;
}

.post-card .post-content .post-image img{
    display:block;
    width:100%;
    height:auto;
    max-height:520px;
    object-fit:contain;

    border-radius:10px;
    border:1px solid rgba(var(--gold-rgb),.30);
}

	.post-image{
    margin-top:18px;
    width:520px;
    max-width:100%;
}

.post-image img{
    display:block;
    width:100%;
    height:auto;
    max-height:520px;
    object-fit:contain;

    border-radius:10px;
    border:1px solid rgba(var(--gold-rgb),.30);
}
.post-owner-actions{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:18px;
}

.post-owner-actions form{
    margin:0;
}

.post-owner-actions button{
    min-height:40px;
}
.post-edit-panel{
    margin-top:18px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.08);
}

.post-edit-form textarea{
    display:block;
    width:100%;
    min-height:120px;
    resize:vertical;
}

.post-edit-remove-image{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:14px;
    cursor:pointer;
}

.post-edit-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-top:16px;
}
.post-comments{
    margin-top:18px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.08);
}

.post-comment{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:12px 0;
}

.post-comment + .post-comment{
    border-top:1px solid rgba(255,255,255,.06);
}

.post-comment .small-avatar{
    overflow:hidden;
}

.post-comment .small-avatar img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.post-comment-content{
    flex:1;
}

.post-comment-content strong{
    display:block;
}

.post-comment-content small{
    display:block;
    margin-top:2px;
    color:#9f9792;
}

.post-comment-content p{
    margin:7px 0 0;
    line-height:1.5;
}

.post-comment-form{
    margin-top:20px;
}

.post-comment-form textarea{
    display:block;
    width:100%;
    min-height:85px;
    resize:vertical;
}

.post-comment-actions{
    display:flex;
    justify-content:flex-end;
    margin-top:10px;
}

.post-comment-owner-actions{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:8px;
}

.post-comment-owner-actions form{
    margin:0;
}

.post-comment-owner-actions button{
    padding:0;
    border:0;
    background:none;
    color:#9f9792;
    font:inherit;
    font-size:.82rem;
    cursor:pointer;
}

.post-comment-owner-actions button:hover{
    color:var(--gold);
}

.post-comment-edit-panel{
    margin-top:10px;
}

.post-comment-edit-form textarea{
    display:block;
    width:100%;
    min-height:80px;
    resize:vertical;
}

.post-comment-edit-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-top:10px;
}

.promo-intro{
    margin:14px 0 0;
    color:var(--muted);
    font-size:.88rem;
    line-height:1.5;
}

.promo-card{
    padding:18px;
}

.promo-card h3{
    margin:0 0 12px;
    text-align:center;
    line-height:1.25;
}

.promo-card img{
    display:block;
    width:100%;
    height:auto;
    border-radius:8px;
}

.promo-date{
    display:block;
    margin-top:12px;
    text-align:center;
    color:var(--gold);
    font-size:.82rem;
    font-weight:600;
}

.promo-intro{
    margin:12px 0 0;
    text-align:center;
    color:var(--text);
    font-size:.82rem;
    line-height:1.45;
}

.promo-event-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:38px;
    margin-top:14px;
    padding:8px 12px;
    text-align:center;
}
.login-error{
    margin:0 0 20px;
    padding:12px 14px;

    color:#ffe4e4;
    background:rgba(190,35,50,.18);

    border:1px solid rgba(225,80,95,.40);
    border-radius:8px;

    font-size:.9rem;
}
/* =========================================================
   ACCOUNT DROPDOWN
========================================================= */

.header-account{
    position:relative;
}

.account-toggle{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;
    margin:0;

    background:none;
    border:0;

    cursor:pointer;
}

.account-toggle .profile-mini-avatar{
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.account-toggle:hover .profile-mini-avatar,
.account-toggle[aria-expanded="true"] .profile-mini-avatar{
    transform:scale(1.04);
    box-shadow:0 0 0 2px rgba(var(--gold-rgb),.28);
}

.account-menu{
    position:absolute;
    top:calc(100% + 14px);
    right:0;

    z-index:1000;

    width:220px;
    padding:10px;

    background:
        linear-gradient(
            145deg,
            rgba(46,12,17,.98),
            rgba(15,7,8,.99)
        );

    border:1px solid rgba(var(--gold-rgb),.34);
    border-radius:12px;

    box-shadow:0 18px 45px rgba(0,0,0,.38);
}

.account-menu[hidden]{
    display:none;
}

.account-menu-user{
    padding:12px 14px 14px;

    color:var(--gold-light);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.account-menu-user strong{
    display:block;
    font-size:.95rem;
}

.account-menu a{
    display:block;

    padding:12px 14px;

    color:var(--cream);
    text-decoration:none;

    border-radius:7px;

    font-weight:600;
}

.account-menu a:hover{
    color:var(--gold-light);
    background:rgba(var(--gold-rgb),.08);
}
a.gold-button.guestlist-home-link{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    min-height:50px;

    padding:0 18px 3px;

    box-sizing:border-box;
    text-decoration:none;
}
.timeline-member-link{
    color:var(--cream);
    text-decoration:none;
    font-weight:600;
}

.timeline-member-link:hover{
    color:var(--gold-light);
}

/* ==================================================
   CLUBNIEUWS IN TIJDLIJN
================================================== */

.timeline-clubnews-content{
    display:grid;
    grid-template-columns:320px minmax(0,1fr);
    gap:34px;
    align-items:stretch;

    padding-top:24px;
    margin:0;
}

.timeline-clubnews-content .timeline-clubnews-image{
    width:320px;
    max-width:100%;

    margin:0;
    padding:0;

    border:0;
    background:none;
}

.timeline-clubnews-content .timeline-clubnews-image a{
    display:block;
}

.timeline-clubnews-content .timeline-clubnews-image img{
    display:block;
    width:100%;
    height:auto;
    max-height:none;

    border:0;
    border-radius:8px;
}

.timeline-clubnews-copy{
    display:flex;
    flex-direction:column;

    min-width:0;
    width:100%;

    margin:0;
    padding:0;
}

.timeline-clubnews-title{
    margin:0 0 14px;

    color:var(--gold-light);

    font-size:1.45rem;
    line-height:1.15;
}

.timeline-clubnews-copy p{
    width:100%;
    max-width:none;

    margin:0;

    line-height:1.65;
}

.timeline-clubnews-actions{
    display:flex;
    justify-content:flex-end;

    margin-top:auto;
    padding-top:24px;
}

.timeline-clubnews-actions .secondary-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:42px;

    text-decoration:none;
}
.timeline-clubnews-body{
    color:var(--muted);
    line-height:1.7;
    overflow:hidden;
}

.timeline-clubnews-body.is-open{
    max-height:none;
}

.timeline-clubnews-toggle{
    display:block;
    width:max-content;

    margin:12px 0 0;
    padding:0;

    color:var(--gold-light);
    background:none;
    border:0;

    font:inherit;
    font-weight:700;
    text-align:left;
    cursor:pointer;
}
.timeline-clubnews-toggle[hidden]{
    display:none !important;
}

.timeline-clubnews-toggle:hover{
    color:#fffaf0;
}
/* =========================================
   HOME - AANKOMENDE EVENTS RECHTERKOLOM
========================================= */

.upcoming-events-card{
    width:100%;
    padding:22px;
}

.upcoming-events-list{
    display:grid;
    gap:0;
}

.upcoming-event-item{
    width:100%;
    padding:20px 0;
    border-bottom:1px solid rgba(var(--gold-rgb), .18);
}

.upcoming-event-item:first-child{
    padding-top:0;
}

.upcoming-event-item:last-child{
    padding-bottom:0;
    border-bottom:0;
}

/* vaste nette ruimte voor iedere poster */
.upcoming-event-image{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:280px;

    overflow:hidden;

    background:rgba(0,0,0,.12);
    border-radius:8px;
}

/* volledige poster zichtbaar, dus NIET croppen */
.upcoming-event-image img{
    display:block;

    width:100%;
    height:280px;

    object-fit:contain;
    object-position:center;

    border-radius:8px;
}

/* eventnaam */
.upcoming-event-title{
    margin:14px 0 5px;

    color:var(--cream);
    font-size:.96rem;
    line-height:1.3;
}

/* dagen rechts */
.upcoming-event-item .promo-date{
    display:block;

    margin:0 0 12px;

    color:var(--gold-light);
    text-align:right;
    font-size:.78rem;
    font-weight:700;
}

/* aantal aangemeld */
.upcoming-event-item .attendance-count-text{
    margin:10px 0 14px;
    font-size:.86rem;
}

/* gastenlijstknop */
.upcoming-event-item .guestlist-home-link{
    width:100%;
    min-height:44px;
    margin:0;
}
.upcoming-event-title{
    text-align:center;
}

.upcoming-event-item .promo-date{
    text-align:center;
}

.upcoming-event-item .attendance-count-text{
    text-align:center;
}
.content-layout{
    grid-template-columns:minmax(0, 1fr) 300px;
    gap:28px;
}

.side-column{
    width:300px;
    min-width:0;
}
/* =========================================
   HOME - IN DE SPOTLIGHT
========================================= */

.spotlight-home-card{
    width:100%;
}

.spotlight-home-list{
    display:grid;
    gap:0;
}

.spotlight-home-item{
    width:100%;
    padding:20px 0;
    text-align:center;

    border-bottom:
        1px solid rgba(var(--gold-rgb), .18);
}

.spotlight-home-item:first-child{
    padding-top:0;
}

.spotlight-home-item:last-child{
    padding-bottom:0;
    border-bottom:0;
}

.spotlight-home-image{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:280px;

    overflow:hidden;

    background:rgba(0,0,0,.12);
    border-radius:8px;
}

.spotlight-home-image img{
    display:block;

    width:100%;
    height:280px;

    object-fit:contain;
    object-position:center;

    border-radius:8px;
}

.spotlight-home-title{
    margin:14px 0 12px;

    color:var(--cream);

    font-size:.96rem;
    line-height:1.3;

    text-align:center;
}

.spotlight-home-link{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    min-height:50px;
    margin:0;

    padding:0 18px;

    font-size:1rem;
    font-weight:700;

    border-radius:8px;
}
.birth-date-form{
    display:grid;
    grid-template-columns:70px minmax(90px, 1fr);
    gap:8px;

    width:100%;
    min-width:0;
}

.birth-date-form select{
    width:100% !important;
    min-width:0;
}

.birth-date-save{
    grid-column:1 / -1;

    width:100%;
    height:34px;
}

/* =========================================================
   PROFIEL - PERSOONLIJKE GEGEVENS BEWERKEN
========================================================= */

.personal-details-toggle{
    width:auto;
    margin-top:14px;
}

.personal-details-edit{
    margin-top:20px;
}

.personal-details-form{
    display:grid;
    gap:16px;

    width:100%;
    max-width:760px;
}

.personal-person-card{
    padding:18px 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(0,0,0,.12)
        );

    border:1px solid rgba(var(--gold-rgb),.28);
    border-radius:12px;
}

.personal-person-card > strong{
    display:block;

    margin:0 0 15px;

    color:var(--gold-light);

    font-size:.78rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.personal-details-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) 120px;
    gap:14px;
}

.personal-details-row label{
    display:grid;
    gap:7px;
}

.personal-details-row label span,
.personal-field-label{
    color:rgba(246,240,231,.55);

    font-size:.73rem;
    font-weight:600;
    letter-spacing:.04em;
}

.personal-details-row input,
.personal-birthday-row select{
    width:100%;
    min-width:0;
    height:42px;

    padding:0 12px;

    color:var(--cream);
    background:rgba(8,2,3,.55);

    border:1px solid rgba(var(--gold-rgb),.34);
    border-radius:8px;

    font:inherit;
    font-size:.9rem;

    outline:none;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.personal-details-row input:hover,
.personal-birthday-row select:hover{
    border-color:rgba(var(--gold-rgb),.58);
}

.personal-details-row input:focus,
.personal-birthday-row select:focus{
    background:rgba(8,2,3,.76);

    border-color:rgba(var(--gold-rgb),.85);

    box-shadow:
        0 0 0 3px rgba(var(--gold-rgb),.08);
}


/* Verjaardag */

.personal-birthday-row{
    display:grid;
    grid-template-columns:90px 82px minmax(135px,180px);
    align-items:center;
    gap:10px;

    margin-top:14px;
}

.personal-birthday-row select{
    appearance:none;
    -webkit-appearance:none;

    cursor:pointer;

    background-color:rgba(8,2,3,.55);

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--gold-light) 50%
        ),
        linear-gradient(
            135deg,
            var(--gold-light) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 14px) 18px,
        calc(100% - 10px) 18px;

    background-size:4px 4px;
    background-repeat:no-repeat;

    padding-right:30px;
}

.personal-birthday-row select option{
    color:var(--cream);
    background:#19090b;
}


/* Opslaan / annuleren */

.personal-details-form .profile-edit-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;

    margin-top:2px;
}

.personal-details-form .profile-edit-actions button{
    width:auto;
    min-width:125px;
    margin:0;
}


/* Mobiel */

@media(max-width:650px){

    .personal-person-card{
        padding:16px;
    }

    .personal-details-row{
        grid-template-columns:1fr;
    }

    .personal-birthday-row{
        grid-template-columns:80px 1fr;
    }

    .personal-field-label{
        grid-column:1 / -1;
    }

    .personal-details-form .profile-edit-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .personal-details-form .profile-edit-actions button{
        width:100%;
        min-width:0;
	}
}

.main-nav a{
    position:relative;
}

.nav-unread-dot{
    position:absolute;

    top:21px;
    right:-13px;

    width:10px;
    height:10px;

    margin:0;

    background:var(--gold-light);
    border-radius:50%;
}
	
	/* =========================================================
   SPOTLIGHT MODAL
   ========================================================= */

.spotlight-modal{
    position:fixed;
    inset:0;
    z-index:9999;

    display:none;
    align-items:center;
    justify-content:center;

    padding:30px;

    background:rgba(0,0,0,.78);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);
}

.spotlight-modal.is-open{
    display:flex;
}

.spotlight-modal-dialog{
    position:relative;

    width:min(980px, 94vw);
    max-height:90vh;
    overflow-y:auto;

    padding:34px;

    background:linear-gradient(
        145deg,
        rgba(47,14,20,.99),
        rgba(15,7,8,.99)
    );

    border:1px solid rgba(var(--gold-rgb), .35);
    border-radius:16px;

    box-shadow:0 30px 80px rgba(0,0,0,.55);
}

.spotlight-modal-dialog h2{
    margin:0 45px 24px 0;

    color:var(--gold-light);

    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:2.4rem;
    font-weight:500;
    line-height:1.15;
}

.spotlight-modal-content{
    color:rgba(246,240,231,.82);
    font-size:1rem;
    line-height:1.75;
}

.spotlight-modal-close{
    position:absolute;
    top:16px;
    right:18px;

    padding:0;
    border:0;
    background:none;

    color:var(--gold-light);

    font-size:2rem;
    line-height:1;

    cursor:pointer;
}

.spotlight-modal-close:hover{
    color:#fff;
}

body.modal-open{
    overflow:hidden;
}

@media(max-width:700px){

    .spotlight-modal{
        padding:18px;
    }

    .spotlight-modal-dialog{
        width:100%;
        max-height:88vh;
        padding:26px 22px;
    }

    .spotlight-modal-dialog h2{
        font-size:1.9rem;
    }
	}
	/* =========================================================
   FOOTER
   ========================================================= */

.site-footer{
    margin-top:50px;
    padding:26px 20px 24px;

    border-top:1px solid rgba(183,154,88,.18);

    text-align:center;
}

.site-footer-inner{
    width:min(1180px,100%);
    margin:0 auto;
}

.site-footer-main{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;

    color:rgba(255,255,255,.62);

    font-size:13px;
    line-height:1.6;
}

.site-footer-main a{
    color:#b79a58;
    text-decoration:none;

    transition:color .2s ease;
}

.site-footer-main a:hover{
    color:#d9bd73;
    text-decoration:underline;
}

.footer-separator{
    color:rgba(183,154,88,.45);
}

.site-footer-credit{
    margin-top:7px;

    color:rgba(255,255,255,.32);

    font-size:10px;
    letter-spacing:.04em;
    text-transform:lowercase;
}
.post-like-names{
    margin-top:8px;
    font-size:12px;
    line-height:1.5;
    color:rgba(255,255,255,.55);
}

.post-like-names a{
    color:var(--gold);
    text-decoration:none;
}

.post-like-names a:hover{
    text-decoration:underline;
}
/* ---------------------------------------------------------
   Namen bij likes
--------------------------------------------------------- */

.post-like-names{
    margin-top:8px;

    color:rgba(246, 240, 231, .48);
    font-size:.78rem;
    line-height:1.5;
}

.post-like-names span{
    margin-right:4px;
}

.post-like-names a{
    color:var(--gold-light);
    text-decoration:none;
}

.post-like-names a:hover{
    color:#fffaf0;
    text-decoration:underline;
    text-underline-offset:3px;
}

/* ---------------------------------------------------------
   Likes - compacte lijst
--------------------------------------------------------- */

.post-like-summary{
    position:relative;
    display:inline-block;

    margin-top:8px;

    color:rgba(246,240,231,.48);
    font-size:.78rem;
}

.post-like-summary summary{
    display:inline-block;

    list-style:none;
    cursor:pointer;
    user-select:none;
}

.post-like-summary summary::-webkit-details-marker{
    display:none;
}

.post-like-summary summary strong{
    color:var(--gold-light);
    font-weight:600;
}

.post-like-popup{
    position:absolute;
    left:0;
    bottom:calc(100% + 8px);
    z-index:50;

    display:none;

    min-width:190px;
    max-width:280px;
    max-height:260px;
    overflow-y:auto;

    padding:10px 12px;

    background:rgba(18,14,14,.97);
    border:1px solid rgba(var(--gold-rgb),.28);
    border-radius:9px;

    box-shadow:0 12px 30px rgba(0,0,0,.45);
}

.post-like-summary:hover .post-like-popup,
.post-like-summary[open] .post-like-popup{
    display:block;
}

.post-like-popup a{
    display:block;

    padding:3px 0;

    color:#fffaf0;
    font-size:.78rem;
    line-height:1.35;
    text-decoration:none;
}

.post-like-popup a:hover{
    color:var(--gold-light);
}
/* Moderator uitloggen */
.moderator-logout{
    color:#d8b15b !important;
    text-decoration:none !important;
}

.moderator-logout:hover{
    color:#f3dda0 !important;
}

/* Gastenlijsten - maximale hoogte + scroll */
.guestlist-member-list{
    max-height:200px;
    overflow-y:auto;
    padding-right:8px;
}

/* Mooie scrollbar gastenlijst */
.guestlist-member-list{
    scrollbar-width:thin;
    scrollbar-color:#b8923f rgba(255,255,255,.05);
}

.guestlist-member-list::-webkit-scrollbar{
    width:7px;
}

.guestlist-member-list::-webkit-scrollbar-track{
    background:rgba(255,255,255,.05);
    border-radius:10px;
}

.guestlist-member-list::-webkit-scrollbar-thumb{
    background:#b8923f;
    border-radius:10px;
}

.guestlist-member-list::-webkit-scrollbar-thumb:hover{
    background:#d8b15b;
}
/* Moderator titel mobiel */
.moderator-title-mobile{
    display:none;
}
/* Profieltype - nette kleine radiobuttons */
.personal-details-form input[type="radio"]{
    width:18px;
    height:18px;
    margin:0 8px 0 0;
    accent-color:#d8b15b;
    vertical-align:middle;
}

.personal-details-form label:has(input[type="radio"]){
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:6px;
    cursor:pointer;
}


/* ==================================================
   RESPONSIVE
================================================== */

/* -----------------------------------------------
   TABLET – maximaal 1100px
------------------------------------------------ */

/* Memberbericht met foto - desktop */
@media(min-width:901px){

    .post-card:not(.official-post) .post-content:has(.post-image){
        display:grid;
        grid-template-columns:minmax(0, 520px) minmax(0, 1fr);
        grid-template-areas:"photo text";
        gap:32px;
        align-items:start;
    }

    .post-card:not(.official-post) .post-content:has(.post-image) > p{
        grid-area:text;
        margin-top:0;
    }

    .post-card:not(.official-post) .post-content:has(.post-image) .post-image{
        grid-area:photo;
        margin-top:0;
    }
}

@media (max-width:1100px){

    .main-nav{
        gap:18px;
    }

    .content-layout{
        grid-template-columns:minmax(0, 1fr) 300px;
    }

    .summary-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}
/* ==================================================
   EVENEMENTAANMELDING EN GASTENLIJST
   Voeg dit onderaan assets/css/style.css toe.
================================================== */

.event-attendance-card{
    text-align:center;
}

.attendance-box{
    margin-top:22px;
    padding-top:22px;

    border-top:1px solid rgba(var(--gold-rgb), .18);
}

.attendance-box h2{
    margin:0;

    color:var(--gold-light);

    font-family:'Cormorant Garamond', Georgia, serif;
    font-size:1.8rem;
    font-weight:500;
}

.attendance-count-text{
    margin:10px 0 18px;

    color:rgba(246, 240, 231, .66);
    font-size:.88rem;
    line-height:1.5;
}

.attendance-count-text strong{
    color:var(--gold-light);
    font-size:1rem;
}

.attendance-button{
    width:100%;
}

.attendance-button.is-attending{
    color:#fffaf0;

    background:rgba(var(--gold-rgb), .12);
    border-color:var(--gold-light);

    box-shadow:
        inset 0 0 0 1px rgba(var(--gold-rgb), .08),
        0 8px 20px rgba(0,0,0,.20);
}

.attendance-list-toggle{
    display:inline-block;

    margin-top:18px;
    margin-bottom:8px;
    padding:0;

    color:var(--gold-light);
    background:none;
    border:0;

    font-size:.82rem;
    text-decoration:underline;
    text-underline-offset:4px;

    cursor:pointer;

    transition:color .2s ease;
}

.attendance-list-toggle:hover{
    color:#fffaf0;
}

.attendance-list{
    margin-top:18px;
    padding-top:8px;

    text-align:left;

    border-top:1px solid rgba(255,255,255,.06);
}

.attendance-list[hidden]{
    display:none;
}

.attendance-members{
    max-height:320px;
    overflow-y:auto;
}

.attendance-note{
    margin:15px 0 0;

    color:rgba(246,240,231,.38);
    font-size:.7rem;
    line-height:1.45;
    text-align:center;
}


/* -----------------------------------------------
   TABLET – maximaal 900px
------------------------------------------------ */

@media (max-width:900px){

    /* Inlogpagina */

    .login-page{
        justify-content:center;
        align-items:center;

        padding:30px 22px;

        background-position:center center;
    }

    .login-panel{
        width:min(100%, 620px);
        margin-left:0;
    }

    /* Homepage */

    .content-layout{
        grid-template-columns:1fr;
    }

    .side-column{
        grid-template-columns:1fr;
    }

    .birthday-card{
        grid-column:auto;
    }

    /* Profielpagina */

    .profile-hero{
        grid-template-columns:1fr;
    }

    .profile-layout{
        grid-template-columns:1fr;
    }

    .profile-side-column{
        grid-template-columns:1fr;
    }

    .profile-side-column .promo-card{
        grid-column:auto;
    } 
	.featured-side {
        min-height: 320px;
    }
	/*
    De inhoud van de rechterkolom wordt onderdeel
    van de hoofd-grid, zodat we de kaarten kunnen ordenen.
    */

    .content-layout .side-column{
        display:contents;
    }


    /*
    Eerst de sociale blokken
    */

    .online-members-card,
    .new-members-card,
    .birthday-card{
        order:1;
    }


    /*
    Daarna de tijdlijn
    */

    .content-layout .main-column{
        order:2;
    }


    /*
    Events en spotlight pas onder de tijdlijn
    */

    .upcoming-events-card,
    .spotlight-home-card{
        order:3;
    }
	
	.profile-layout{
        display:flex;
        flex-direction:column;
    }

    .profile-side-column{
        display:contents;
    }

    /* In het kort */
    .profile-details{
        order:1;
    }

    /* Activiteit */
    .profile-side-column > .side-card:not(.profile-details):not(.promo-card){
        order:2;
    }

    /* Hoofdprofiel */
    .profile-main-column{
        order:3;
    }

    /* Events pas daarna */
    .profile-side-column > .promo-card{
        order:4;
    }
}
/* -----------------------------------------------
   KLEINE TABLET – maximaal 850px
------------------------------------------------ */

@media (max-width:850px){

    .lounge-header{
        position:relative;
    }

    .header-inner{
        width:min(100% - 30px, 1440px);
        min-height:auto;

        display:grid;
        grid-template-columns:1fr auto;
        align-items:center;
        gap:12px;

        padding:14px 0;
    }

    .header-brand{
        grid-column:1;
        grid-row:1;

        display:flex;
        align-items:center;
        gap:12px;
    }

    .header-logo{
        width:68px;
    }

    .header-title{
        font-size:1.65rem;
        line-height:1;
        white-space:nowrap;
    }

    .header-account{
        display:none;
    }

    .mobile-menu-toggle{
        display:flex;

        grid-column:2;
        grid-row:1;

        justify-self:end;

        margin:0;
    }

    .main-nav{
        grid-column:1 / -1;

        display:none;
        width:100%;

        margin:10px 0 0;
        padding:10px 0 0;

        border-top:1px solid rgba(255,255,255,.07);
    }

    .main-nav.is-open{
        display:flex;
        flex-direction:column;
        align-items:stretch;
    }

    .main-nav.is-open a{
        width:100%;

        padding:13px 0;

        font-size:.95rem;
        white-space:nowrap;

        border-bottom:1px solid rgba(255,255,255,.06);
    }

    .main-nav.is-open a:last-child{
        border-bottom:0;
    }

    .mobile-menu-toggle.is-open span:nth-child(1){
        transform:translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2){
        opacity:0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3){
        transform:translateY(-7px) rotate(-45deg);
    }
	    .main-nav .mobile-account-menu{
        display:block !important;
    }

    .post-info{
        flex:1;
    }
	
	.nav-unread-dot{
    position:static;

    display:inline-block;

    width:10px;
    height:10px;

    margin-left:8px;

    vertical-align:middle;
}
	
}
/* =========================================================
   MOBIEL ACCOUNTMENU
========================================================= */

.mobile-account-menu{
    display:none;
}
	

@media(max-width:850px){

    .main-nav .mobile-account-menu{
        display:block;
        width:100%;

        margin:20px 0 0;
        padding:0;

        border-top:1px solid rgba(255,255,255,.10);
    }

    .mobile-account-name{
        padding:28px 0;

        color:var(--gold-light);
        font-weight:700;
        font-size:1rem;

        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .main-nav .mobile-account-menu a{
        display:block;
        width:100%;

        margin:0;
        padding:28px 0;

        color:var(--cream);
        text-decoration:none;
        text-align:left;
        font-weight:600;

        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .main-nav .mobile-account-menu a:last-child{
        border-bottom:0;
    }
	.post-card .post-header h3{
    font-size:1.25rem;
    line-height:1.15;
    margin:0;
}
	.timeline-clubnews-content{
        grid-template-columns:1fr;
        gap:20px;
    }

    .timeline-clubnews-content .timeline-clubnews-image{
        width:100%;
        max-width:340px;
    }

    .timeline-clubnews-actions{
        justify-content:flex-start;
        margin-top:18px;
        padding-top:0;
    }

    .timeline-clubnews-title{
        font-size:1.2rem;
    }
	/* Upcoming events + Uitgelicht groter op mobiel */
.upcoming-events-card img,
.featured-card img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
}
	 /* Upcoming events + In de spotlight groter op mobiel */
    .upcoming-event-image,
    .spotlight-home-image {
        width: 100%;
        max-width: none;
        display: block;
    }

    .upcoming-event-image img,
    .spotlight-home-image img {
        width: 100%;
        max-width: none;
        height: auto;
        display: block;
    }
	.upcoming-event-image,
    .spotlight-home-image {
        width: 100%;
        max-width: none;
        height: auto;
        display: block;
    }

    .upcoming-event-image img,
    .spotlight-home-image img {
        width: 100%;
        max-width: none;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block;
    }
	 .moderator-title-desktop{
        display:none;
    }

    .moderator-title-mobile{
        display:inline;
    }

}
/* -----------------------------------------------
   MOBIEL – maximaal 600px
------------------------------------------------ */

@media (max-width:600px){

    /* =========================
       INLOGPAGINA
    ========================= */

    .login-panel{
    width:100%;
    max-width:520px;

    margin-left:0;
    padding:22px 18px;

    border-radius:16px;
}

.login-logo{
    width:145px;
    max-width:50%;

    margin:0 auto 12px;
}

.login-panel h1{
    font-size:2.35rem;
    line-height:1;
    letter-spacing:.02em;

    white-space:normal;
}

.title-divider{
    margin:12px auto 16px;
}

.tagline{
    max-width:320px;

    margin:0 auto 18px;

    font-size:1rem;
    line-height:1.35;
}

.form-group{
    margin-bottom:14px;
}

.form-group label{
    margin-bottom:6px;
}

.form-group input{
    min-height:50px;
    padding:0 14px;
}

.form-options{
    gap:10px;
    margin:2px 0 18px;
}

.login-button{
    min-height:50px;
    font-size:1.25rem;
}

.members-only{
    margin-top:18px;
}
    /* =========================
       HEADER EN MENU
    ========================= */

    .header-inner{
    width:100%;
    padding:18px 18px;
}

    .header-logo{
        width:62px;
    }

    .header-title{
        font-size:1.75rem;
         font-weight:500;
    letter-spacing:.02em;
    }

    .main-nav.is-open a{
    font-size:.98rem;
    font-weight:600;
}

    /* =========================
       HOMEPAGE
    ========================= */

    .content-layout,
.main-column,
.side-column{
    width:100%;
    min-width:0;
}

.content-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr);
}

.side-column{
    display:grid;
    grid-template-columns:minmax(0, 1fr);
}

.content-card,
.post-card,
.side-card{
    width:100%;
    max-width:100%;
    min-width:0;
}
	.lounge-main{
        width:min(100% - 24px, 1380px);
        padding:34px 0 55px;
    }

    .welcome-section{
        align-items:flex-start;
        flex-direction:column;
        gap:22px;
    }

    .welcome-section h1{
        font-size:2.75rem;
    }

    .profile-link{
        padding:10px 18px;
    }

    .summary-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:12px;
    }

    .summary-card{
        min-height:112px;
        padding:19px;
    }

    .summary-card strong{
        font-size:1.9rem;
    }

    .content-card,
    .post-card,
    .side-card{
        border-radius:11px;
    }

    .content-card,
    .post-card{
        padding:20px;
    }

    .post-actions{
        align-items:stretch;
        flex-direction:column;
    }

    .gold-button,
    .secondary-button{
        width:100%;
    }

    .event-preview{
        align-items:flex-start;
        flex-direction:column;
    }

    .event-gallery,
    .post-gallery,
    .side-column{
        grid-template-columns:1fr;
    }

    .birthday-card{
        grid-column:auto;
    }

    .event-image img,
    .post-gallery img{
        width:100%;
        height:auto;
        max-height:none;

        object-fit:contain;
    }
    .section-heading{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
}

.section-heading h2{
    font-size:2.15rem;
    line-height:1.05;
}

.section-heading a{
    font-size:1.08rem;
    font-weight:600;
    color:var(--gold);
}
    .section-heading a:hover{
    color:var(--gold-light);
}

.post-header{
    flex-wrap:wrap;
}

.official-label{
    margin-left:72px;
    margin-top:6px;
}

.post-content p{
    font-size:.95rem;
    line-height:1.55;

}
    .post-info h3{
        font-size:2.1rem;
    }

    .post-info p{
        font-size:1.08rem;
    }
    .post-title{
    flex-wrap:wrap;
}

.post-title .official-label{
    margin-top:6px;
}
    .post-info p{
    line-height:1.45;
}

.post-info p span:last-child{
    color:#9f9792;
    font-size:.95em;
}
	
    .lightbox{
    padding:65px 12px 20px;
}

.lightbox-image{
    max-height:calc(100svh - 90px);
    border-radius:7px;
}

.lightbox-close{
    top:12px;
    right:12px;

    width:42px;
    height:42px;

    font-size:1.7rem;
}

.lightbox-nav{
    top:auto;
    bottom:14px;

    width:44px;
    height:44px;

    border-radius:50%;

    transform:none;
}

.lightbox-prev{
    left:calc(50% - 55px);
}

.lightbox-next{
    right:calc(50% - 55px);
}
    .profile-page{
    padding-top:24px;
}

.profile-hero{
    grid-template-columns:1fr;
    gap:24px;

    padding:20px;
}

.profile-hero-image{
    aspect-ratio:4 / 3;
}

.profile-name-row{
    flex-direction:column;
    gap:14px;
}

.profile-hero-content h1{
    font-size:2.8rem;
}

.profile-actions{
    align-items:stretch;
    flex-direction:column;
}

.profile-button{
    width:100%;
}

.profile-gallery{
    grid-template-columns:repeat(2, minmax(0, 1fr));
}

.profile-side-column{
    grid-template-columns:1fr;
}

.profile-side-column .promo-card{
    grid-column:auto;
}

.profile-details dl div{
    grid-template-columns:95px 1fr;
}

.attendance-box h2{
    font-size:1.7rem;
}
  .language-floating-button {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }

     .language-button{
        width:auto !important;
        min-width:0 !important;
        height:44px !important;

        padding:0 18px !important;

        right:12px !important;
        bottom:12px !important;

        font-size:.78rem !important;
    }

	#guestlist-weekend,
.event-guestlist-detail{
    scroll-margin-top:100px;
}

	.account-menu{
        position:fixed;

        top:76px;
        right:12px;

        width:min(260px, calc(100vw - 24px));
    }
	.header-account{
        position:relative;
        z-index:1100;
    }

    .account-menu{
        position:fixed;

        top:76px;
        right:12px;

        z-index:9999;

        width:min(
            260px,
            calc(100vw - 24px)
        );
    }
	.mobile-account-menu{
    display:none;
}
.site-footer{
        margin-top:35px;
        padding:22px 15px 20px;
    }

    .site-footer-main{
        font-size:12px;
    }

    .site-footer-credit{
        font-size:9px;
    }

}


@media (prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
    }    
	.featured-side {
        min-height: 260px;
    }
	
}
	
	/* ACCOUNTMENU - definitieve desktop/mobiel verdeling */

.mobile-account-menu{
    display:none !important;
}

@media (max-width:850px){

    .main-nav .mobile-account-menu{
        display:block !important;
    }

}