@font-face {
    font-family: 'Theinhardt';
    src: url('./Theinhardt/theinhardt-medium.otf') format('opentype'),
         url('./Theinhardt/Theinhardt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Theinhardt';
    src: url('./Theinhardt/theinhardt-light.otf') format('opentype'),
         url('./Theinhardt/Theinhardt-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Theinhardt';
    src: url('./Theinhardt/theinhardt-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Theinhardt';
    src: url('./Theinhardt/theinhardt-heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

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

body {
    font-family: 'Theinhardt', sans-serif;
    color: #000;
    overflow-x: hidden;
    background-color: #F8F8F5;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-video.active {
    opacity: 1;
}

/* Subtle overlay if video is too bright/dark, but since the screenshot is clear, we will just use it directly. */
.video-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Soft top gradient to make sure nav is readable if needed, wait, in screenshot no gradient is visible. Let's keep it transparent. */
    background: transparent;
    pointer-events: none;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-left, .nav-right {
    display: flex;
    gap: 3rem;
}

.nav-left a, .nav-right a {
    text-decoration: none;
    color: #000;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-left a:hover, .nav-right a:hover {
    opacity: 0.6;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-logo img {
    height: 1.1rem;
    width: auto;
}

.bottom-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #fff;
}

.scroll-down {
    cursor: pointer;
    animation: bounce 2.5s infinite ease-in-out;
}

.scroll-down svg {
    display: block;
    width: 24px;
    height: 12px;
}

/* Media query for smaller displays */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .nav-left, .nav-right {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav-logo {
        position: relative;
        left: auto;
        transform: none;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

.about-section {
    padding: 8rem 2rem;
    text-align: center;
    background-color: #F8F8F5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.about-section h2 {
    font-family: 'Theinhardt', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    color: #000;
}

.about-section p {
    font-family: 'Theinhardt', sans-serif;
    max-width: 800px;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    color: #333;
}
