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

body {
    font-family: 'Unbounded', sans-serif;
    background-color: #000;
    min-height: 100vh;
    overflow-x: hidden;
}

.header {
    background-color: #000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    color: #ff0000;
    text-decoration: none;
    font-size: 32px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

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

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

.separator {
    color: #ff0000;
    font-size: 32px;
    font-weight: 300;
    user-select: none;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    font-size: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

.social-link i {
    line-height: 1;
}

/* Main Section */
.main-section {
    width: 100%;
    background-color: #000;
}

.hero-image {
    width: 100%;
    height: calc(100vh - 81px);
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 15px 30px;
    }
    
    .nav-link,
    .separator {
        font-size: 24px;
    }
    
    .social-link {
        font-size: 28px;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .hero-image {
        height: calc(100vh - 71px);
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link,
    .separator {
        font-size: 20px;
    }
    
    .social-link {
        font-size: 26px;
    }
    
    .hero-image {
        height: calc(100vh - 140px);
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link,
    .separator {
        font-size: 16px;
    }
    
    .social-icons {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-link {
        font-size: 24px;
    }
    
    .nav-link::after {
        bottom: -3px;
    }
    
    .hero-image {
        height: calc(100vh - 180px);
        min-height: 250px;
    }
}