* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f0f0;
    font-family: 'Inter', system-ui, sans-serif;
}

/* ============== FONT DEFINITION ============== */
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Black.woff2') format('woff2'),
         url('fonts/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Medium.woff2') format('woff2'),
         url('fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-ExtraLight.woff2') format('woff2'),
         url('fonts/Inter-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
/* Header */
header {
    position: sticky;
    top: 0;
    height: 0px;
    display: flex;
    align-items: flex-start;
    padding: 0px 0px;
    z-index: 3000;
    pointer-events: none;
}

.logo {
    height: 220px;
    margin-left: 20px;
    width: auto;
    pointer-events: auto;
}

.menu-toggle {
    margin-left: auto;
    margin-top: 40px;
    margin-right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: black;
    pointer-events: auto;
    z-index: 4000;
    background-color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Collapsible Menu */
.collapsible-menu {
    position: fixed;
    top: 0;
    right: -34%;
    width: 34%;
    height: 100vh;
    border-left: 10px solid black;
    background-color: white;
    box-shadow: -4px 0 12px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    padding: 120px 30px 30px;
    z-index: 2000;
}

.collapsible-menu.open { 
    right: 0; 
}

.menu-item {
    padding: 18px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

/* Story Blocks */
.story-block {
    display: flex;
    height: 100vh;
}

.big {
    flex: 2;
    height: 100%;
    position: relative;
    filter: grayscale(100%);
    transition: all 1s ease;
}

.big:hover {
    filter: grayscale(0%);
}

.small-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.small {
    flex: 1;
    position: relative;
    min-height: 0;
    filter: grayscale(100%);
    transition: all 1s ease;
}

.small:hover {
    filter: grayscale(0%);
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Yellow Highlight Box with Metadata */
.image-overlay, .image-overlay-small {
    position: absolute;
    bottom: 40px;
    left: 30px;
    background: rgba(0, 0, 0, 0.9);
    color: rgba(255, 215, 0, 0.99);
    padding: 14px 18px;
    border-radius: 4px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.25);
    z-index: 10;
    max-width: 85%;
    width: fit-content;
	line-height: 1.2;
    font-family: 'Inter', sans-serif;
    font-weight: 900;           /* Inter Black */
    letter-spacing: -0.02em;
}

.image-overlay { 
    font-size: 3em; 
    font-weight: 800;
}

.image-overlay-small { 
    font-size: 2.1em; 
    font-weight: 800;
}

/* Metadata inside yellow box */
.image-meta {
    margin-top: 8px;
    font-size: 0.5em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
	font-family: 'Inter', sans-serif;
    font-weight: 200;       
    letter-spacing: -0.02em;
	
}

.image-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon {
	width: 14px;
	height: 14px;
	margin-top: -1px;
	filter: brightness(0) saturate(100%) invert(63%) sepia(0%) saturate(0%) hue-rotate(21deg) brightness(97%) contrast(91%);
}

.icon-medium {
	width: 18px;
	height: 18px;
	margin-top: 0px;
	filter: brightness(0) saturate(100%) invert(63%) sepia(0%) saturate(0%) hue-rotate(21deg) brightness(97%) contrast(91%);
}

/* SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
}

.story-container {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    height: 100vh;
    scroll-behavior: smooth;
}

.story-block {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Navigation Arrows */
.scroll-nav {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5000;
}

.scroll-nav button {
    width: 55px;
    height: 55px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-nav button:hover {
    transform: scale(1.1);
    background: #ffe066;
}