* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #222 0%, #000 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Studio Container */
.studio {
    text-align: center;
    padding: 40px;
}

.studio h1 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
}

.subtitle {
    opacity: 0.7;
    margin-bottom: 40px;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Photo Card */
.photo-card {
    width: 260px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 40px rgba(255,255,255,0.05),
        inset 0 0 30px rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

/* Spotlight Effect */
.photo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
        rgba(255,255,255,0.25),
        transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.photo-card:hover::before {
    opacity: 1;
}

.photo-card:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 60px rgba(255,255,255,0.25),
        0 0 120px rgba(255,255,255,0.15);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(255,255,255,0.3);
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
}
