@font-face {
    font-family: 'Tocapu';
    src: url('assets/fonts/tocapu/tocapu-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tocapu';
    src: url('assets/fonts/tocapu/tocapu-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #fcfcfc;
    --text-color: #111;
    --font-main: 'Tocapu', 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.hero-container {
    width: 100%;
    max-width: 800px;
    text-align: center;
    z-index: 10;
    margin-top: -10vh; /* Shifted up from center */
}

.hero-logo {
    width: 600px;
    max-width: 90vw;
    height: auto;
    margin-bottom: -1rem;
    animation: fadeIn 1.5s ease-out;
    cursor: pointer;
    pointer-events: auto;
}

.hero-title {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 1;
    margin-top: 0;
    animation: fadeIn 2s ease-out;
    cursor: pointer;
    pointer-events: auto;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.main-nav ul {
    list-style: none;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 1;
}

/* Side Panel */
.side-panel {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.05);
    z-index: 200;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 4rem 2rem;
}

.side-panel.active {
    right: 0;
}

/* Soundbars Background */
.soundbars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10%;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.soundbar {
    transition: height 1s ease-in-out;
}


.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.minimal-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    font-family: inherit;
    font-size: 1.2rem; /* Larger input text */
    outline: none;
    transition: border-color 0.3s;
}

.minimal-form input:focus {
    border-bottom-color: #000;
}

.minimal-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    font-size: 1rem; /* Larger button text */
    letter-spacing: 0.1em;
    margin-top: 1rem;
    transition: opacity 0.2s;
}

.minimal-form button:hover {
    opacity: 0.8;
}

#form-message {
    margin-top: 1rem;
    font-size: 0.8rem;
}

/* Social Links */
.social-links {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.social-links a {
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}