/* ================================
   HERO SECTION REDESIGN
================================ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f1a20; /* Primary background */
    overflow: hidden;
    z-index: 1;
}

/* Background Glowing Orbs */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    animation: floatingOrb 10s infinite alternate ease-in-out;
}

.hero::before {
    top: -150px;
    left: -150px;
    background: rgba(245, 201, 138, 0.15); /* Gold glow */
}

.hero::after {
    bottom: -150px;
    right: -150px;
    background: rgba(15, 25, 32, 0.8);
    animation-delay: 5s;
}

@keyframes floatingOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
    background: linear-gradient(90deg, #f5c98a, #ffb347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #a3b8c2;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Primary Button Styling Update specifically for Hero */
.hero .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: transparent;
    color: #f5c98a;
    border: 2px solid #f5c98a;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(245, 201, 138, 0.15);
}

.hero .btn-primary:hover {
    background: #f5c98a;
    color: #0f1a20;
    box-shadow: 0 0 30px rgba(245, 201, 138, 0.4);
    transform: translateY(-3px);
}

/* Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
