@font-face {
    font-family: 'Yrdzst';
    src: url('../fonts/YRDZST-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #ffffff;
    --text: #000000;
    --grey: #999999;
    --pad: 6vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.4;
}

/* LOGO A NAVIGÁCIA */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px var(--pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.kanji {
    font-family: 'Yrdzst', serif;
    font-weight: 600;
    margin-left: 6px;
    font-size: 1.2em;
    line-height: 0;
    display: inline-flex;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    margin-left: 35px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- HERO SEKCIJA --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 var(--pad);
}

.hero h1 {
    display: flex;
    flex-direction: column;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.hero h1 .main-title {
    font-weight: 400; 
    font-size: 11vw;
    display: flex;
    align-items: center;
}

.hero h1 .sub-title {
    font-weight: 300;
    font-size: 6vw;
    color: var(--text);
}

.hero h1 .kanji {
    font-size: 1.1em; 
    margin-left: 6px;
    letter-spacing: normal; 
    text-transform: none;
}

.hero p {
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--grey);
    margin-top: 30px;
    max-width: 500px;
}

/* PROJEKTY */
.project {
    padding: 0 var(--pad);
    margin-bottom: 15vh;
}

.image-container {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #f5f5f5;
}

.image-container img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
}

.project-info {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.meta {
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title {
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

/* PÄTIČKA (FOOTER) */
footer {
    padding: 15vh var(--pad);
    background: #000;
    color: #fff;
}

footer h2 {
    font-weight: 400;
    font-size: 7vw;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.contact-item {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    width: fit-content;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-bottom-color: #fff;
    opacity: 0.7;
}

.studio-info {
    margin-top: 60px;
    font-weight: 400;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: #fff;
}

.footer-logo .kanji {
    color: #fff;
    margin-left: 6px;
}

/* REVEAL ANIMÁCIA */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .project-info { flex-direction: column; }
    .title { margin-top: 10px; }
    .hero h1 .main-title { font-size: 16vw; }
    .hero h1 .sub-title { font-size: 10vw; }
}