*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    color:white;
    font-family: 'Titillium Web', sans-serif;
}
html,body{
    overflow: hidden;
    background-color: #000000;
}
main{
    position: fixed;
    top:0;
    left: 0;
    width:100%;
    height: 100%;
    overflow: scroll;
}
.header{
    position: fixed;
    width:100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding :0 2vw ;
    z-index: 10;
    background-color: #161616;
    opacity: 1;
}
.container{
    position: relative;
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 100px 2vw;
}
.column{
    flex:1;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.post{
    position: relative;
    overflow: hidden;
    width:100%;
}

img{
    width: 100%;
    border-radius: 5px;
    height: 100%;
}

.overlay{
    position: absolute;
    top:0;
    left: 0;
    width:100%;
    height:100%;
    background:#161616;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity:0;
    transition:0.5s;
    border-radius: 5px;
}

.post:hover .overlay{
    opacity: 0.5;
    cursor: pointer;
}

/* Lightbox */
.hidden{display:none;}
.lightbox.hidden{display:none !important;}
.lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 4vw;
}
.lightbox-content{
    position: relative;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    background: #111;
    border-radius: 8px;
    padding: 20px;
}
.lightbox-close{
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}
.lightbox-close:focus{outline: 2px solid #888;}
.lightbox-images{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.lightbox-images img{
    width: 100%;
    height: auto;
    border-radius: 6px;
    background: #222;
}
.lightbox-text{
    margin-top: 16px;
    white-space: pre-wrap;
    line-height: 1.4;
    color: #ddd;
}

/* Zoom overlay inside the lightbox */
.zoom-viewer.hidden{display:none !important;}
.zoom-viewer{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}
.zoom-stage{
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.zoom-stage img, .zoom-stage video{
    max-width: 92vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
}
.zoom-nav{
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.zoom-btn{
    pointer-events: all;
    background: rgba(0,0,0,0.6);
    border: 1px solid #666;
    color: #fff;
    font-size: 24px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}
.zoom-close{
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    border: 1px solid #666;
    color: #fff;
    font-size: 28px;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
}