/* Hyun Energy Custom Styles */

/* Gradient background for top bar */
.gradient-bg {
    background: linear-gradient(90deg, #0e3a99 0%, #36910f 100%);
}

/* Contact info hover effects */
.flex.items-center.text-white a {
    position: relative;
    font-weight: 500;
    text-decoration: none;
}

.flex.items-center.text-white a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FCD34D; /* yellow-300 */
    transition: width 0.3s ease;
}

.flex.items-center.text-white a:hover::after {
    width: 100%;
}

/* Additional hover effect for icons */
.flex.items-center.text-white:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Video Background Styles */
.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* Makes the video non-interactive */
}

.video-wrapper iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio (9/16*100 = 56.25) */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio (16/9*100 = 177.77) */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-primary-blue {
    background: linear-gradient(90deg, rgba(15, 56, 153, 0.6) 0%, rgba(54, 145, 15, 0.5) 100%);
}

/* Modern Button Styles */
.btn-modern-primary, .btn-modern-secondary {
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    outline: none;
    letter-spacing: 0.025em;
}

.btn-modern-primary::before, .btn-modern-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1;
    border-radius: 0.5rem;
}

.btn-modern-primary:hover, .btn-modern-secondary:hover {
    transform: translateY(-2px);
}

.btn-modern-primary:hover::before, .btn-modern-secondary:hover::before {
    transform: translateY(0);
}

.btn-modern-primary:active, .btn-modern-secondary:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Progressive Reveal System */
.reveal-item {
    position: relative;
}

.timeline-node {
    z-index: 10;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.timeline-node.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-content {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.reveal-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-image {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.reveal-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-final {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
}

.reveal-final.visible {
    opacity: 1;
    transform: scale(1);
}

/* Timeline Progress Line */
#progress-line {
    transition: height 1s ease-out;
    border-radius: 2px;
}

/* Hover effects for content cards */
.reveal-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.reveal-image:hover {
    transform: translateY(-5px);
}

/* Step indicator animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.timeline-node:hover {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .reveal-content, .reveal-image {
        transform: translateY(30px);
        opacity: 0;
    }
    
    .reveal-content.visible, .reveal-image.visible {
        transform: translateY(0);
        opacity: 1;
    }
    
    .timeline-node {
        position: relative;
        left: auto;
        transform: translateX(-50%) scale(0.8);
    }
    
    .timeline-node.visible {
        transform: translateX(-50%) scale(1);
    }
}

/* Enhanced shadow effects */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Gradient text utilities */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* 
.heading-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 33%;
    height: 4px;
    background-color: var(--primary-blue, #1a56db);
    border-radius: 2px;
} */