/* Orion Hero Swiper Styles - Standard CSS */

/* Hero Section Base */
.orion-hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

/* Full-bleed section that ignores page container constraints */
.orion-fullbleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

@media (max-width: 1023px) {
    .orion-hero-section {
        height: 700px;
    }
}

@media (max-width: 639px) {
    .orion-hero-section {
        height: 450px;
    }
}

/* Swiper Container */
.orion-hero-section .swiper {
    width: 100%;
    height: 100%;
}

.orion-hero-section .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Slides */
.orion-hero-section .orion-main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Content Container */
.orion-hero-section .orion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Content Positioning */
.orion-hero-section .orion-content-wrapper {
    padding-top: 150px;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (min-width: 1280px) {
    .orion-hero-section .orion-content-wrapper {
        padding-top: 200px;
    }
}

@media (min-width: 1536px) {
    .orion-hero-section .orion-content-wrapper {
        padding-top: 290px;
    }
}

/* Slide Content */
.orion-slide-content {
    background: rgba(0, 0, 0, 0.35);
    max-width: 534px;
    width: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

@media (min-width: 640px) {
    .orion-slide-content {
        gap: 28px;
    }
}

@media (min-width: 1280px) {
    .orion-slide-content {
        gap: 32px;
        padding: 43px;
        max-width: 575px;
    }
}

@media (min-width: 1440px) {
    .orion-slide-content {
        max-width: 650px;
    }
}

@media (min-width: 1536px) {
    .orion-slide-content {
        max-width: 800px;
        gap: 48px;
    }
}

/* Overlay */
.orion-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Typography */
.orion-slide-category {
    color: white;
    margin: 0;
    font-weight: normal;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 639px) {
    .orion-slide-category {
        text-align: center;
    }
}

.orion-slide-heading {
    color: white;
    font-weight: normal;
    margin: 0;
    width: 90%;
    text-align: left;
    font-size: 48px;
    line-height: 1.2;
}

@media (max-width: 639px) {
    .orion-slide-heading {
        text-align: center;
        width: 100%;
        font-size: 32px;
    }
}

@media (max-width: 1023px) {
    .orion-slide-heading {
        font-size: 40px;
    }
}

/* Thumbnail Cards Container */
.orion-thumbnail-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .orion-thumbnail-container {
        display: block;
    }
}

/* Thumbnail Cards */
.orion-thumbnail-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.orion-thumbnail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.orion-thumbnail-card.swiper-slide-active {
    border-color: #186F65;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 111, 101, 0.2);
}

/* Card Content */
.orion-thumbnail-card .orion-card-text {
    flex: 1;
    padding: 12px 0;
}

.orion-thumbnail-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a1d;
    line-height: 1.3;
}

.orion-thumbnail-card-desc {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

/* Card Images */
.orion-thumbnail-card .orion-card-image {
    width: 105px;
    height: 86px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 1440px) {
    .orion-thumbnail-card .orion-card-image {
        width: 125px;
        height: 102px;
    }
}

.orion-thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper Navigation */
.orion-hero-section .swiper-button-next,
.orion-hero-section .swiper-button-prev {
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: -17px;
}

.orion-hero-section .swiper-button-next:hover,
.orion-hero-section .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.orion-hero-section .swiper-button-next:after,
.orion-hero-section .swiper-button-prev:after {
    font-size: 15px;
    color: white;
}

.orion-hero-section .swiper-button-next {
    right: 10px;
}

.orion-hero-section .swiper-button-prev {
    left: 10px;
}

/* Swiper Pagination */
.orion-hero-section .swiper-pagination {
    bottom: 20px;
    z-index: 10;
}

.orion-hero-section .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.orion-hero-section .swiper-pagination-bullet-active {
    background: #186F65;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .orion-thumbnail-container {
        display: none;
    }
    
    .orion-slide-content {
        max-width: 100%;
        padding: 20px;
    }
}

/* Animation Classes */
.orion-hero-section .swiper-slide-active .orion-slide-content {
    animation: orionSlideInUp 0.8s ease-out;
}

@keyframes orionSlideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.orion-absolute {
    position: absolute;
}

.orion-relative {
    position: relative;
}

.orion-w-full {
    width: 100%;
}

.orion-h-full {
    height: 100%;
}

.orion-flex {
    display: flex;
}

.orion-flex-col {
    flex-direction: column;
}

.orion-items-center {
    align-items: center;
}

.orion-justify-center {
    justify-content: center;
}

.orion-justify-between {
    justify-content: space-between;
}

.orion-z-10 {
    z-index: 10;
}

.orion-z-1 {
    z-index: 1;
}

.orion-text-white {
    color: white;
}

.orion-m-0 {
    margin: 0;
}

.orion-font-normal {
    font-weight: normal;
}

.orion-object-cover {
    object-fit: cover;
}

.orion-loading-lazy {
    loading: lazy;
}

/* Swiper Thumbnail Responsive Settings */
.orion-thumbnail-swiper {
    padding: 0 6px;
}

@media (min-width: 1024px) {
    .orion-thumbnail-swiper {
        padding: 0 10px;
    }
}

/* Additional Responsive Typography */
@media (max-width: 479px) {
    .orion-slide-heading {
        font-size: 28px;
    }
    
    .orion-slide-category {
        font-size: 12px;
    }
}

/* Focus States for Accessibility */
.orion-thumbnail-card:focus {
    outline: 2px solid #186F65;
    outline-offset: 2px;
}

.orion-hero-section .swiper-button-next:focus,
.orion-hero-section .swiper-button-prev:focus {
    outline: 2px solid #186F65;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .orion-slide-content {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .orion-thumbnail-card {
        border: 2px solid #000;
    }
    
    .orion-thumbnail-card.swiper-slide-active {
        border-color: #000;
        background: #fff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .orion-thumbnail-card,
    .orion-hero-section .swiper-button-next,
    .orion-hero-section .swiper-button-prev,
    .orion-slide-content {
        transition: none;
    }
    
    .orion-hero-section .swiper-slide-active .orion-slide-content {
        animation: none;
    }
}