/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #f7f7f7;
    color: #333;
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    background-color: #111;
    color: white;
    height: 100vh;
    padding: 30px 20px;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
}

.sidebar h2,
.sidebar h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    font-size: 16px;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #d4af37;
}

/* MAIN CONTENT AREA */
.content {
    margin-left: 260px;
    padding: 40px;
    width: calc(100% - 260px);
}

/* PAGE TITLES */
.page-title h1 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-size: 40px;
    user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

/* FADE-IN ANIMATION */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* RESTORED TOP HEADER */
.site-header {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    width: 100%;
}

.site-title {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

.site-subtitle {
    font-size: 16px;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* PERFECTLY CENTERED FOOTER */
.site-footer {
    text-align: center;
    width: 100%;
    padding: 25px 0;
    margin-top: 50px;
    font-size: 14px;
    color: #555;
    font-family: 'Playfair Display', serif;
}
