/* ====================================
   NC Universe Page Styles
   ==================================== */

.universe-hero {
    position: relative;
    margin-top: 80px;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.universe-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.universe-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.universe-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.universe-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.universe-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    color: white;
}

.universe-hero-content .subtitle {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    max-width: 700px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: #141414;
}

.philosophy-content h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.lead {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.philosophy-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.philosophy-icon {
    font-size: 56px;
    margin-bottom: 25px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.philosophy-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Features Showcase */
.features-showcase {
    padding: 100px 0;
    background: var(--bg-light);
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.showcase-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Gallery Full */
.gallery-full {
    padding: 100px 0;
    background: #141414;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-masonry-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-masonry-item:hover img {
    transform: scale(1.1);
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.social-feed {
    max-width: 600px;
    margin: 0 auto;
}

.instagram-embed {
    background: #141414;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.instagram-embed h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

.instagram-embed p {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

/* CTA Models Section */
.cta-models {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.cta-models h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-models p {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.models-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.model-quick-link {
    background: #141414;
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.model-quick-link:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
}

.model-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    display: block;
}

.model-desc {
    font-size: 14px;
    color: var(--text-light);
    display: block;
}

/* ====================================
   Responsive Design
   ==================================== */

@media (max-width: 1024px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .universe-hero {
        height: 60vh;
        min-height: 500px;
    }

    .universe-hero-content h1 {
        font-size: 38px;
    }

    .universe-hero-content .subtitle {
        font-size: 18px;
    }

    .philosophy-content h2 {
        font-size: 36px;
    }

    .lead {
        font-size: 17px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .showcase-content h3 {
        font-size: 26px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .models-quick-links {
        grid-template-columns: 1fr;
    }

    .cta-models h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .universe-hero-content h1 {
        font-size: 28px;
    }

    .philosophy-item {
        padding: 30px 20px;
    }

    .instagram-embed {
        padding: 40px 25px;
    }
}
