/* ═══════════════════════════════════════════════
 * Sirius Homepage — Frontend Styles
 * ═══════════════════════════════════════════════ */

/* ── Section Wrapper ──────────────────────────── */
.shp-section {
    background-color: #0b1a2e;
    background-repeat: repeat;
    background-position: center top;
    background-size: auto;
    width: 100%;
    padding: 0 0 50px;
}

.shp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Categories Grid Override ─────────────────── */
.shp-categories {
    padding: 60px 0 40px;
}

.shp-categories .sirius-categories-grid {
    margin: 0;
}

/* ── Rope Divider ─────────────────────────────── */
.shp-rope {
    text-align: center;
    padding: 30px 0 20px;
}

.shp-rope img {
    max-width: 80px;
    height: auto;
    opacity: 0.7;
    margin: 0 auto;
}

/* ── Tagline ──────────────────────────────────── */
.shp-tagline {
    color: #c8c8c8;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 60px;
    padding: 0 20px;
    letter-spacing: 0.01em;
}

/* ── Feature Grid ─────────────────────────────── */
.shp-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* ── Single Feature ───────────────────────────── */
.shp-feature {
    text-align: center;
    padding: 24px 16px;
}

.shp-feature-icon {
    margin-bottom: 20px;
}

.shp-feature-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto;
}

.shp-feature-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
    overflow-wrap: break-word;
    word-break: break-word;
}

.shp-feature-desc {
    color: #a0aab4;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ═══════════════════════════════════════════════
 * Boat Video Section
 * ═══════════════════════════════════════════════ */

.shp-boat {
    width: 100%;
    background: #ffffff;
}

/* ── Text Area ────────────────────────────────── */
.shp-boat-text {
    text-align: center;
    padding: 60px 24px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.shp-boat-heading {
    color: #1b2e4a;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: 0.01em;
}

.shp-boat-desc {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ── Video + Gradient ─────────────────────────── */
.shp-boat-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.shp-boat-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-image: linear-gradient(0deg, #FFFFFF00 53%, #FFFFFF 93%);
}

.shp-boat-video-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.shp-boat-video-wrap video.shp-loaded {
    opacity: 1;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
    .shp-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .shp-section {
        padding: 0 0 60px;
    }

    .shp-categories {
        padding: 40px 0 20px;
    }

    .shp-tagline {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .shp-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .shp-feature {
        padding: 20px 16px;
    }

    .shp-boat-text {
        padding: 40px 20px 30px;
    }

    .shp-boat-heading {
        font-size: 1.4rem;
    }

    .shp-boat-desc {
        font-size: 0.9rem;
    }

    .shp-boat-video-wrap {
        aspect-ratio: 4 / 3;
    }
}
