body {
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(0.7);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    padding: 0 5%;
    max-width: 650px;
    margin-top: 40px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #FF6B00;
    text-decoration: none;
}

.breadcrumb span {
    color: white;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-footer {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    gap: 15px;
}

.footer-btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.jobs-btn {
    background-color: #333;
    color: white;
}

.jobs-btn:hover {
    background-color: #555;
}

.signin-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.signin-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.signup-btn {
    background-color: #FF6B00;
    color: white;
}

.signup-btn:hover {
    background-color: #e05f00;
}

/* Адаптивні стилі, що не стосуються навігації */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding-top: 40px;
    }
    
    .footer-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-footer {
        bottom: 20px;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    .footer-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-height: 700px) {
    .hero-content {
        padding-top: 80px;
    }
    
    h1 {
        margin-bottom: 15px;
    }
    
    .hero-footer {
        bottom: 20px;
    }
}