/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Background transparan hitam */
    background-image:url(images/bgfix3.jpg);
    background-size:100%;
}

.table {
    overflow-x: auto;
    margin: 20px auto; /* Memusatkan tabel */
    width: 80%; /* Sesuaikan lebar tabel */
}

table {
    margin: 0 auto; /* Memusatkan tabel di dalam kontainer */
    border-collapse: collapse; /* Menghilangkan jarak antar border */
    width: 100%; /* Lebar tabel penuh */
    background-color: #800000; /* Warna latar tabel */
    color: #fff; /* Warna teks */
    border-radius: 8px; /* Sudut melengkung */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #b30000; /* Border utama tabel */
}

table th, table td {
    border: 1px solid #b30000; /* Border antar sel */
    padding: 10px; /* Jarak dalam sel */
    text-align: center; /* Rata tengah konten */
}

table th {
    background-color: #b30000; /* Warna header tabel */
    font-weight: bold;
}

table tr:hover {
    background-color: #ff4040; /* Warna saat hover */
}

.search-container {
    display: flex;
    justify-content: center; /* Memusatkan secara horizontal */
    align-items: center; /* Memusatkan secara vertikal */
    margin: 20px auto; /* Beri jarak dari elemen lain */
    gap: 10px; /* Jarak antar elemen */
}

.search-container input[type="text"] {
    width: 200px; /* Lebar input */
    padding: 0.5rem;
    border: 1px solid #b30000;
    border-radius: 4px;
}

.search-container button {
    background-color: #b30000;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: #ff4040;
}


/* Header Styles */
header {
    background: linear-gradient(135deg, #b30000, #800000);
    color: white;
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none;
    transition: background-color 0.3s ease;
}

.header-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.navbar-toggle {
    display: none;
    background-color: #b30000;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.5rem;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: bold;
}

nav a:hover {
    background-color: #b30000;
    transform: scale(1.1);
}

/* Jumbotron Styles */
.jumbotron {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 10px;
    margin: 1rem;
    animation: fadeIn 1s ease-in-out;
    background-image: url('path/to/your-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.jumbotron h1 {
    font-size: 3rem;
    animation: slideInFromTop 1s ease-in-out;
}

.cta-button {
    background-color: #b30000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 1.5s ease-in-out;
}

.cta-button:hover {
    background-color: #800000;
    transform: scale(1.1);
}

/* Main Container Styles */
.main-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem;
}


.package-container {
    text-align: center;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background-color: #1a1a1a;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.package-container:hover {
    transform: translateY(-10px);
    background-color: #b30000;
}

.package-container img {
    max-width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.eo{
    background-image: url(images/EO.png);
}

.jb{
    background-image: url(images/JB.png);
}

.comingsoon{
    background-image: url(images/COMING\ SOON.png);
}

.eo, .jb, .comingsoon {
    background-size: cover; /* Gambar penuh */
    background-position: center; /* Gambar di tengah */
    background-repeat: no-repeat; /* Jangan ulangi gambar */
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* Rasio aspek 16:9 */
    border: 2px solid rgb(0, 0, 0); /* Tepi putih tipis */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Efek bayangan tepi */
    border-radius: 8px; /* Sudut melengkung (opsional) */
}

table img {
    width: 50px; /* Sesuaikan ukuran lebar */
    height: auto; /* Otomatis menyesuaikan tinggi sesuai rasio */
    object-fit: cover; /* Memastikan gambar tidak terdistorsi */
    border-radius: 50%; /* Opsional: membuat gambar menjadi lingkaran */
}


img {
    max-width: 100%;
    height: auto;
    border-radius: 50%; /* Membuat gambar menjadi lingkaran */
    object-fit: cover; /* Memastikan proporsi tetap rapi */
}



.foto-profil {
    width: 150px; /* Lebar khusus */
    height: 150px; /* Tinggi khusus */
    overflow: hidden; /* Memotong gambar jika melebihi area */
}
.foto-profil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


button {
    background-color: #b30000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #800000;
    transform: scale(1.1);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #b30000, #800000);
    color: white;
    text-align: center;
    padding: 1.5rem;
    border-top: none;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .jumbotron {
        padding: 20px 10px;
    }

    .navbar-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        left: -250px; /* Awalnya tersembunyi di sisi kiri */
        width: 250px;
        height: 100%;
        background-color: #900; /* Warna merah */
        transition: left 0.3s ease-in-out; /* Animasi saat muncul */
        display: flex;
        flex-direction: column; /* Susunan vertikal */
        padding-top: 20px; /* Jarak dari atas */
    }

    nav.active {
        left: 0; /* Tampilkan menu */
        display: inline-block;
    }

    nav a {
        text-decoration: none; /* Hilangkan garis bawah default */
        color: white;
        padding: 15px;
        text-align: left;
        display: block; /* Pastikan tiap elemen berada dalam baris baru */
        border-bottom: 1px solid white; /* Garis bawah */
      }
      
      nav a:hover {
        background-color: #700; /* Warna latar saat hover */
      }
      
      }

@media (max-width: 480px) {
    .header-title {
        font-size: 1.5rem;
    }

    .jumbotron h1 {
        font-size: 2rem;
    }

    button {
        padding: 0.5rem 1rem;
    }
}


/* Khusus EO */

/* Paket Styles */
.package {
    background-color: #1a1a1a;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.package h2 {
    color: #b30000;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.package ul {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.package ul li {
    margin: 5px 0;
}

.package p {
    font-weight: bold;
    margin-top: 15px;
}

.package:hover {
    transform: translateY(-5px);
    background-color: #2a2a2a;
}

/* Judul Utama */
.package-list h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff4040;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #b30000, #800000);
    -webkit-text-fill-color: transparent;
}

/* Animasi Glow */
@keyframes glow {
    from {
        text-shadow: 0 0 10px #ff4040, 0 0 20px #ff4040, 0 0 30px #b30000;
    }
    to {
        text-shadow: 0 0 20px #ff8080, 0 0 40px #ff8080, 0 0 60px #b30000;
    }
}

/* Paket Styles */
.package {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 20px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.package:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: rgba(179, 0, 0, 0.9);
}

.package h2 {
    font-size: 1.8rem;
    color: #ff8080;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.package h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: #ff8080;
    border-radius: 2px;
}

.package ul {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: square;
}

.package ul li {
    margin: 5px 0;
    color: #f2f2f2;
}

/* Catatan */
.notes h3 {
    font-size: 1.8rem;
    color: #ff4040;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.notes ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 600px;
}

.notes ul li {
    background: rgba(255, 64, 64, 0.1);
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #ff4040;
    border-radius: 5px;
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
}

.event-section {
    display: flex;
    justify-content: center; /* Untuk mengatur ke tengah */
    gap: 20px; /* Jarak antar elemen */
    margin: 20px 0;
}

.event-card {
    background-color: #1a1a1a;
    border-radius: 10px; /* Membuat ujung tidak lancip */
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Memberikan efek kotak */
    width: 320px;
    text-align: center;
}

.event-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #f8f8f8;
}

.event-card iframe {
    border-radius: 10px; /* Membuat ujung video tidak lancip */
    margin-bottom: 10px;
}

.event-card p {
    background-color: rgba(216, 14, 14, 0.1); /* Warna latar belakang mirip "Catatan" */
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    color: #ffffff;
}

.video-wrapper {
    background-color: #111; /* Hitam gelap */
    border-radius: 10px; /* Membuat sudut melengkung */
    padding: 10px; /* Memberikan ruang di sekitar video */
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Efek bayangan */
}

.video-wrapper iframe {
    border-radius: 10px; /* Membuat ujung video juga melengkung */
    display: block;
}

.roboto-thin {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: italic;
  }

