/* ==========================================
   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: flex-start;
}

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

.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: 3;
    max-width: 700px;
    width: 100%;
    padding: 40px 0 40px 80px;
    text-align: left;
}

.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;
}

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

.headerBanner .banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.headerBanner .eyebrow-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 215, 0, 0.6);
}

.headerBanner .eyebrow-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #FFD700;
    text-transform: uppercase;
}

.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: 550px;
}

.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;
}

.headerBanner .bannerBoxes {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background: radial-gradient(circle at right center, rgba(255, 215, 0, 0.2) 0%, transparent 80%);
    z-index: 2;
}

.headerBanner .bannerBoxes .box {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 3px;
    animation: floatBox 10s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerBanner .bannerBoxes .box i {
    font-size: 42px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 1);
    text-stroke: 2px rgba(0, 0, 0, 1);
}

.headerBanner .bannerBoxes .box:nth-child(1) {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
}

.headerBanner .bannerBoxes .box:nth-child(2) {
    top: 40%;
    left: 40%;
    animation-delay: 2s;
}

.headerBanner .bannerBoxes .box:nth-child(3) {
    top: 70%;
    left: 20%;
    animation-delay: 4s;
}

@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: 768px) {
    .headerBanner {
        height: 70vh;
        margin: 0 20px;
        margin-top: 10vh;
        border-radius: 3px;
    }
    
    .headerBanner-content {
        padding: 30px 20px;
    }
    
    .headerBanner .banner-title {
        font-size: 36px;
    }
    
    .headerBanner .banner-description {
        font-size: 15px;
    }
}