.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 161, 255, 0.1) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.hero-buttons .btn {
    min-width: 150px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn.primary {
    background: #00a1ff;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 161, 255, 0.3);
}

.hero-buttons .btn.primary:hover {
    background: #0091e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 161, 255, 0.4);
}

.hero-buttons .btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hero-buttons .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-buttons .btn:active {
    transform: translateY(1px);
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .hero .container {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
} 