/* assets/css/home.css */

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    z-index: 1;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.building {
    width: 100px;
    height: 200px;
    background: linear-gradient(135deg, #D4AF37 0%, #8B691F 100%);
    bottom: 10%;
    left: 10%;
    animation-delay: 0s;
}

.home-icon {
    width: 80px;
    height: 80px;
    border: 4px solid #D4AF37;
    transform: rotate(45deg);
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.key-icon {
    width: 60px;
    height: 30px;
    border: 3px solid #D4AF37;
    border-radius: 30px;
    bottom: 30%;
    right: 25%;
    animation-delay: 4s;
    position: relative;
}

.key-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 20px;
    background: #D4AF37;
    right: -10px;
    top: 2px;
    border-radius: 2px;
}

.dollar-icon {
    font-size: 4rem;
    color: #D4AF37;
    top: 15%;
    left: 20%;
    animation-delay: 6s;
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0.3;
    animation: particleMove 15s infinite linear;
}

@keyframes particleMove {
    from {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    to {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Hero Content - Fixed with top padding */
.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 100px; /* Added to clear the fixed header */
}

.hero-text {
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 10;
}

.hero-title span {
    color: #D4AF37;
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Stats */
.stats-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    animation: fadeInUp 1s ease forwards;
    animation-delay: calc(var(--i) * 0.2s);
    opacity: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Profile Card - No Image */
.profile-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem 2rem;
    animation: fadeInRight 1s ease forwards;
    position: relative;
    text-align: center;
}

.profile-quote {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-style: italic;
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.profile-title {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.profile-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    border-radius: 50px;
    font-size: 1rem;
    color: #D4AF37;
}

.profile-stats-mini {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini {
    text-align: center;
}

.stat-mini-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
}

.stat-mini-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* For mobile/smaller screens */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 80px; /* Slightly less on mobile */
        gap: 2rem;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .profile-stats-mini {
        flex-wrap: wrap;
        gap: 1rem;
    }
}