/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #000000, #0e0e0e);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    padding: 40px 20px;
    isolation: isolate;
}

/* Glassmorphism Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    z-index: 1;
    opacity: 0.4;
}

/* Hero Content */
.hero-content {
    z-index: 2;
    padding: 40px 20px;
    margin: 60px 0;
    animation: fadeIn 1.5s ease-in-out both;
    max-width: 900px;
}

/* Title */
.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
    animation: slideInDown 1s ease-in-out both;
    letter-spacing: 1px;
}

/* Subtitle */
.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 35px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    color: #dddddd;
    line-height: 1.6;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #ffba08, #f48c06);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f48c06, #ffba08);
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin: 40px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 10px 20px;
    }
}
