body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #FAFAF8;
}

/* Back Button */
.back-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.back-btn:hover {
    background: #0056b3;
}

.gallery-page {
    max-width: 1400px;
    margin: auto;
    padding: 40px 20px 80px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 10px;
}

.gallery-header p {
    color: #6B6860;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: auto;
}

.gallery img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 18px;
    display: block;
    cursor: pointer;
    transition: .4s;
}

.gallery img:hover {
    transform: scale(1.02);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}