/* Hero Section Styles - Starry Black & Yellow Theme */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
	background: linear-gradient(135deg, var(--bg-0) 0%, var(--bg-2) 50%, var(--bg-0) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
	color: var(--heading);
	text-shadow: 0 4px 20px rgba(var(--black-rgb), 0.5);
    position: relative;
    z-index: 2;
}

.highlight {
	background: linear-gradient(135deg, var(--secondary), var(--primary), var(--primary-2), var(--secondary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
	background: linear-gradient(90deg, var(--secondary), var(--primary), var(--primary-2), var(--secondary));
    border-radius: 2px;
    animation: gradientShift 4s ease-in-out infinite;
}

.hero-description {
    font-size: 1.3rem;
	color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
	text-shadow: 0 2px 10px rgba(var(--black-rgb), 0.3);
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.creative-quote {
	background: rgba(var(--primary-rgb), 0.1);
    backdrop-filter: blur(20px);
	border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.creative-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
	background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.1), transparent);
    transition: left 0.8s;
}

.creative-quote:hover::before {
    left: 100%;
}

.quote-mark {
    font-size: 4rem;
	color: var(--subheading);
    display: block;
    margin-bottom: 1rem;
	text-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.5);
}

.quote-text {
    font-size: 1.4rem;
	color: var(--text);
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-author {
    font-size: 1rem;
	color: rgba(var(--primary-rgb), 0.8);
    font-style: italic;
}

.tech-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
	background: rgba(var(--primary-rgb), 0.1);
    backdrop-filter: blur(15px);
	border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
	background: rgba(var(--primary-rgb), 0.2);
	box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
	color: var(--primary);
	text-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
	color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tech-illustration {
    position: relative;
    width: 500px;
    height: 500px;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
	background: linear-gradient(135deg, var(--secondary), var(--primary), var(--primary-2), var(--secondary));
    background-size: 200% 200%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
	color: var(--primary-contrast);
    font-size: 2.5rem;
	box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.3);
    animation: float 6s ease-in-out infinite, gradientShift 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
	border: 2px solid rgba(var(--primary-rgb), 0.3);
}

.floating-element:hover {
    transform: scale(1.2) rotate(10deg);
	box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.5);
    z-index: 10;
}

.floating-element::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
	background: linear-gradient(45deg, var(--secondary), var(--primary), var(--primary-2), var(--secondary), var(--primary));
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-element:hover::before {
    opacity: 1;
}

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

#element1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

#element2 {
    top: 0;
    right: 0;
    animation-delay: 1.5s;
}

#element3 {
    bottom: 0;
    left: 0;
    animation-delay: 3s;
}

#element4 {
    bottom: 0;
    right: 0;
    animation-delay: 4.5s;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
    }

    .tech-illustration {
        width: 300px;
        height: 300px;
    }

    .floating-element {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }
} 