/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    overflow: hidden;
}

/* LEFT CONTENT */
.hero-content {
    max-width: 650px;
    z-index: 2;
    animation: fadeUp 1.2s ease forwards;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    color: #fff;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.hero-content h1 span {
    display: block;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212,175,55,.5);
    animation: luxuryGlow 3s infinite alternate;
}

.hero-content p {
    margin-top: 25px;
    max-width: 550px;
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 1s ease .3s forwards;
}

/* BUTTON */
.hero-btns {
    margin-top: 35px;
    opacity: 0;
    animation: fadeUp 1s ease .6s forwards;
}

.outline-btn {
    position: relative;
    display: inline-block;
    padding: 14px 38px;
    border: 1px solid #d4af37;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: .4s;
}

.outline-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(212,175,55,.35);
}

.outline-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition: .8s;
}

.outline-btn:hover::before {
    left: 120%;
}

/* FLOATING CARD */
.floating-card {
    width: 320px;
    padding: 30px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: white;

    animation:
        slideInRight 1.3s ease forwards,
        floatCard 4s ease-in-out infinite;
}

.floating-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.floating-card h3 span {
    color: #d4af37;
}

.floating-card p {
    line-height: 1.9;
    color: rgba(255,255,255,.85);
}

/* ANIMATIONS */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatCard {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes luxuryGlow {
    from {
        text-shadow:
            0 0 5px rgba(212,175,55,.4),
            0 0 15px rgba(212,175,55,.2);
    }

    to {
        text-shadow:
            0 0 15px rgba(119, 93, 6, 0.8),
            0 0 35px rgba(87, 72, 22, 0.5);
    }
}
