/* ========================================
   HERO COMPONENT - FRONTEND
   ======================================== */

.hero-component {
    width: 100%;
    padding: 60px 0;
    background: #FFFFFF;
}

.hero-component-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-component-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.hero-component-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.hero-content-inner {
    padding: 40px 0;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 24px 0;
}

.hero-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 32px 0;
}

.hero-button {
    margin-top: 32px;
    text-align: right;
}

.hero-btn {
    display: inline-block;
    padding: 16px 98px;
    background: transparent;
    color: #264067;
    text-decoration: none !important;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #264067;
}

.hero-btn:hover {
    background: #264067;
    color: #FFFFFF !important;
    border-color: #264067;
    text-decoration: none !important;
}

.hero-btn:visited {
    text-decoration: none !important;
}

.hero-btn:link {
    text-decoration: none !important;
}

.hero-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(38, 64, 103, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-component-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        font-weight: 800;
        color: #000000;
    }
    
    .hero-text {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-component {
        padding: 40px 0;
    }
    
    .hero-component-container {
        flex-direction: column;
        gap: 32px;
        padding: 0 16px;
    }
    
    .hero-component-image {
        flex: none;
        max-width: 100%;
        order: 2;
    }
    
    .hero-component-content {
        flex: none;
        max-width: 100%;
        order: 1;
    }
    
    .hero-content-inner {
        padding: 0;
        text-align: center;
    }
    
    .hero-button {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        font-weight: 800;
        color: #000000;
        margin-bottom: 16px;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-btn {
        padding: 14px 60px;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        font-weight: 800;
        color: #000000;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .hero-btn {
        padding: 12px 40px;
        font-size: 0.9rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-btn {
        transition: none;
    }
    
    .hero-btn:hover {
        transform: none;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .hero-component {
        padding: 20px 0;
        background: #FFFFFF !important;
    }
    
    .hero-component-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-title {
        color: #000000 !important;
    }
    
    .hero-text {
        color: #333333 !important;
    }
    
    .hero-btn {
        background: transparent !important;
        color: #000000 !important;
        border: 2px solid #000000 !important;
        border-radius: 30px !important;
        box-shadow: none !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        padding: 16px 98px !important;
    }
}
