/* --- 1. GLOBAL & RESET --- */
body { 
    margin: 0; 
    padding: 0; 
    background-color: #000;
    color: #fff; 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

main {
    padding: 0;
    margin-top: 0;
}

/* --- 2. NAVIGATION & HEADER --- */
.overlay-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 30px;
    z-index: 100;
    box-sizing: border-box;
}

.site-title {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff; 
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-title:hover { opacity: 0.6; cursor: pointer; }

.top-nav {
    display: flex;
    gap: 15px;
}

.top-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative; 
    padding-bottom: 4px; 
    transition: color 0.3s ease;
}

.top-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #fff; 
    transition: width 0.3s ease;
}

.top-nav a:hover::after {
    width: 100%;
}

.top-nav a:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    .overlay-header { flex-direction: column; gap: 15px; padding: 15px; align-items: center; }
    .logo-wrapper {align-items: center; text-align: center;}
    .top-nav { gap: 10px; justify-content: center; width: 100%; }
}

/* --- 3. HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100vw; 
    height: 100vh;
    background: #000;
    display: flex; 
    justify-content: center; 
    align-items: center;
    overflow: hidden;
}

.blurred-bg {
    position: absolute;
    top: -10%; 
    left: -10%; 
    width: 120%; 
    height: 120%;
    background-size: cover; 
    background-position: center;
    filter: blur(15px) brightness(0.5);
    z-index: 1;
}

.hero-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.hero-center-text h1 {
    margin: 0;
    font-size: 42px;
    letter-spacing: 2px;
}

.hero-center-text p { 
    font-size: 10px; 
    letter-spacing: 3px; 
    opacity: 0.8; 
    line-height: 2;
    margin-top: 10px;
}