/* about-section.css */

/* Core Container */
.nh-about-section {
    padding: 100px 20px;
    background-color: #f9f9f9; /* Light background for contrast if needed, or dark. The prompt asked for "dark charcoal / steel grey / white / red accent colors" so let's use a subtle dark/steel theme or clean white with dark accents. Let's go with a premium dark theme to match the products section. */
    background: linear-gradient(135deg, #111111 0%, #242424 100%);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif; /* Inherit theme font if available */
    overflow: hidden;
    position: relative;
}

/* Background Texture/Shapes */
.nh-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 10px);
    z-index: 0;
    pointer-events: none;
}

.nh-about-container {
    max-width: 1290px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Grid Layout */
.nh-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .nh-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Left Content Area */
.nh-about-content {
    display: flex;
    flex-direction: column;
}

.nh-about-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(237, 27, 36, 0.1);
    color: #ED1B24;
    border: 1px solid rgba(237, 27, 36, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    align-self: flex-start;
}

.nh-about-title-wrapper {
    position: relative;
    padding-left: 20px;
    margin-bottom: 25px;
}

/* Vertical Accent Line */
.nh-about-title-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background-color: #ED1B24;
    border-radius: 2px;
}

.nh-about-title {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    line-height: 1.35 !important;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.nh-about-highlight {
    font-size: 22px;
    font-weight: 600;
    color: #ED1B24;
    margin: 0 0 10px 0;
}

.nh-about-sub-highlight {
    font-size: 16px;
    font-weight: 500;
    color: #a0a0a0;
    margin: 0 0 20px 0;
    font-style: italic;
}

.nh-about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #b3b3b3;
    margin-bottom: 20px;
}

.nh-about-founder {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(237, 27, 36, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-left: 4px solid #ED1B24;
    border-radius: 0 8px 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(237, 27, 36, 0.15);
}

/* Features List */
.nh-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.nh-about-feature-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e0;
}

.nh-about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(237, 27, 36, 0.1);
    color: #ED1B24;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .nh-about-features {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.nh-about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nh-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nh-about-btn-primary {
    background-color: #ED1B24;
    color: #ffffff;
    border: 2px solid #ED1B24;
}

.nh-about-btn-primary:hover {
    background-color: transparent;
    color: #ED1B24;
}

.nh-about-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #555;
}

.nh-about-btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.05);
}

/* Right Image Area */
.nh-about-image-wrapper {
    position: relative;
    padding: 20px;
}

.nh-about-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 2;
}

.nh-about-image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
    pointer-events: none;
    border-radius: 8px;
}

.nh-about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nh-about-image-wrapper:hover .nh-about-image {
    transform: scale(1.05);
}

/* Decorative Frame Background */
.nh-about-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 40px;
    left: 40px;
    border: 2px solid #333;
    border-radius: 8px;
    z-index: 1;
    transition: all 0.5s ease;
}

.nh-about-image-wrapper:hover .nh-about-image-bg {
    transform: translate(10px, -10px);
    border-color: #ED1B24;
}

/* Floating Badge */
.nh-about-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #ED1B24;
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(237, 27, 36, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: nhFloat 6s ease-in-out infinite;
}

.nh-about-floating-badge-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.nh-about-floating-badge-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

@keyframes nhFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 767px) {
    .nh-about-floating-badge {
        bottom: -10px;
        left: 10px;
        padding: 15px 20px;
    }
    .nh-about-floating-badge-number {
        font-size: 28px;
    }
    .nh-about-image-bg {
        left: 20px;
        bottom: 20px;
    }
}

/* Animation Classes */
.nh-about-animate-left,
.nh-about-animate-right,
.nh-about-animate-up {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nh-about-animate-left {
    transform: translateX(-50px);
}

.nh-about-animate-right {
    transform: translateX(50px);
}

.nh-about-animate-up {
    transform: translateY(30px);
}

.nh-about-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delays */
.nh-delay-100 { transition-delay: 0.1s; }
.nh-delay-200 { transition-delay: 0.2s; }
.nh-delay-300 { transition-delay: 0.3s; }
.nh-delay-400 { transition-delay: 0.4s; }
.nh-delay-500 { transition-delay: 0.5s; }
