/* ==========================================================================
   HERO COMPONENT STYLES (Component Prefix: hero-)
   ========================================================================== */

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-section {
    position: relative;
    background-color: var(--dfa-bg-light);
    padding: 160px 24px 100px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

/* Content Column */
.hero-content {
    animation: hero-fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--dfa-color-primary-alpha);
    color: var(--dfa-color-primary);
    padding: 8px 18px;
    border-radius: var(--dfa-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-badge-icon {
    font-size: 0.95rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--dfa-color-secondary);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.hero-tagline {
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--dfa-color-primary);
    margin-bottom: 24px;
    font-family: var(--dfa-font-headings);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--dfa-text-medium);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background-color: var(--dfa-color-primary);
    color: var(--dfa-bg-card);
    font-family: var(--dfa-font-headings);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--dfa-radius-full);
    box-shadow: var(--dfa-shadow-md);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color var(--dfa-transition), transform var(--dfa-transition), box-shadow var(--dfa-transition);
}

.hero-btn-primary:hover {
    background-color: var(--dfa-color-primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--dfa-shadow-lg);
}

.hero-btn-secondary {
    background-color: transparent;
    color: var(--dfa-color-secondary);
    font-family: var(--dfa-font-headings);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: var(--dfa-radius-full);
    border: 2px solid var(--dfa-color-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color var(--dfa-transition), color var(--dfa-transition), transform var(--dfa-transition);
}

.hero-btn-secondary:hover {
    background-color: var(--dfa-color-secondary);
    color: var(--dfa-bg-light);
    transform: translateY(-3px);
}

/* Image Placeholder Column */
.hero-image-area {
    animation: hero-fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.15s;
    justify-self: center;
    width: 100%;
}

.hero-placeholder-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    border-radius: var(--dfa-radius-lg);
    background-color: var(--dfa-bg-card);
    border: 1px solid rgba(24, 107, 60, 0.15);
    box-shadow: var(--dfa-shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    transition: transform var(--dfa-transition), box-shadow var(--dfa-transition);
}

.hero-placeholder-wrapper:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(24, 107, 60, 0.15);
}

/* Border Accent */
.hero-placeholder-accent-border {
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: 12px;
    left: 12px;
    border: 2px dashed var(--dfa-color-primary);
    border-radius: var(--dfa-radius-lg);
    z-index: -1;
    transition: transform var(--dfa-transition);
}

.hero-placeholder-wrapper:hover .hero-placeholder-accent-border {
    transform: translate(6px, -6px);
}

.hero-placeholder-icon {
    font-size: 3.5rem;
    color: var(--dfa-color-primary);
    margin-bottom: 16px;
    background-color: var(--dfa-color-primary-light);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--dfa-radius-full);
}

.hero-placeholder-title {
    font-size: 1.25rem;
    color: var(--dfa-color-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-placeholder-subtitle {
    font-size: 0.9rem;
    color: var(--dfa-text-medium);
    max-width: 250px;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.85rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-action-buttons {
        justify-content: center;
    }
    
    .hero-placeholder-wrapper {
        max-width: 380px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.75px;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .hero-action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn-primary, .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
