/* =========================================
   STYLE-HOME.CSS 
   ========================================= */

/* AURORA HERO */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; position: relative; overflow: hidden;
    padding: 100px 20px 50px 20px;
}
.aurora-bg {
    position: absolute; width: 80vw; height: 80vw;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    filter: blur(80px); opacity: 0.3;
    animation: auroraMove 10s infinite alternate; z-index: -1;
}
@keyframes auroraMove {
    0% { transform: translate(-20%, -20%) scale(1); }
    100% { transform: translate(20%, 10%) scale(1.1); }
}
.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem); line-height: 1; font-weight: 800; margin-bottom: 1.5rem;
    background: linear-gradient(to bottom right, #fff 30%, #666);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.1rem; color: var(--text-color); opacity: 0.7; max-width: 500px; margin-bottom: 3rem; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }

/* HOME MARQUEE */
.marquee-strip {
    background: var(--text-color); color: var(--bg-color);
    padding: 1.5rem 0; transform: rotate(-1deg) scale(1.02);
    margin: 2rem 0; overflow: hidden; position: relative;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.5rem; letter-spacing: 2px;
    display: flex; /* Critical for seamless loop */
}
.marquee-content {
    display: flex; white-space: nowrap;
    animation: scrollText 20s linear infinite;
}
.marquee-content span { padding-right: 50px; }

@keyframes scrollText { 
    from { transform: translateX(0); } 
    to { transform: translateX(-50%); } 
}

/* SERVICES BENTO GRID */
.section-padding { padding: 6rem 5%; }
.section-header { margin-bottom: 4rem; text-align: center; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-color); }

.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    max-width: 1200px; margin: 0 auto;
}
.bento-card {
    background: var(--card-bg); border: 1px solid var(--border-color); padding: 2rem;
    border-radius: 20px; transition: 0.4s; display: flex; flex-direction: column; justify-content: space-between;
    min-height: 280px;
}
.bento-card:hover {
    background: rgba(255, 255, 255, 0.08); transform: translateY(-5px); border-color: rgba(255,255,255,0.3);
}

.bento-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-color); }
.bento-card p { color: var(--text-color); opacity: 0.7; font-size: 0.95rem; }
.bento-icon { font-size: 2rem; color: var(--accent); margin-bottom: 2rem; }

/* Grid Spans */
.span-2 { grid-column: span 2; }

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .span-2 { grid-column: span 1; }
}