/* ==========================================================================
   Elements Hero Widget Stylesheet
   ========================================================================== */

/* Main Section Container */
.elements-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 90vh;
    padding: 100px 0;
    background-image: url('../../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
}

/* Background Overlay */
.elements-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(20, 20, 20, 0.4) 100%);
    z-index: 1;
}

/* Container */
.elements-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
    z-index: 2;
}

/* Content Wrapper */
.elements-hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Badge Styling */
.elements-hero-badge-wrapper {
    margin-bottom: 25px;
}

.elements-hero-badge {
    display: inline-block;
    background-color: #e2062c;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 12px;
    border: 1px solid #ffffff;
    line-height: 1;
}

/* Title Styling */
.elements-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -1px;
}

.elements-hero-title-prefix {
    display: block;
}

.elements-hero-title-suffix {
    display: block;
    color: #e2062c;
}

/* Description Wrapper and Border */
.elements-hero-desc-wrapper {
    border-left: 3px solid #e2062c;
    padding-left: 20px;
    margin-bottom: 40px;
    max-width: 600px;
}

.elements-hero-description {
    color: #b0b0b0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    font-weight: 400;
}

/* Buttons Wrapper */
.elements-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

/* Common Button Styling */
.elements-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    border-radius: 0;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-sizing: border-box;
}

/* Primary Button Styling */
.elements-hero-btn-primary {
    background-color: #e2062c;
    color: #ffffff;
    border: 1px solid #e2062c;
}

.elements-hero-btn-primary:hover {
    background-color: #b80523;
    border-color: #b80523;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 6, 44, 0.3);
}

.elements-hero-btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button Styling */
.elements-hero-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.elements-hero-btn-secondary:hover {
    background-color: #ffffff;
    color: #121212 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

.elements-hero-btn-secondary:active {
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .elements-hero-section {
        min-height: 80vh;
        padding: 80px 0;
    }
    
    .elements-hero-desc-wrapper {
        padding-left: 15px;
        margin-bottom: 30px;
    }
    
    .elements-hero-btn {
        padding: 14px 30px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    
    .elements-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
}
