* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #000;
    line-height: 1.6;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #2df68c;
    border-radius: 25px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 80px;
}

.language-toggle:hover {
    background-color: #2df68c;
    color: #000;
}

.translate-icon {
    width: 20px;
    height: 20px;
    color: #2df68c;
    transition: color 0.3s ease;
}

.language-toggle:hover .translate-icon {
    color: #000;
}

.lang-text {
    font-size: 14px;
    font-weight: bold;
    color: #2df68c;
    transition: color 0.3s ease;
}

.language-toggle:hover .lang-text {
    color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.hero {
    position: relative;
    padding: 80px 0 0 0;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    /* display: flex; */
    align-items: center;
}

.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -3;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #04a58a80;
    z-index: -2;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-right: 120px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    /* width: 200px; */
    height: 200px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #fff;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.btn:hover {
    background-color: #fff;
    color: #000;
}

.btn-primary {
    background-color: #2df68c;
    border-color: #2df68c;
    color: #000;
}

.btn-primary:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.icon {
    width: 20px;
    height: 20px;
}

.links-grid .icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

/* Gallery Section */
.gallery {
    padding: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 50%, #2df68c 100%);
    position: relative;
    z-index: 1;
    min-height: 360px;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    padding: 40px 0 80px 0;
    width: max-content;
}

.gallery-scroll.auto-scroll {
    animation: scrollLeft 40s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ensure animation is visible */
.gallery-scroll.auto-scroll:hover {
    animation-play-state: paused;
}

.gallery-scroll img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border: 2px solid #000;
    filter: grayscale(100%) contrast(1.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-scroll img:hover {
    filter: grayscale(0%) contrast(1);
    border-color: #2df68c;
    transform: scale(1.05);
}

/* About Section */
.about {
    background-color: #2df68c;
    color: #fff;
    padding: 80px 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
    transform: none !important;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #000;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 0 0 40%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #000;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #000;
}

/* KOL Section */
.kol {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.kol h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2df68c;
}

.kol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.kol-grid a {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kol-grid img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 3px solid #000;
    border-radius: 10px;
    filter: grayscale(100%) contrast(1.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.kol-grid a:hover img {
    filter: grayscale(0%) contrast(1);
    border-color: #2df68c;
    transform: scale(1.1);
}

/* Links Section */
.links {
    padding: 60px 0;
    background-color: #fff;
    border-top: 2px solid #2df68c;
}

.links h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2df68c;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.links-grid a {
    color: #000;
    text-decoration: none;
    padding: 20px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.links-grid a:hover {
    background-color: #2df68c;
    color: #000;
    border-color: #2df68c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subtitle {
        font-size: 1.2rem;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        justify-content: center;
    }

    .hero {
        min-height: 70vh;
    }
    
    .hero .container {
        padding-right: 90px;
    }

    .logo {
        /* width: 150px; */
        height: 150px;
    }

    .gallery-scroll img {
        width: 250px;
        height: 300px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        flex: none;
    }

    .kol-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kol-grid img {
        width: 150px;
        height: 150px;
    }
    
    .language-toggle {
        top: 15px;
        right: 15px;
        padding: 6px 10px;
        max-width: 70px;
    }
    
    .translate-icon {
        width: 16px;
        height: 16px;
    }
    
    .lang-text {
        font-size: 11px;
    }
}