/* Home Page Styles */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    color: var(--text-white);
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-logo {
    width: 350px;
    max-width: 80vw;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease, float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease 0.2s both;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.2rem, 4vw, 2rem);
    animation: slideUp 0.8s ease 0.4s both;
    position: relative;
    z-index: 1;
    color: var(--text-white);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero .subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    animation: slideUp 0.8s ease 0.6s both;
    position: relative;
    z-index: 1;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 2px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 2rem;
    }
}
