/* 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;
}

/* Main Container - Flexbox Column */
.hero-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Top Spacer */
.spacer {
    flex: 0 0 auto;
    height: 5vh;
}

/* Logo Section - Takes remaining space and centers */
.logo-wrapper {
    flex: 1;
    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;
}

/* Navigation Ribbon at Bottom */
.bottom-nav {
    width: 100%;
    padding: 48px 0;
    background: linear-gradient(to top, rgba(74, 80, 61, 0.8) 0%, rgba(74, 80, 61, 0.3) 50%, transparent 100%);
    z-index: 10;
    flex-shrink: 0;
    position: relative;
    bottom: 30px;
}

.bottom-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.bottom-nav ul li {
    display: flex;
    align-items: center;
}

.bottom-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;
}

.bottom-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C5A059;
    transition: width 0.3s ease;
}

.bottom-nav ul li a:hover::after,
.bottom-nav ul li a.active::after {
    width: 100%;
}

.bottom-nav ul li a:hover,
.bottom-nav ul li a.active {
    color: #C5A059;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .spacer {
        height: 2vh;
    }
    
    .main-logo {
        width: 85vw;
        max-height: 55vh;
    }
    
    .bottom-nav {
        padding: 28px 20px;
        background: linear-gradient(to top, #4a503d 0%, rgba(74, 80, 61, 0.95) 30%, rgba(74, 80, 61, 0.7) 60%, transparent 100%);
        position: relative;
        bottom: 0;
    }
    
    .bottom-nav ul {
        flex-wrap: wrap;
        gap: 18px 25px;
    }
    
    .bottom-nav ul li a {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .spacer {
        height: 1vh;
    }
    
    .main-logo {
        max-height: 50vh;
    }
    
    .bottom-nav {
        padding: 24px 15px;
        background: linear-gradient(to top, #4a503d 0%, rgba(74, 80, 61, 0.98) 25%, rgba(74, 80, 61, 0.8) 50%, transparent 100%);
        position: relative;
        bottom: 0;
    }
    
    .bottom-nav ul {
        gap: 15px 20px;
    }
    
    .bottom-nav ul li a {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
}