/* =========================================================
   🔵 LAYOUT
   Oldal szerkezet, spacing, fő blokkok
   ========================================================= */

/* NAVBAR */
.navbar {
    border-bottom: 1px solid #ffffff47;
}

/* Bootstrap override */
.bg-dark {
    background: black !important;
}

/* LOGO */
.orion_logo {
    max-height: 40px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden; /* 🔥 fontos */
    border-bottom:1px solid rgba(255,255,255,0.15);
}
.bg-image {
    height:55vh!important;
}
/* HERO MEDIA (VIDEO + IMAGE) */
.hero video,
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* KÉP SPECIFIKUS */
.hero-bg-image {
    background-size: cover;
    background-position: center;
}

/* HERO OVERLAY */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 40, 0.75);
    z-index: 0;
}
.bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

/* CONTENT FELHOZÁSA */
.hero .container {
    position: relative;
    z-index: 2;
}



.orion-products-section h2 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.featured-product-card {
    margin-bottom: 2rem;
}

.featured-product-image-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 420px;
    background: #0f172a;
}

.featured-product-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.featured-product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.18), rgba(0,0,0,0));
}

.featured-product-overlay h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.product-card-small {
    background: #0f1d4a;
    border: 1px solid rgba(61, 105, 255, 0.45);
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.product-card-small-image-wrap {
    overflow: hidden;
}

.product-card-small-image-wrap img {
    height: 260px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card-small:hover .product-card-small-image-wrap img {
    transform: scale(1.05);
}

.product-card-small-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    background: #13235c;
}

.row-center {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    align-content: stretch;
    justify-content: space-evenly;
    flex-wrap: wrap;
}


/* SECTION */
.section {
    padding: 100px 0;
    border-bottom:1px solid rgba(255,255,255,0.15);
}

/* FOOTER */
footer {
    background: #050a20;
    padding: 40px 0;
}