/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    width: 100%;
    min-height: 100%;
    background: linear-gradient(to bottom, 
        #0a0a0a 0%, 
        #0a0a0a 40%, 
        #4a503d 100%
    );
    background-attachment: fixed;
    background-size: 100% 100vh;
    font-family: 'Lato', -apple-system, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* Fixed Navigation Ribbon at Top */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.top-nav ul li {
    display: flex;
    align-items: center;
}

.top-nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 300;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.top-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C5A059;
    transition: width 0.3s ease;
}

.top-nav ul li a:hover::after,
.top-nav ul li a.active::after {
    width: 100%;
}

.top-nav ul li a:hover,
.top-nav ul li a.active {
    color: #C5A059;
}

/* Main Container - Centered Logo */
.hero-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px; /* Space for fixed nav */
}

/* Logo Section */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.main-logo {
    width: 90vw;
    max-width: 1200px;
    max-height: 70vh;
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: screen;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .top-nav {
        padding: 24px 20px;
        background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 40%, transparent 100%);
    }
    
    .top-nav ul {
        flex-wrap: wrap;
        gap: 18px 25px;
    }
    
    .top-nav ul li a {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .hero-container {
        padding-top: 120px;
    }
    
    .main-logo {
        width: 85vw;
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 20px 15px;
        background: linear-gradient(to bottom, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.8) 35%, transparent 100%);
    }
    
    .top-nav ul {
        gap: 15px 20px;
    }
    
    .top-nav ul li a {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    
    .hero-container {
        padding-top: 110px;
    }
    
    .main-logo {
        max-height: 55vh;
    }
}