/**
 * Lift 'N Move - About Us Plugin Styles
 * Version: 1.0.0
 * Primary Color: #C62128
 * Background: #010101
 */

:root {
    --color-primary: #C62128;
    --color-white: #FFFFFF;
    --color-background: #010101;
    --color-gray: #666666;
    --font-header: 'BIG BLACK BEAR', 'Impact', 'Arial Black', sans-serif;
    --font-body: 'Migra', 'Montserrat', 'Arial', sans-serif;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */

.lnm-about-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #010101;
    display: block;
    position: relative;
    overflow-x: hidden;
}

.lnm-about-container * {
    box-sizing: border-box;
}

.lnm-about-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 80px 40px;
}

.lnm-community-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 40px 80px 40px;
}

/* ============================================
   MAIN HEADER (Top Section)
   ============================================ */

.lnm-main-header {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.lnm-header-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.lnm-header-hero {
    font-family: var(--font-header);
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.lnm-hero-line-white {
    display: inline;
    color: var(--color-white);
    font-style: italic;
}

.lnm-hero-line-red {
    display: inline;
    color: var(--color-primary);
    font-style: italic;
    margin-left: 0.3em;
}

.lnm-header-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-bottom: 0;
}

/* ============================================
   ABOUT CONTENT SECTION
   ============================================ */

.lnm-section-title {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 30px;
}

/* Two Column Grid */
.lnm-about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Images Carousel */
.lnm-story-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.lnm-story-image-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    max-height: 400px;
}

.lnm-story-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lnm-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

/* Carousel Navigation */
.lnm-carousel-nav-prev,
.lnm-carousel-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(198, 33, 40, 0.9);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.lnm-carousel-nav-prev:hover,
.lnm-carousel-nav-next:hover {
    background-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.lnm-carousel-nav-prev {
    left: 15px;
}

.lnm-carousel-nav-next {
    right: 15px;
}

/* Swiper slide styling */
.swiper-slide {
    height: auto;
}

/* About Text */
.lnm-about-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-white);
}

.lnm-about-text p {
    margin-bottom: 20px;
}

.lnm-about-text p:last-child {
    margin-bottom: 0;
}

/* More Text (Full Width) */
.lnm-about-more-text {
    max-width: 1400px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-white);
}

.lnm-about-more-text p {
    margin-bottom: 20px;
}

.lnm-about-more-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

.lnm-community-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.lnm-community-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lnm-placeholder-large {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    color: #666;
    font-size: 24px;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .lnm-header-hero {
        font-size: 56px;
    }

    .lnm-about-content-grid {
        gap: 40px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .lnm-about-inner,
    .lnm-community-inner {
        padding: 60px 20px;
    }

    .lnm-main-header {
        margin-bottom: 40px;
        padding: 0;
    }

    .lnm-header-label {
        font-size: 10px;
        padding: 6px 16px;
    }

    .lnm-header-hero {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .lnm-header-description {
        font-size: 16px;
    }

    .lnm-about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lnm-carousel-nav-prev,
    .lnm-carousel-nav-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lnm-carousel-nav-prev {
        left: 10px;
    }

    .lnm-carousel-nav-next {
        right: 10px;
    }

    .lnm-about-text {
        font-size: 16px;
    }

    .lnm-about-more-text {
        font-size: 16px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
    .lnm-header-hero {
        font-size: 32px;
    }

    .lnm-header-description {
        font-size: 15px;
    }

    .lnm-section-title {
        font-size: 16px;
    }

    .lnm-about-text {
        font-size: 15px;
    }

    .lnm-about-more-text {
        font-size: 15px;
    }
}
