/* --- Photography Premium CSS --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&family=Inter:wght@300;400;600&display=swap');

body { margin: 0; padding: 0; background: #000; color: #fff; font-family: 'Inter', sans-serif; display: flex; }
a { color: #888; text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; }

/* Sidebar */
.sidebar {
    width: 280px; height: 100vh; position: fixed; left: 0; top: 0;
    background: #0a0a0a; border-right: 1px solid #222; padding: 3rem 2rem;
    display: flex; flex-direction: column; justify-content: space-between; box-sizing: border-box;
}
.sidebar-logo { font-family: 'Space Mono', monospace; font-size: 1.5rem; font-weight: bold; letter-spacing: -1px; margin-bottom: 3rem; }
.sidebar-nav { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-nav a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
.sidebar-footer { font-size: 0.75rem; color: #555; }

/* Main Content */
.main-content { margin-left: 280px; padding: 2rem; width: calc(100% - 280px); box-sizing: border-box; }

/* Gallery */
.gallery {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-auto-rows: 300px; gap: 1rem;
}
.gallery-item {
    width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.5s, transform 0.5s; cursor: pointer;
}
.gallery-item:hover { filter: grayscale(0%); transform: scale(1.02); z-index: 10; position: relative; }

/* Page Content */
.page { max-width: 600px; margin: 5rem auto; text-align: center; }
.page h1 { font-family: 'Space Mono', monospace; font-size: 2.5rem; margin-bottom: 2rem; }
.page p { color: #aaa; line-height: 1.8; margin-bottom: 1.5rem; }

@media (max-width: 768px) {
    body { flex-direction: column; }
    .sidebar { width: 100%; height: auto; position: static; border-right: none; border-bottom: 1px solid #222; padding: 2rem; }
    .main-content { margin-left: 0; width: 100%; }
}