
/* Import Elegant Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Cinzel:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Global Styles */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Gold Accents */
.gold-text {
    color: #D4AF37;
}

.gold-border {
    border-color: #D4AF37;
}

.gold-bg {
    background-color: #D4AF37;
}

/* Gold Rain Effect */
.gold-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.gold-rain::before,
.gold-rain::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.8), transparent);
    animation: gold-rain 3s linear infinite;
}

.gold-rain::before {
    left: 10%;
    animation-delay: 0s;
}

.gold-rain::after {
    left: 30%;
    animation-delay: 1s;
}

/* Create multiple rain drops with JS */
.gold-drop {
    position: absolute;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.7), transparent);
    animation: gold-rain linear infinite;
}

@keyframes gold-rain {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

/* Hero Video Section */
.hero-video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero-content {
    position: relative; /* tidak perlu absolute lagi */
    width: auto;
    text-align: center;
    z-index: 2;
}


.hero-text .mini-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #D4AF37;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0px 3px 10px rgba(0,0,0,0.7);
    letter-spacing: -1px;
}

.hero-main-title-1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 900;
    margin: 0;
    color: #D4AF37;
    text-shadow: 0px 3px 10px rgba(0,0,0,0.7);
    letter-spacing: -1px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 2px solid #D4AF37;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
    z-index: -1;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    background: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #000, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.video-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, #D4AF37, rgba(212, 175, 55, 0.3));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.section-subtitle {
    font-size: 20px;
    color: #aaa;
    max-width: 600px;
    margin: 30px auto 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.video-category {
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.category-title {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 1px;
}

.category-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.video-card {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-card:hover::before {
    opacity: 1;
}

.video-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

.video-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2) saturate(1.1);
    transition: transform 0.6s ease;
}

.video-card:hover .video-wrapper video {
    transform: scale(1.05);
}

.video-info {
    padding: 30px;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
}

.video-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.video-info p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
    font-weight: 300;
}

/* Featured Video Section */
.featured-video-section {
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.featured-video-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.featured-video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    height: 650px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.3) saturate(1.2);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 70px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    color: white;
}

.featured-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -1px;
}

.featured-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    color: #ccc;
    font-weight: 300;
}

.featured-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.stat .label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 2px solid #D4AF37;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* About Section */
.ak-about-bg-color {
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.ak-about {
    position: relative;
    z-index: 2;
}

.ak-about-hr {
    height: 2px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
    margin: 50px 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.anim-title-2 {
    color: #D4AF37;
}

.about-subtext {
    font-size: 18px;
    color: #aaa;
    line-height: 1.8;
    font-weight: 300;
}

.text-btn1 {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #D4AF37;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 2px solid #D4AF37;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.text-btn1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: all 0.6s;
    z-index: -1;
}

.text-btn1:hover::before {
    left: 100%;
}

.text-btn1:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-main-title,
    .hero-main-title-1 {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .category-title {
        font-size: 30px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-video-container {
        height: 450px;
    }
    
    .featured-content {
        padding: 40px;
    }
    
    .featured-content h3 {
        font-size: 32px;
    }
    
    .featured-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }
    
    .stat .number {
        font-size: 32px;
        margin-bottom: 0;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for video cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card {
    animation: fadeInUp 0.8s ease forwards;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }

/* Ensure videos are visible */
video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

/* Force autoplay for all videos */
video[autoplay] {
    animation: forcePlay 1s infinite;
}

@keyframes forcePlay {
    0% { opacity: 0.9; }
    50% { opacity: 1; }
    100% { opacity: 0.9; }
}

/* Gold shimmer effect */
@keyframes goldShimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.gold-shimmer {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.3) 50%, rgba(212, 175, 55, 0.1) 100%);
    background-size: 1000px 100%;
    animation: goldShimmer 3s infinite;
}

/* Floating animation for elements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Glow effect for gold elements */
.glow {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* Elegant scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #D4AF37, #B8941F);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #B8941F, #9A7C1A);
}
.award-gold {
    background: linear-gradient(
        120deg,
        #9c7a2f 0%,
        #c9a24d 30%,
        #ffffff 38%,
        #f5d27a 46%,
        #c9a24d 60%,
        #9c7a2f 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: 600;
    letter-spacing: 0.4px;
    position: relative;

    /* 👇 DIPERLAMBAT */
    animation: goldShimmer 8s ease-in-out infinite;
}

/* Soft glow tetap halus */
.award-gold::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(12px);
    opacity: 0.22;
    z-index: -1;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
