@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=VT323&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Gluten:wght@100..900&family=Grenze+Gotisch:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=VT323&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Gluten:wght@100..900&family=Grenze+Gotisch:wght@100..900&family=Griffy&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=VT323&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Are+You+Serious&family=Gluten:wght@100..900&family=Grenze+Gotisch:wght@100..900&family=Griffy&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=VT323&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
        scroll-behavior: smooth;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 60px;
    background: white;
    border-bottom: 2px solid #cccccc;
    z-index: 1000;
}

#navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

#navbar li a {
    text-decoration: none;
    color: lightpink;
    font-family: "Gluten", sans-serif;
    font-size: 38px;
    letter-spacing: 1px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

#navbar li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: -2px;
    left: 0;
    background-color: lightpink;
    transition: width 0.3s ease;
    border-radius: 4px;
}

#navbar li a:hover::after {
    width: 100%;
}

body {
    font-family: 'Grenze Gotisch';
    font-size: 22px;
    background-color: #ffcfe5;
    transition: filter 0.3s ease;
    position: relative;
    margin: 0;
}

.page {
    margin: 0 auto;
    text-align: center;
    padding: 50px 30px 60px 30px;
    max-width: 1200px
}

.page-title {
    font-family: "Griffy";
    text-align: center;
    font-size: 120px;
    font-weight: bold;
    margin-bottom: 40px;
    color: white;
    text-shadow: 2px 2px 5px #201a1d;
    letter-spacing: 2px;
}

#two-column {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

#left {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    text-align: left;
    position: relative;
    z-index: 1;
}

#right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    padding-left: 0;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    transition: filter 0.3s ease;
}

.gallery-item {
    background-color: white;
    border-radius: 10px;
    padding-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px #201a1d;
}

summary {
    list-style: none;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

.caption {
    background: #a45d7d;
    color: white;
    font-size: 26px;
    font-weight: bold;
    padding: 20px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    border-radius: 10px 10px 0 0;
}

.caption:hover {
    background: #201a1d;
    transform: translateY(-2px);
}

.content {
    display: none;
    gap: 20px;
    padding: 20px;
}

.gallery-item[open] .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px #201a1d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px #201a1d;
}

.normcontain {
    padding-bottom: 20px;
    padding-right: 20px;
} 

.boxbox {
border: solid;
border-radius: 24px;
border-color: white;

}

#PFP {
clip-path: circle(50%);
}

.popup-text {
    background: #ffcfe5;
    border: 2px solid #201a1d;
    padding: 20px;
    border-radius: 10px;
    color: #201a1d;
    box-shadow: 0 4px 10px #76626c;
    animation: fadeIn 0.3s ease;
    font-size: 22px;
}

#ul-a {
    list-style: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lightbox-toggle {
    display: none;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.3s ease;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.lightbox .close {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}


#lightbox1:checked ~ #lb1,
#lightbox2:checked ~ #lb2,
#lightbox3:checked ~ #lb3,
#lightbox4:checked ~ #lb4,
#lightbox5:checked ~ #lb5,
#lightbox6:checked ~ #lb6,
#lightbox7:checked ~ #lb7,
#lightbox8:checked ~ #lb8,
#lightbox9:checked ~ #lb9,
#lightbox10:checked ~ #lb10,
#lightbox11:checked ~ #lb11,
#lightbox12:checked ~ #lb12 {
    display: flex;
    opacity: 1;
}


#lightbox1:checked ~ .gallery,
#lightbox2:checked ~ .gallery,
#lightbox3:checked ~ .gallery,
#lightbox4:checked ~ .gallery,
#lightbox5:checked ~ .gallery,
#lightbox6:checked ~ .gallery,
#lightbox7:checked ~ .gallery,
#lightbox8:checked ~ .gallery,
#lightbox9:checked ~ .gallery,
#lightbox10:checked ~ .gallery,
#lightbox11:checked ~ .gallery,
#lightbox12:checked ~ .gallery  {
    filter: blur(5px);
}


#lightbox1:checked ~ body,
#lightbox2:checked ~ body,
#lightbox3:checked ~ body,
#lightbox4:checked ~ body,
#lightbox5:checked ~ body,
#lightbox6:checked ~ body,
#lightbox7:checked ~ body,
#lightbox8:checked ~ body,
#lightbox9:checked ~ body,
#lightbox10:checked ~ body,
#lightbox11:checked ~ body,
#lightbox12:checked {
    filter: blur(5px);
}


@media (max-width: 768px) {
    .gallery-item[open] .content {
        grid-template-columns: 1fr;
    }
    .caption {
        font-size: 22px;
    }
    .popup-text {
        font-size: 18px;
    }
}

