/* Typography */
@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: 'Fragment Mono';
    src: url('assets/fonts/Fragment_Mono/FragmentMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Fragment Mono';
    src: url('assets/fonts/Fragment_Mono/FragmentMono-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --nav-height: 100px;
    --side-padding: 10%;
    --transition-speed: 0.6s;
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Fragment Mono', monospace;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.6;
}

ul {
    list-style: none;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 var(--side-padding);
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artist-name {
    font-family: var(--font-header);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu li a {
    font-size: 1.1rem;
    text-transform: lowercase;
}

/* Sections */
.full-screen {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-height);
}

.image-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.8s ease;
    /* Deterrents */
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto; /* Keep auto for hover effects, JS will handle right-click */
}

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

.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px var(--side-padding);
    background-color: var(--bg-color);
}

.container {
    max-width: 800px;
}

.content-section h2 {
    font-family: var(--font-header);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.content-section p {
    font-size: 1.1rem;
    max-width: 600px;
}

.contact-info p {
    margin-bottom: 1rem;
}

/* Imprint Specific */
.imprint-details {
    margin-bottom: 2rem;
}

.protected-image {
    max-width: 370px;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 40px var(--side-padding);
    display: flex;
    justify-content: flex-end;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        height: auto;
        padding: 30px 5%;
    }

    nav {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .artist-name {
        font-size: 1.8rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .content-section {
        padding: 80px 5%;
    }

    .image-container {
        width: 90%;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }
}
