/* Pengaturan Dasar */
body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    /* overflow: hidden; sudah tidak perlu karena layout diatur Bootstrap */
}

/* Styling untuk setiap bagian kolom */
.hero-part {
    background-size: cover;
    background-position: center;
    position: relative;
    transition: flex-grow 0.7s ease; /* Transisi untuk efek hover */
    overflow: hidden;
}

/* EFEK HOVER KUSTOM */
/* Saat kursor di atas kolom di layar besar (lg) atau lebih */
@media (min-width: 992px) {
    .hero-part:hover {
        flex-grow: 2.5; /* Perbesar kolom yang di-hover */
    }
}


/* Lapisan Gelap (Overlay) untuk setiap bagian */
.hero-part::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    transition: background 0.7s ease;
}

.hero-part:hover::before {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

/* GANTI URL GAMBAR DI BAWAH INI */
.mohan {
    background-image: url('images/mohan.png');
}
.aqeela {
    background-image: url('images/moqeel.png');
}
.moqeel {
    background-image: url('images/aqeela.png');
}

/* Konten di dalam setiap bagian */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    color: #eae0d5;
}

/* Styling kustom untuk tombol pink */
.btn-pink {
    border-color: #003459;
    color: #003459;
    font-weight: 100;
    font-size: 13px;
    border-radius: 35px;
    background-color: #eae0d5;
    font-weight: bold;
}

.btn-pink:hover {
    background-color: #003459;
    border-color: #05668d;
    color: #fff;
}

/* ========================================= */
/* Gaya untuk Halaman Baru (About Me)        */
/* ========================================= */

.about-page {
    /* Memberi warna latar belakang putih, jika sebelumnya berbeda */
    background-color: #fff;
    color: #333; /* Warna teks utama menjadi gelap */
}

/* Kustomisasi Navbar untuk halaman ini */
.about-page .navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.about-page .navbar-brand {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #212529;
}

.about-page .nav-link {
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
    margin-left: 1rem;
}
.about-page .nav-link:hover {
    color: #000;
}

/* Gaya untuk barisan ikon sosial di kiri */
.social-bar {
    position: fixed;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px; /* Jarak antar ikon */
    z-index: 100;
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: #555;
    transition: all 0.3s ease;
}

.social-bar a:hover {
    background-color: #ff007f; /* Warna pink dari desain sebelumnya */
    color: #fff;
    transform: scale(1.1);
}


/* Penyesuaian konten utama */
.content-container {
    padding-top: 100px; /* Jarak dari navbar */
    padding-bottom: 50px;
}

.about-page h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
}

.about-page p {
    font-family: 'Roboto', sans-serif;
    color: #555;
    line-height: 1.8;
}

.about-page .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
}

.about-page a {
    color: #ff007f;
    font-weight: 700;
    text-decoration: none;
}
.about-page a:hover {
    text-decoration: underline;
}

/* Mengatur agar gambar tidak terlalu menempel pada teks di layar mobile */
@media (max-width: 767px) {
    .content-container .col-md-6 {
        margin-bottom: 2rem;
    }
}

/* ========================================= */
/* Gaya untuk Bagian Jejak Karir             */
/* ========================================= */

.career-section {
    padding: 80px 0;
}

.career-section h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #000;
}

.experience-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.experience-item .year-badge {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #ff007f; /* Warna pink khas */
    min-width: 150px;
    padding-right: 25px;
    font-size: 1.1em;
}

.experience-item .details h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #212529;
    margin-bottom: 0.25rem;
}

.experience-item .details .company {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.experience-item .details .description {
    font-family: 'Roboto', sans-serif;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Penyesuaian untuk layar mobile */
@media (max-width: 767px) {
    .experience-item {
        flex-direction: column; /* Susun ke bawah */
        gap: 15px;
    }

    .experience-item .year-badge {
        padding-right: 0;
        min-width: auto;
    }
}

/* ========================================= */
/* Gaya untuk Footer                         */
/* ========================================= */

.site-footer {
    background-color: #f8f9fa; /* Warna abu-abu sangat muda */
    border-top: 1px solid #e9ecef;
}

.site-footer p {
    font-family: 'Roboto', sans-serif;
    color: #6c757d; /* Warna teks abu-abu */
    font-size: 0.9em;
}


/* ========================================= */
/* Gaya untuk Halaman "Coming Soon"          */
/* ========================================= */

.coming-soon-page {
    /* Menghapus semua gaya dari .about-page jika ada */
    background-color: #1d2b3a; /* Warna dasar jika animasi tidak didukung */
    overflow: hidden; /* Mencegah scroll */
    color: #fff;

    /* Animasi Gradien Latar Belakang */
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

/* Keyframes untuk animasi gradien latar belakang */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Tinggi penuh layar */
    text-align: center;
}

.coming-soon-container h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 5vw; /* Ukuran font responsif berdasarkan lebar layar */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5em; /* Jarak antar huruf */
    
    /* Animasi Bersinar (Pulse) */
    animation: pulseText 2s infinite;
}

/* Keyframes untuk animasi teks bersinar */
@keyframes pulseText {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 1);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

/* Media query untuk layar yang lebih kecil */
@media (max-width: 768px) {
    .coming-soon-container h1 {
        font-size: 8vw; /* Perbesar sedikit di mobile */
        letter-spacing: 0.2em; /* Kurangi jarak antar huruf */
    }
}

/* ========================================= */
/* Gaya untuk Halaman Hero ala CR7           */
/* ========================================= */

.cr7-page {
    background-color: #000;
}

/* Kustomisasi Navbar */
.cr7-page .navbar {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}
.cr7-page .navbar-brand {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
}
.cr7-page .nav-link {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ccc;
    transition: color 0.3s ease;
}
.cr7-page .nav-link:hover {
    color: #fff;
}

/* Styling untuk setiap kolom produk */
.product-column {
    position: relative;
    background-size: cover;
    background-position: center top; /* Fokus pada bagian atas gambar */
    overflow: hidden; /* Penting untuk efek zoom */
    transition: transform 0.4s ease; /* Transisi untuk zoom */
}

/* EFEK ZOOM SAAT HOVER */
.product-column:hover {
    transform: scale(1.05);
}

/* KUNCI UTAMA: Gradien Gelap dari Bawah */
.product-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0) 60%);
    z-index: 1;
    transition: background 0.4s ease;
}

.product-column:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 10%, rgba(0,0,0,0) 70%);
}

/* Gambar Latar Belakang untuk setiap kolom */
#mohan {
    background-image: url('images/mohan.png');
}
#moqeel {
    background-image: url('images/moqeel.png');
}
#aqeela {
    background-image: url('images/aqeela.png');
}


/* Styling untuk konten teks di atas gambar */
.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: #fff;
    z-index: 2; /* Agar berada di atas gradien */
}

.content-overlay h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.content-overlay p {
    font-family: 'Roboto', sans-serif;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shop-link {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    transition: letter-spacing 0.3s ease;
}

.shop-link:hover {
    color: #fff;
    letter-spacing: 3px; /* Efek tulisan sedikit meregang saat hover */
}

/* ======================================================= */
/* TAMBAHAN: Efek Lapisan Gelap Default & Cerah Saat Hover */
/* ======================================================= */

/* LAPISAN GELAP TRANSPARAN (DEFAULT) */
/* Kita gunakan `::after` untuk lapisan ini agar tidak mengganggu gradien `::before` */
.product-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Tingkat kegelapan, bisa diubah misal jadi 0.4 */
    z-index: 2; /* Posisikan di atas gambar & gradien, di bawah teks */
    opacity: 1; /* Terlihat secara default */
    transition: opacity 0.4s ease; /* Transisi halus saat menghilang */
}

/* HILANGKAN LAPISAN GELAP SAAT HOVER */
.product-column:hover::after {
    opacity: 0; /* Lapisan gelap menghilang saat di-hover */
}

/* Pastikan konten teks tetap di lapisan paling atas */
.content-overlay {
    z-index: 3;
}

/* ========================================= */
/* Gaya untuk Halaman Awards                 */
/* ========================================= */

.awards-page {
    background-color: #000;
    color: #fff;
}

.section-title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

/* Gaya Hero Section */
/* CSS BARU dengan FOTO */
.awards-hero {
    min-height: 70vh;
    
    /* 1. Menambahkan foto sebagai latar belakang dengan lapisan gelap */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/moqeel3.jpg');
    
    /* 2. Mengatur ukuran dan posisi foto */
    background-size: cover;
    background-position: center;
}
.awards-hero h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* Efek Glow Pink */
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.5), 0 0 25px rgba(255, 0, 127, 0.3);
}
.awards-hero .lead {
    color: #ccc;
    font-family: 'Roboto', sans-serif;
}

/* Gaya Bagian Cara Mendukung */
.how-to-vote {
    background-color: #111;
}
.step-icon {
    font-size: 3rem;
    color: #ff007f; /* Warna pink */
    margin-bottom: 1rem;
}
.how-to-vote h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #fff;
}
.how-to-vote p {
    color: #aaa;
}

/* Gaya Kartu Nominasi */
.nominee-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    transition: all 0.3s ease;
}
.nominee-card:hover {
    transform: translateY(-10px);
    border-color: #ff007f;
    box-shadow: 0 10px 20px rgba(255, 0, 127, 0.2);
}
.nominee-card .card-title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}
.nominee-card .card-text {
    color: #ccc;
    min-height: 70px; /* Menyamakan tinggi teks */
}
.nominee-card .card-img-top {
    filter: grayscale(50%); /* Sedikit pudar agar tidak terlalu ramai */
    transition: filter 0.3s ease;
}
.nominee-card:hover .card-img-top {
    filter: grayscale(0%);
}

/* Tombol Pink (sudah ada, hanya memastikan) */
.btn-pink {
    background-color: #ff007f;
    border-color: #ff007f;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-pink:hover {
    background-color: #e60073;
    border-color: #e60073;
    color: #fff;
    transform: scale(1.05);
}

/* Footer (menggunakan gaya sebelumnya) */
.awards-page .site-footer {
    background-color: #000;
    border-top: 1px solid #333;
}

/* ========================================= */
/* Gaya untuk Navigasi Utama                 */
/* ========================================= */

.site-navbar {
    padding: 15px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: transparent; /* Awalnya transparan */
}

/* Gaya saat di-scroll atau latar tidak transparan */
.scrolled, .solid-nav {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}
/* Versi gelap untuk halaman hitam */
.dark-theme.scrolled, .dark-theme.solid-nav {
    background-color: rgba(10, 10, 10, 0.8);
}


.site-navbar .nav-link {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9em;
    margin: 0 15px;
    transition: color 0.3s ease;
}

/* Gaya link untuk tema terang (default) */
.light-theme .nav-link {
    color: #555;
}
.light-theme .nav-link:hover, .light-theme .nav-link.active {
    color: #000;
}
.light-theme .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Gaya link untuk tema gelap */
.dark-theme .nav-link {
    color: #ccc;
}
.dark-theme .nav-link:hover, .dark-theme .nav-link.active {
    color: #fff;
}
.dark-theme .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Membuat konten tidak tertutup navbar */
body {
    padding-top: 70px; /* Sesuaikan dengan tinggi navbar Anda */
}
/* Hapus padding-top untuk halaman hero full-screen */
.cr7-page, .coming-soon-page {
    padding-top: 0;
}

/* ========================================= */
/* Gaya untuk Bagian Collective Vote         */
/* ========================================= */

.collective-vote-section {
    background-color: #000; /* Latar belakang hitam */
    border-bottom: 1px solid #333; /* Garis pemisah tipis */
}

.vote-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.vote-photo-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.vote-photo-card:hover {
    border-color: #ff007f; /* Border pink saat hover */
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
}

.vote-photo-card:hover img {
    transform: scale(1.1); /* Efek zoom pada gambar */
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px 20px;
    text-align: center;
}

.photo-caption h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

/* ========================================= */
/* Gaya Baru untuk Bagian Cara Mendukung     */
/* ========================================= */

.vote-steps {
    list-style: none;
    padding: 0;
    position: relative;
    /* Garis timeline vertikal */
    border-left: 3px solid #ff007f;
}

.vote-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-left: 30px;
    position: relative;
}

/* Mengganti .step-icon lama dengan yang baru */
.vote-steps .step-icon {
    position: absolute;
    left: -24px; /* Posisi ikon di atas garis timeline */
    top: 0;
    font-size: 1.8rem;
    color: #000;
    background-color: #ff007f; /* Lingkaran pink di belakang ikon */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #000;
}

.vote-steps .step-text h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #ff007f;
}

.vote-steps .step-text p {
    color: #ccc;
    margin: 0;
}

/* Menghilangkan margin bawah untuk item terakhir */
.vote-steps li:last-child {
    margin-bottom: 0;
}

/* ========================================= */
/* Gaya untuk Bagian Vote Via SMS            */
/* ========================================= */

.sms-vote-section {
    background-color: #111;
    border-bottom: 1px solid #333;
}

.sms-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.sms-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ff007f; /* Frame pink */
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

.candidate-name {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.sms-instruction {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    color: #ccc;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.sms-instruction .code {
    color: #ff007f;
    font-weight: 700;
}

.sms-destination {
    font-family: 'Roboto', sans-serif;
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 1.5rem;
}

.sms-tariff {
    font-size: 0.9em;
    color: #888;
}

/* Gaya untuk Kotak Provider */
.provider-box {
    background-color: #222;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
}

.provider-title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #ff007f;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.provider-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px; /* Jarak antar item */
}

.provider-list li {
    font-family: 'Roboto', sans-serif;
    color: #ccc;
}