/* --- GLOBAL RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Lekton', monospace;
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 3px;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
}

/* --- COLLECTION DETAIL TEXT --- */
#collection-header {
    padding: 12rem 2rem 4rem 2rem; 
    max-width: 900px;             
    margin: 0 auto;               
}

#collection-header h1 {
    font-size: 3rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

#collection-header p {
    font-size: 0.95rem;
    color: #888;
    max-width: 700px;             
}

.back-btn {
    position: absolute;
    top: 10rem;
    left: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Lekton';
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.back-btn:hover {
    opacity: 1;
}

/* --- IMAGE SPREAD / MASONRY --- */
.spread-container {
    padding: 14rem 2rem 5rem 2rem;
    column-count: 3;
    column-gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.photo-item {
    break-inside: avoid;
    margin-bottom: 4rem;
}

.photo-item img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.photo-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.01);
}

.photo-metadata {
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-top: 1px solid #222;
    padding-top: 0.8rem;
}

/* --- WORKS LANDING (CARDS) --- */
.works-container {
    padding: 12rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border: 1px solid #222;
    min-height: 400px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: border-color 0.4s ease;
    text-decoration: none;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.1));
    z-index: 1;
}

.collection-card:hover {
    border-color: #fff;
}

.collection-card div {
    position: relative;
    z-index: 2;
}

.collection-card h2 {
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.collection-card p {
    font-size: 0.8rem;
    color: #aaa;
}

/* --- UTILITIES --- */
.hidden { display: none !important; }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) { .spread-container { column-count: 2; } }
@media (max-width: 700px) { 
    .spread-container { column-count: 1; }
    #collection-header h1 { font-size: 2rem; }
}

.contact-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.6;
}

.contact-icon {
    width: 40px;
    height: 40px;
    filter: invert(1); 
    display: block;
}

.contact-info {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media (max-width: 768px) {
    .contact-info { font-size: 1.1rem; letter-spacing: 2px; }
    .contact-icon { width: 30px; height: 30px; }
}

/* Icon Styling */
.contact-item i {
    width: 48px; 
    height: 48px;
    stroke-width: 1px; 
}
