/* Import Inter Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* Root Variables */
:root {
    --color-primary-text: #1D1D1D;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-orange: #F07C00;
    --font-primary: 'Inter', -apple-system, Roboto, Helvetica, sans-serif;
}

/* General Page Styles */
.nsabout-page {
    background: var(--color-white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Decorative Elements */
.bg-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-dancer {
    position: absolute;
    opacity: 0.1;
    width: 359px;
    height: 74px;
    object-fit: contain;
}

.bg-dancer-1 {
    top: 123px;
    left: 160px;
}

.bg-dancer-2 {
    top: 208px;
    left: 160px;
}

.bg-dancer-3 {
    top: 880px;
    right: 280px;
}

.bg-dancer-4 {
    top: 1140px;
    right: 280px;
}

/* Container */
.nsabout-container {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* Hero Image Section */
.nsabout-hero-section {
    margin: 3rem 0 4rem;
}

.hero-main-image {
    width: 100%;
    max-width: 1120px;
    height: auto;
    aspect-ratio: 112 / 57;
    border-radius: 25px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Content Section */
.nsabout-content-section {
    margin-top: 4rem;
}

/* Description Text */
.description-text {
    padding-right: 2rem;
}

.description-text p {
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

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

/* Feature Points */
.feature-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 49px;
    height: 68px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    flex: 1;
    padding-top: 0.625rem;
}

.feature-text p {
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Styles */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .nsabout-container {
        max-width: 1320px;
    }

    .description-text p {
        font-size: 1.5rem;
    }

    .feature-text p {
        font-size: 1.5rem;
    }
}

/* Desktop (992px to 1399px) */
@media (max-width: 1399px) {
    .bg-dancer {
        width: 280px;
        height: auto;
    }

    .bg-dancer-1 {
        left: 100px;
    }

    .bg-dancer-2 {
        left: 100px;
    }

    .bg-dancer-3 {
        right: 200px;
    }

    .bg-dancer-4 {
        right: 200px;
    }

    .description-text p {
        font-size: 1.375rem;
    }

    .feature-text p {
        font-size: 1.375rem;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .nsabout-container {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }

    .nsabout-hero-section {
        margin: 2rem 0 3rem;
    }

    .nsabout-content-section {
        margin-top: 3rem;
    }

    .description-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .description-text p {
        font-size: 1.25rem;
        line-height: 1.6;
    }

    .feature-points {
        padding-left: 0;
        gap: 2.5rem;
    }

    .feature-text p {
        font-size: 1.25rem;
    }

    .bg-dancer {
        width: 220px;
    }

    .bg-dancer-1 {
        left: 50px;
        top: 150px;
    }

    .bg-dancer-2 {
        left: 50px;
        top: 220px;
    }

    .bg-dancer-3 {
        right: 100px;
        top: 700px;
    }

    .bg-dancer-4 {
        right: 100px;
        top: 850px;
    }
}

/* Mobile (576px to 767px) */
@media (max-width: 767px) {
    .nsabout-container {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .nsabout-hero-section {
        margin: 1.5rem 0 2.5rem;
    }

    .hero-main-image {
        border-radius: 15px;
    }

    .nsabout-content-section {
        margin-top: 2.5rem;
    }

    .description-text {
        margin-bottom: 2.5rem;
    }

    .description-text p {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .feature-points {
        gap: 2rem;
    }

    .feature-item {
        gap: 1.25rem;
    }

    .feature-icon {
        width: 40px;
        height: 55px;
    }

    .feature-text p {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .bg-dancer {
        width: 180px;
    }

    .bg-dancer-1 {
        left: 20px;
        top: 180px;
    }

    .bg-dancer-2 {
        left: 20px;
        top: 240px;
    }

    .bg-dancer-3 {
        right: 50px;
        top: 600px;
    }

    .bg-dancer-4 {
        right: 50px;
        top: 720px;
    }
}

/* Extra Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .nsabout-container {
        padding-top: 0.75rem;
        padding-bottom: 1.5rem;
    }

    .nsabout-hero-section {
        margin: 1rem 0 2rem;
    }

    .hero-main-image {
        border-radius: 12px;
    }

    .nsabout-content-section {
        margin-top: 2rem;
    }

    .description-text {
        margin-bottom: 2rem;
    }

    .description-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .feature-points {
        gap: 1.75rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 35px;
        height: 48px;
    }

    .feature-text {
        padding-top: 0.5rem;
    }

    .feature-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Hide background dancers on very small screens to reduce clutter */
    .bg-dancer {
        display: none;
    }
}

/* Extra Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .description-text p {
        font-size: 0.95rem;
    }

    .feature-text p {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 32px;
        height: 44px;
    }

    .hero-main-image {
        border-radius: 10px;
    }
}
