/* --- CASE STUDY PAGE STYLES --- */
body {
    background-color: #050505;
    color: #fff;
}

/* Hero Section */
.case-hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: grayscale(100%); /* Artistic touch */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, #050505 10%, rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tag {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
}

.tag.yellow {
    color: #FFE600;
    border-color: #FFE600;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    max-width: 900px;
}

/* Content Layout */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Asymmetric split */
    gap: 80px;
}

.detail-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FFE600;
}

.top-gap { margin-top: 60px; }

.detail-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.highlight-text {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
}

/* Results List */
.results-list {
    list-style: none;
    padding: 0;
}

.stat-item {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.check {
    color: #FFE600;
    margin-right: 10px;
}

/* Gallery Grid */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-img img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(50%);
    transition: filter 0.3s;
}

.gallery-img img:hover {
    filter: grayscale(0%);
}

/* Footer Link */
.next-project {
    text-align: center;
    padding: 100px 0;
    border-top: 1px solid #222;
}

.next-link {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.next-link:hover {
    color: #FFE600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .image-grid { grid-template-columns: 1fr; }
}