/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Header */
.header-content {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

nav {
    margin-top: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #FFD700;
}

/* Destinations Section */
.destinations-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.destinations-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.destination-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card h3 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
}

.destination-card p {
    font-size: 1rem;
    color: #555;
    padding: 0 20px;
    margin-bottom: 20px;
}

.destination-card .btn {
    padding: 10px 20px;
    background-color: #FFD700;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.destination-card .btn:hover {
    background-color: #FFA500;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Section Intro */
#intro {
    background-color: rgba(0, 0, 0, 0.5); /* Hitam transparan */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

#intro h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #FFD700;
}

#intro p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.button {
    padding: 12px 20px;
    background-color: #FFD700;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #FFA500;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Pemisah Kustom untuk hr */
hr.separator {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.3); /* Garis pemisah transparan */
    margin: 20px 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section */
.video-section {
    position: fixed; /* Menutupi seluruh background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Video di belakang konten lain */
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Comment Section */
.comment-section {
    padding: 40px 20px;
    background-color: #ffffff !important; /* Pastikan background putih */
    border-top: 2px solid #f4f4f4;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Tambahkan bayangan ringan untuk kontras */
}

.comment-section h2, .comment-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center; /* Menambahkan center align */
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Menambahkan bayangan untuk elemen form */
    background-color: #fff; /* Pastikan latar belakang putih */
}

.comment-form button {
    padding: 10px 20px;
    background-color: #FFD700;
    color: #333;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form button:hover {
    background-color: #FFA500;
}

/* Comment List */
.comment-list {
    margin-top: 30px;
    padding: 0 20px; /* Menambahkan padding pada daftar komentar */
}

.comment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    margin-bottom: 10px;
}

.comment-item:last-child {
    border-bottom: none;
}

/* Nama Pengguna Komentar */
.comment-item .comment-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* Teks Komentar */
.comment-item .comment-text {
    color: #555;
    font-size: 0.95rem;
}

/* Avatar Pengguna */
.comment-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Bali Page Specific Styles */
.bali-page .header-content {
    background-color: rgba(0, 0, 0, 0.85); /* Darker header background */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    border-bottom: 5px solid #FFD700;
}

.bali-page .header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.bali-page .header-content p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-style: italic;
}

/* Section with intro-text */
.bali-page .tour-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Styled Intro Section */
.bali-page .intro-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.bali-page .intro-section p {
    font-size: 1.2rem;
    color: #555;
    text-align: justify;
    line-height: 1.8;
}

/* Destination List */
.bali-page .destination-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 30px;
}

.bali-page .destination-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.bali-page .destination-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bali-page .destination-item .content {
    padding: 20px;
}

.bali-page .destination-item h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.bali-page .destination-item p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}

.bali-page .destination-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .destination-card {
        flex-direction: column;
    }

    .comment-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-item img {
        margin-bottom: 10px;
    }

    .bali-page .tour-content {
        padding: 15px;
    }
}
/* Comment Section */
.comment-section {
    padding: 40px 20px;
    background-color: #fff; /* Pastikan background berwarna putih */
    border-top: 2px solid #f4f4f4;
    margin-top: 40px;
    position: relative; /* Pastikan posisi relatif untuk mengatur tata letak elemen */
    z-index: 10; /* Pastikan berada di depan elemen lain */
}

/* Untuk memastikan bahwa form komentar memiliki background yang benar */
.comment-form {
    background-color: #fff; /* Beri warna latar belakang putih */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Untuk styling form input dan textarea */
.comment-form input, .comment-form textarea {
    background-color: #fff; /* Pastikan input memiliki latar belakang putih */
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Tampilan tombol submit */
.comment-form button {
    padding: 12px 20px;
    background-color: #FFD700;
    color: black;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form button:hover {
    background-color: #FFA500;
}
{
     "presets": [
       [
         "@babel/preset-env",
         {
           "targets": {
             "browsers": ["> 0.25%", "not dead"] // Or specify browsers explicitly
           },
           "useBuiltIns": "usage", // Optional: Polyfills only what's used
           "corejs": 3 // Or specify a version
         }
       ]
     ],
     "plugins": [
       "@babel/plugin-transform-runtime" // Helps with runtime dependencies
     ]
}
