/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #111;
    color: white;
}

.myvibe {
    font-size: large;
    font-weight: 600;
}

.vibe{
    color: #6F61EF;
}

/* Navbar */
.navbar {
    position: fixed; /* Menjadikan navbar tetap di atas */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(26, 26, 26, 1); /* Opacity penuh awal */
    transition: background 0.3s ease-in-out;
    z-index: 1000;
}

.scrolled {
    background: rgba(26, 26, 26 , 1); /* Mengurangi opacity saat discroll */
    opacity: 20%;
}


.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.logo img {
    width: 60px;
    margin-right: 10px;
}

.nav-links a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
}

.nav-links span {
    display: none;
}

.nav-links img {
    width: 25px;
}


.btn-download {
    background-color: #6b46c1;
    padding: 10px 20px;
    border-radius: 20px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu .line {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* Animasi Hamburger */
.hamburger-menu.open .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.open .line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 80px;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-text {
    width: 50%;
    padding: 40px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
}

.highlight {
    color: #6b46c1;
}

.hero-text p {
    margin-top: 20px;
    font-size: 18px;
    color: #bbb;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    background-color: #6b46c1;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}


.rating-section {
    color: white;
    padding: 50px;
    text-align: left;
    font-size: 25px;
}



.subtext {
    color: gray;
    font-weight: 600;
}



/* Efek Animasi */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible, .slide-in.visible {
    opacity: 1;
    transform: translate(0);
}

.features {
    display: flex;
    flex-direction: row;  /* Align elements in a row */
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px;
    gap: 30px;  /* Spacing between the text and the box */
}

.feature-text {
    width: 50%;  /* Set width to allow space for text and box */
    font-size: 18px;
    line-height: 1.7;  /* Adjust line spacing */
    color: #bbb;
    margin-bottom: 20px;  /* Spacing between paragraphs */
}

.feature-text h2 {
    color : white;
    font-size: 20px;
    font-weight: 600;
}

.feature-text p {
    margin-bottom: 20px;  /* Spacing between paragraphs */
    font-size: 15px;
}

.feature-box {
    width: 50%;  /* Make box occupy the remaining space */
    height: 360px;
    background-color: #6b46c1;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5px;  /* Inner padding for box */
}

.feature-box video {
    width: 100%; /* Membuat video memenuhi lebar kotak */
    height: 120%; /* Membuat video memenuhi tinggi kotak */
    object-fit: cover; /* Memastikan video tidak terdistorsi dan memenuhi kotak */
    border-radius: 20px;
}

 .rating-box {
        width: 100%; /* Sesuaikan dengan kebutuhan */
        height: 550px; /* Sesuai dengan yang kamu tentukan */
        overflow:   hidden; /* Menghindari overflow jika video lebih besar */
        display: flex; /* Agar video tetap di tengah */
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        margin-top: 30px;
    }
    
    .rating-box video {
        width: 100%; /* Membuat video memenuhi lebar kotak */
        height: 100%; /* Membuat video memenuhi tinggi kotak */
        object-fit: cover; /* Memastikan video tidak terdistorsi dan memenuhi kotak */
    }



/* Tampilan section special-vibe */
.special-vibe {
    display: flex;
    flex-direction: column;  /* Menambahkan flex-direction untuk menyusun elemen vertikal */
    justify-content: center;
    align-items: left;
    padding: 50px 50px;
    background-color: #111;
    margin-bottom: 10px;
}

/* Teks pada special-vibe */
.special-vibe-text {
    width: 80%;  /* Pastikan teks mengambil seluruh lebar */
    text-align: left;  /* Menyusun teks agar rata tengah */
}

.special-vibe-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.special-vibe-text p {
    font-size: 18px;
    color: #bbb;
}

/* Kotak ungu */
.special-vibe-box {
    width: 100%; /* Sesuaikan dengan kebutuhan */
        height: 550px; /* Sesuai dengan yang kamu tentukan */
        overflow: hidden; /* Menghindari overflow jika video lebih besar */
        display: flex; /* Agar video tetap di tengah */
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        margin-top: 30px;
        

}

.special-vibe-box video {
    width: 100%; /* Membuat video memenuhi lebar kotak */
    height: 100%; /* Membuat video memenuhi tinggi kotak */
    object-fit: cover; /* Memastikan video tidak terdistorsi dan memenuhi kotak */
}




/* Container untuk feature cards */
.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;  /* Memberikan jarak antar card */
    padding: 50px;
    background-color:#111;
    width: 100%;  /* Pastikan container penuh */
    box-sizing: border-box; /* Agar padding tidak menambah ukuran */
    margin-top: 20px;  /* Memberikan jarak atas jika diperlukan */
    align-items: flex-start;  /* Menjaga keselarasan cards agar sejajar di bagian atas */
}

/* Setiap feature (h3, card, dan p) */
.feature {
    display: flex;
    flex-direction: column;  /* Menyusun judul, card, dan teks dalam satu kolom */
    align-items: left;  /* Membuat semuanya berada di tengah */
    width: 32%;  /* Setiap elemen mengambil 32% dari lebar, memastikan ada jarak di antara card */
    box-sizing: border-box;
    text-align: left;
}

/* Style untuk setiap card */
.card {
    background-color: #f0f0f0;
    width: 100%;
    height: 500px;  /* Sesuaikan tinggi kotak */
    border-radius: 20px;
    margin-top: 30px;  /* Memberikan jarak antara card dan teks */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Menghindari overflow jika video lebih besar */


}

.card img {
    width: 100%; /* Membuat video memenuhi lebar kotak */
    height: 100%; /* Membuat video memenuhi tinggi kotak */
    object-fit: cover; /* Memastikan video tidak terdistorsi dan memenuhi kotak */

}

/* Teks untuk setiap feature */
.feature h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    color: white;
}

.feature p {
    font-size: 13px;
    color: #666;
}

/* Tampilan section platform-vibe */
.platform-vibe {
    display: flex;
    flex-direction: column;  /* Menambahkan flex-direction untuk menyusun elemen vertikal */
    justify-content: center;
    align-items: left;
    padding: 50px 50px;
    background-color: #111;
}

/* Teks pada platform-vibe */
.platform-vibe-text {
    width: 80%;  /* Pastikan teks mengambil seluruh lebar */
    text-align: left;  /* Menyusun teks agar rata tengah */
}

.platform-vibe-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.platform-vibe-text p {
    font-size: 18px;
    color: #bbb;
}

/* Kotak ungu */
.platform-vibe-box {
    width: 100%; /* Sesuaikan dengan kebutuhan */
        height: 100%; /* Sesuai dengan yang kamu tentukan */
        overflow: hidden; /* Menghindari overflow jika video lebih besar */
        display: flex; /* Agar video tetap di tengah */
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        margin-top: 20px;
        margin-bottom: -100px;
}

.platform-vibe-box video {
    width: 100%; /* Membuat video memenuhi lebar kotak */
    height: 180%; /* Membuat video memenuhi tinggi kotak */
    object-fit: cover; /* Memastikan video tidak terdistorsi dan memenuhi kotak */

}


/* Container untuk fitur cards */
.chat-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;  /* Jarak antar card */
    padding: 50px;
    background-color: #111;
    width: 100%;
    box-sizing: border-box;
}

/* Styling untuk tiap feature */
.chat {
    display: flex;
    flex-direction: column;  /* Mengatur elemen vertikal */
    align-items: left;  /* Mengatur isi card agar berada di tengah */
    width: 32%;  /* Lebar card */
    box-sizing: border-box;
    text-align: left;
    padding: 20px;
}

/* Styling judul */
.chat h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

/* Styling deskripsi */
.chat p {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 0px;
}

/* Garis pemisah */
.separator {
    width: 100%;
    border: 1px solid #bbb;
    margin-bottom: 10px;
}

/* Styling untuk section resources */
.resources {
    background-color: #111;
    text-align: center;
    padding: 50px;
    color: white;
}

/* Styling untuk teks */
.resources-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.resources-text p {
    font-size: 20px;
    color: #bbb;
}

/* Styling untuk logo */
.resources-logos {
    display: flex;
    justify-content: center;
    gap: 50px; /* Jarak antar logo */
    margin-top: 30px;
}

.resources-logos img {
    width: 100px; /* Ukuran logo */
    height: auto;
}


/* Styling untuk kategori */
.categories {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 50px;
    background: linear-gradient(to bottom, #ffffff, #02022800); /* Gradasi warna */
    -webkit-background-clip: text;

}

.categories h2  {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
    -webkit-background-clip: text;
    color: transparent;
    transition: transform 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
}

/* Efek hover */
.categories .music:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #f90000;  /* Ubah warna teks saat hover */
}

.categories .movie:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #FFA500;  /* Ubah warna teks saat hover */
}

.categories .album:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #FFFF00;  /* Ubah warna teks saat hover */
}

.categories .artist:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #008000;  /* Ubah warna teks saat hover */
}

.categories .series:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #0000FF;  /* Ubah warna teks saat hover */
}

.categories .book:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #4B0082;  /* Ubah warna teks saat hover */
}

.categories .podcast:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #ff00cc;  /* Ubah warna teks saat hover */
}

.categories .post:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #9de214;  /* Ubah warna teks saat hover */
}

.categories .novel:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #f0a611;  /* Ubah warna teks saat hover */
}

.categories .band:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #256cde;  /* Ubah warna teks saat hover */
}

.categories .meme:hover {
    transform: scale(1.05); /* Membesarkan teks sedikit */
    color: #4B0082;  /* Ubah warna teks saat hover */
}
/* Efek aktif (saat ditekan) */
.categories h2:active {
    transform: scale(0.95); /* Membuat teks sedikit lebih kecil saat ditekan */
    color: #5d00ff;  /* Ubah warna teks saat ditekan */
}

/* Jika ingin memberikan efek transisi lebih halus pada perubahan warna */
.categories h2:hover, .categories h2:active {
    transition: transform 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
}

/* Styling untuk bagian download */
.download-section {
    text-align: center;
    padding: 50px 0;
    background-color: #111;
    color: white;
}

.download-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px; /* Jarak antara logo dan teks */
    padding: 15px 30px;
    background-color: #6b46c1;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #5b37a4;
}

.download-btn img {
    width: 60px; /* Ukuran logo */
    height: auto;
}

.download-btn span {
    font-size: 40px;
    font-weight: 600;
}


/* Styling untuk Footer */
footer {
    background-color: #111;
    color: white;
    padding: 80px 80px;
    font-family: 'Poppins', sans-serif;
    
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;

}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 16px;
}

.footer-column ul li a:hover {
    color: #6b46c1; /* Warna saat hover */
}

hr {
    border: 0;
    height: 1px;
    background-color: #6b46c1;
    margin-top: 40px;
}


/* Media Query for small screens */
@media (max-width: 768px) {
    .navbar {
        padding: 20px 25px;
    }

    .logo img {
        width: 30px;
    }

     .myvibe {
        font-size: large;
        font-weight: 600;
    }

    .vibe{
        color: #6F61EF;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 180px; /* Sesuaikan dengan ukuran menu */
        background: rgba(255, 255, 255, 0.1); /* Warna semi-transparan */
        backdrop-filter: blur(10px); /* Efek blur seperti pada gambar */
        padding: 15px;
        border-radius: 15px; /* Membuat sudut membulat */
        position: absolute;
        top: 50px; /* Sesuaikan dengan posisi menu */
        right: 10px; /* Sesuaikan dengan posisi menu */
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        opacity: 0;
        transform: translateY(-10px);
    }

    .nav-links.active {
        display: flex;
        max-height: 300px; /* Maximum height for smooth transition */
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 18px;
        color: white;
        text-align: center;
        display: inline;
    }

    .nav-links span {
        display: block;
    }

    .nav-links img {
        display: none;
    }

    .nav-links .btn-download {
        font-size: 10px;
        font-weight: 1000000;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero {
        flex-direction: column;  /* Switch to vertical layout on smaller screens */
        text-align: center;
    }

    .hero-text {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-top: 60px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .btn-primary {
        padding: 10px 15px;
    }

    .hero-image {
        width: 100%;
        margin-top: 20px;
      
    
    }


    .rating-section{
        padding: 30px;
    }

    .rating-box {
        width: 100%; /* Sesuaikan dengan kebutuhan */
        height: 200px; /* Sesuai dengan yang kamu tentukan */
        overflow: hidden; /* Menghindari overflow jika video lebih besar */
        display: flex; /* Agar video tetap di tengah */
        justify-content: center;
        align-items: center;
        border-radius: 20px;
    }
    
    .rating-box video {
        width: 100%; /* Membuat video memenuhi lebar kotak */
        height: 100%; /* Membuat video memenuhi tinggi kotak */
        object-fit: cover; /* Memastikan video tidak terdistorsi dan memenuhi kotak */
        
    }
    
    .features {
        flex-direction: column;  /* Mengubah arah flex menjadi kolom pada ponsel */
        padding: 30px;
        gap: 15px;  /* Menyesuaikan jarak antara elemen pada ponsel */
    }

    .feature-text, .feature-box {
        width: 100%;  /* Membuat elemen mengambil lebar penuh pada ponsel */
        height: auto;
    }

    .feature-text {
        font-size: 0.1rem;  /* Menyesuaikan ukuran teks lebih kecil pada ponsel */
    }

    .feature-box {
        width: 100%; /* Sesuaikan dengan kebutuhan */
        height: 200px; /* Sesuai dengan yang kamu tentukan */
        overflow: hidden; /* Menghindari overflow jika video lebih besar */
        display: flex; /* Agar video tetap di tengah */
        justify-content: center;
        align-items: center;
        border-radius: 20px;
    }
    
    .feature-box video {
        width: 100%; /* Membuat video memenuhi lebar kotak */
        height: 100%; /* Membuat video memenuhi tinggi kotak */
        object-fit: cover; /* Memastikan video tidak terdistorsi dan memenuhi kotak */
        
    }

    .special-vibe {
        padding: 30px;  /* Mengurangi padding pada ponsel */
    }

    .special-vibe-text {
        width: 100%;  /* Menjadikan teks mengambil 100% lebar pada ponsel */
        text-align: left;  /* Menyusun teks agar rata tengah pada ponsel */
    }

    .special-vibe-box {
        width: 100%; /* Sesuaikan dengan kebutuhan */
        height: 200px; /* Sesuai dengan yang kamu tentukan */
        overflow: hidden; /* Menghindari overflow jika video lebih besar */
        display: flex; /* Agar video tetap di tengah */
        justify-content: center;
        align-items: center;
        border-radius: 20px;
    }
    
    .special-vibe-box video {
        width: 100%; /* Membuat video memenuhi lebar kotak */
        height: 100%; /* Membuat video memenuhi tinggi kotak */
        object-fit: cover; /* Memastikan video tidak terdistorsi dan memenuhi kotak */
        
    }

    .feature-cards {
        flex-direction: column;  /* Menyusun elemen secara vertikal */
        padding: 30px;  /* Menurunkan padding pada ponsel */
    }

    .feature {
        width: 100%;  /* Setiap elemen mengambil 100% dari lebar */
        margin-bottom: 20px;  /* Memberikan jarak antar elemen */
    }

    .card {
        height: 600px;  /* Menurunkan tinggi card pada ponsel */
    }


    .platform-vibe {
        padding: 30px;  /* Mengurangi padding pada ponsel */
    }

    .platform-vibe-text {
        width: 100%;  /* Menjadikan teks mengambil 100% lebar pada ponsel */
        text-align: left;  /* Menyusun teks agar rata tengah pada ponsel */
        size-adjust: 1px;
    }

    .platform-vibe-box {
        width: 100%; /* Sesuaikan dengan kebutuhan */
        height: 200px; /* Sesuai dengan yang kamu tentukan */
        overflow: hidden; /* Menghindari overflow jika video lebih besar */
        display: flex; /* Agar video tetap di tengah */
        justify-content: center;
        align-items: center;
        border-radius: 20px;
    }
    
    .platform-vibe-box video {
        width: 100%; /* Membuat video memenuhi lebar kotak */
        height: 100%; /* Membuat video memenuhi tinggi kotak */
        object-fit: cover; /* Memastikan video tidak terdistorsi dan memenuhi kotak */
        
    }

    .download-section {
        padding: 20px;
        align-items: center;
        background-color: #111;
        color: white;
    }

    .download-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        
    }
    
    .download-btn {
        display: flex;
        align-items: center;
        gap: 10px; /* Jarak antara logo dan teks */
        padding: 15px 30px;
        background-color: #6b46c1;
        color: white;
        text-decoration: none;
        border-radius: 20px;
        font-weight: 300;
        font-size: 20px;
        transition: background-color 0.3s ease;
    }
    
    .download-btn:hover {
        background-color: #5b37a4;
    }
    
    .download-btn img {
        width: 30px; /* Ukuran logo */
        height: auto;
    }
    
    .download-btn span {
        font-size: 15px;
        font-weight: 600;
    }

    /* Styling untuk tiap feature */
.chat {
    display: flex;
    flex-direction: column;  /* Mengatur elemen vertikal */
    align-items: left;  /* Mengatur isi card agar berada di tengah */
    width: 32%;  /* Lebar card */
    box-sizing: border-box;
    text-align: left;
    padding: 3px;
    margin-top: 20px;
}

/* Styling judul */
.chat h3 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

/* Styling deskripsi */
.chat p {
    font-size: 10px;
    color: #bbb;
    margin-bottom: 0px;
}

.resources-logos {
    display: flex;
    justify-content: center;
    gap: 20px;  
    margin-top: 30px;
}

/* Styling untuk Footer */
footer {
    background-color: #111;
    color: white;
    padding: 40px  20px;
    font-family: 'Poppins', sans-serif;
    
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;

}

.footer-column {
    flex: 1;
    min-width: 50px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 16px;
}

.footer-column ul li a:hover {
    color: #6b46c1; /* Warna saat hover */
}

hr {
    border: 0;
    height: 1px;
    background-color: #6b46c1;
    margin-top: 40px;
}


}

