@charset "utf-8";
/* DemonLEDNinja: Ninja Care Packages | CSS */

/* =========================================
  NCP: HERO
========================================= */
.ncp-hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-ncp.png') bottom center/cover no-repeat;
    z-index: 0;
}

.ncp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 125px;
}

/* =========================================
  NCP: INTRO
========================================= */
.ncp-intro {
	padding: 0 20px;
	text-align: center;
}

.ncp-intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ncp-intro-content h1 {
	font-size: 43px;
}

.ncp-intro-content .section-icon img {
    width: 100px;
    max-width: none;
}

/* =========================================
  NCP: PACKAGES
========================================= */
.ncp-packages {
    position: relative;
    padding: 120px 0 160px;
    overflow: hidden;
}

.ncp-packages-wrap {
    position: relative;
}

/* background image */
.ncp-packages-bg {
    position: absolute;
    top: -405px;        /* image lives higher */
    left: 50%;
    transform: translateX(-50%);
    max-width: 520px;
    opacity: .95;
    z-index: 1;
    pointer-events: none;
}

/* grid */
.ncp-package-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 415px;
}

/* cards */
.ncp-package {
    background: rgba(0,0,0,.7);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 0 35px rgba(0,0,0,.6);
}

.ncp-package h3 {
    font-family: 'Metal Mania', cursive;
	color: #fff;
    font-size: 22px;
    margin-bottom: 6px;
}

.ncp-package h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

/* tier title glow */
.wood h2 {
    text-shadow: 0 0 10px rgba(107, 74, 45, 0.8);
}

.bronze h2 {
    text-shadow: 0 0 10px rgba(184, 115, 51, 0.85);
}

.silver h2 {
    text-shadow: 0 0 12px rgba(207, 214, 220, 0.9);
}

.gold h2 {
    text-shadow: 0 0 8px rgba(200, 200, 200, 0.5);
}

.stars {
    font-size: 26px;
    letter-spacing: 4px;
}

/* tier colors + glow */
.wood {
    border: 4px solid #6b4a2d;
    box-shadow: 0 0 18px rgba(107, 74, 45, 0.55);
}

.bronze {
    border: 4px solid #b87333;
    box-shadow: 0 0 20px rgba(184, 115, 51, 0.6);
}

.silver {
    border: 4px solid #cfd6dc;
    box-shadow: 0 0 22px rgba(207, 214, 220, 0.6);
}

.gold {
    border: 3px solid #777;
    box-shadow: 0 0 18px rgba(200, 200, 200, 0.35);
    opacity: .6;
}

.ncp-intro {
	padding: 0 20px;
	text-align: center;
}

/* =========================================
  NCP: SUBS
========================================= */
.ncp-subs {
    margin-top: 160px;
	position: relative;
    z-index: 2;
    text-align: center;
}

.tier-title,
.tier-text {
    color: #fff !important;
}

.ncp-subs-extra {
    margin-top: 20px;
    text-align: center;
	color: #fff;
	font-size: 18px;
}

.ncp-subs-extra a {
	font-family: 'Metal Mania', cursive;
	font-size: 18px;
	margin: 0 20px;
}

/* =========================================
  NCP: ITEMS
========================================= */
.ncp-items {
    padding: 175px 0;
    text-align: center;
}

/* grid */
.ncp-items-grid {
	max-width: 860px;
    margin: 0 auto; 
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
}

/* item */
.ncp-item {
    max-width: 275px;
    margin: 0 auto;
}

.ncp-item-img {
    position: relative;
    margin-bottom: 18px;
    overflow: hidden;
}

.ncp-item-img img {
    width: 100%;
    transition: transform 0.4s ease;
}

/* image hover zoom */
.ncp-item-img:hover img {
    transform: scale(1.05);
    cursor: pointer;
}

.ncp-item h4 {
    font-family: 'Metal Mania', cursive;
    font-size: 18px;
    margin-bottom: 10px;
    color: #c25bd8;
}

.ncp-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

/* lightbox */
.ncp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.ncp-lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 40px rgba(0,0,0,.8);
}
