/* =========================================
   🎨 Creative Hero - "Living Art"
   ========================================= */

.creative-hero {
    min-height: 90vh; /* Taller to fill screen */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--art-marfil);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Space for navbar */
}

/* Background Abstract Shapes */
.creative-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 173, 1, 0.1) 0%, transparent 70%); /* Mostaza glow */
    border-radius: 50%;
    z-index: 0;
}

.creative-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 88, 56, 0.1) 0%, transparent 70%); /* Teja glow */
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
    width: 100%;
}

/* Minimal Text Side */
.hero-text-minimal {
    text-align: left;
    padding-left: 2rem;
}

.creative-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--art-marron);
    margin-bottom: 1.5rem;
}

.creative-title .highlight-text {
    color: var(--art-teja);
    position: relative;
    display: inline-block;
}

.creative-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(225, 173, 1, 0.3); /* Mostaza highlight */
    z-index: -1;
    transform: rotate(-2deg);
}

.creative-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--art-ocre);
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-actions .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.hero-actions .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: transparent;
    border: 2px solid var(--art-marron);
    color: var(--art-marron);
}

.hero-actions .btn-secondary:hover {
    background: var(--art-marron);
    color: white;
}

/* 3D Art Stack Side */
.hero-art-display {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.art-stack {
    position: relative;
    width: 350px;
    height: 450px;
    transform-style: preserve-3d;
}

.art-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    border: 8px solid white;
    border-bottom: 25px solid white; /* Polaroid style */
    box-shadow: var(--shadow-deep);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Stacking Logic */
    transform: 
        translateZ(calc(var(--i) * -40px)) 
        translateY(calc(var(--i) * 10px)) 
        translateX(calc(var(--i) * 10px))
        rotate(calc(var(--i) * -5deg));
    opacity: calc(1 - (var(--i) * 0.15));
    z-index: calc(10 - var(--i));
    cursor: pointer;
}

/* Hover Effect on Stack */
.art-stack:hover .art-card {
    transform: 
        translateZ(calc(var(--i) * -20px)) 
        translateY(calc(var(--i) * -10px)) /* Spread out upwards */
        translateX(calc(var(--i) * 40px)) /* Spread out sideways */
        rotate(calc(var(--i) * 5deg));
    opacity: 1;
}

.art-card:hover {
    transform: translateZ(20px) scale(1.1) rotate(0deg) !important;
    z-index: 20;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Floating Badge */
.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--art-mostaza);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    transform: rotate(15deg);
    box-shadow: var(--shadow-soft);
    z-index: 30;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-10px); }
}

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

    .hero-text-minimal {
        padding-left: 0;
        order: 2; /* Art first on mobile? Or text first? Let's keep text first for context */
    }

    .creative-title {
        font-size: 3rem;
    }

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

    .hero-art-display {
        height: 400px;
        order: 1;
    }

    .art-stack {
        width: 280px;
        height: 360px;
    }
}
