/* ==========================================
   COMPONENTS CSS - Minimal Design System
   ========================================== */

/* OUTLINE TEXT */
.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px #0a0a0a;
    text-stroke: 1px #0a0a0a;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.01em;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FFD700;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn i {
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Button Primary - Dark Background */
.btn-primary {
    color: #ffffff;
    background: #0a0a0a;
}

.btn-primary:hover {
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Button Secondary - Light Background */
.btn-secondary {
    color: #0a0a0a;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    color: #0a0a0a;
    border-color: #FFD700;
    gap: 16px;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
}

/* Button Glass - Transparent with White Text */
.btn-glass {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-glass::before {
    background: rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Button Sizes */
.btn-sm {
    padding: 14px 24px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}




/* headerBanner */

.headerBanner {
    position: relative;
    height: 60vh;
    margin: 0 70px;
    margin-top: 12vh;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerBanner-bg {
    overflow: hidden;
}

.headerBanner .banner-media {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.headerBanner video.banner-media {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
}

.headerBanner img.banner-media {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    min-width: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover !important;
    object-position: center;
    transform: translate(-50%, -50%);
}

.banner-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-size: clamp(120px, 25vw, 400px);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    text-transform: uppercase;
    line-height: 1;
}

.headerBanner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 2;
}

.headerBanner-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 80px;
    text-align: center;
}

.headerBanner .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: #ffffff;
    border-radius: 2px;
    margin-bottom: 40px;
    font-size: 13px;
    font-weight: 500;
}

.headerBanner .breadcrumb a {
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.headerBanner .breadcrumb a:hover {
    color: #FFD700;
}

.headerBanner .breadcrumb i {
    font-size: 10px;
    color: rgba(10, 10, 10, 0.4);
}

.headerBanner .breadcrumb span {
    color: #0a0a0a;
    font-weight: 600;
    max-width: min(220px, 50vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.headerBanner .banner-main {
    margin-bottom: 0;
}

.banner-3d-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%) rotate(60deg);
    z-index: 3;
    opacity: 0.4;
    overflow: hidden;
}

.banner-3d-container canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    pointer-events: auto;
}

.banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.headerBanner .banner-title .outline-text {
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
    text-stroke: 1.5px #ffffff;
}

.banner-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

.headerBanner .banner-decor {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 4;
    pointer-events: none;
}

.headerBanner .banner-decor::before,
.headerBanner .banner-decor::after {
    content: '';
    position: absolute;
    background: #ffffff;
}

.headerBanner .banner-decor::before {
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
}

.banner-decor::after {
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
}

.headerBanner .banner-decor.tl {
    top: 10px;
    left: 10px;
}

.headerBanner .banner-decor.tr {
    top: 10px;
    right: 10px;
}

.headerBanner .banner-decor.tr::before {
    left: auto;
    right: 0;
}

.headerBanner .banner-decor.bl {
    bottom: 10px;
    left: 10px;
}

.headerBanner .banner-decor.bl::after {
    top: auto;
    bottom: 0;
}

.headerBanner .banner-decor.br {
    bottom: 10px;
    right: 10px;
}

.headerBanner .banner-decor.br::before {
    left: auto;
    right: 0;
}

.headerBanner .banner-decor.br::after {
    top: auto;
    bottom: 0;
}








@keyframes floatBox {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-4px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@media (max-width: 1200px) {
    .banner-3d-container {
        width: 160%;
        height: 160%;
        opacity: 0.3;
        transform: translate(-50%, -50%) rotate(50deg);
    }
}

@media (max-width: 768px) {
    .headerBanner {
        height: 48vh;
        margin: 0 16px;
        margin-top: max(10vh, 72px);
        border-radius: 3px;
    }
    
    .headerBanner-bg {
        overflow: hidden;
    }
    
    .headerBanner .banner-media {
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .headerBanner .banner-3d-container {
        opacity: 0.22;
        pointer-events: none;
    }

    .headerBanner .banner-3d-container canvas {
        pointer-events: none;
    }
    
    .headerBanner-content {
        padding: 20px 16px;
    }
    
    .headerBanner .breadcrumb {
        margin-bottom: 16px;
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .headerBanner .banner-title {
        font-size: 28px;
    }
    
    .headerBanner .banner-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .headerBanner {
        height: 42vh;
        margin: 0 12px;
        margin-top: max(8vh, 64px);
    }
    
    .headerBanner .banner-title {
        font-size: 24px;
    }
    
    .headerBanner .banner-description {
        font-size: 13px;
    }
}