/* Palet Warna Pastel */
:root {
    --primary-color: #55a6a6; /* Hijau Kebiruan Pastel */
    --secondary-color: #8ac6c6; /* Biru Tosca Pastel */
    --background-dark: #2c5454; /* Hijau Gelap */
    --background-light: #f0f8f8; /* Putih Kebiruan */
    --text-dark: #333;
    --text-light: #fff;
    --accent-color: #e09f7a; /* Coklat Muda */
}

/* --- Styling Umum --- */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Tetap space-between untuk logo dan menu */
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 5%; /* Menambahkan padding di sisi kiri dan kanan */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo img {
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 25px;
    /* Tambahan untuk menengahkan nav-links di desktop */
    flex-grow: 1; /* Memberikan ruang agar bisa mengisi */
    justify-content: center; /* Menengahkan item-item link */
}
/* ... (kode CSS yang sudah ada di atas) ... */

/* SEKSI "ADA APA SIH DI DANAU TOBA?" */
.what-to-do-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.what-to-do-section .activity-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.activity-link {
    text-decoration: none;
    color: var(--text-dark);
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
    /* Tambahkan display: block atau inline-block agar transform bekerja lebih baik */
    display: inline-block; 
}

.activity-link:hover {
    transform: translateY(-5px);
}

.activity-link img {
    width: 200px; /* Atur lebar yang seragam */
    height: 150px; /* Atur tinggi yang seragam */
    object-fit: cover; /* Pastikan gambar mengisi area tanpa terdistorsi */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.activity-link h3 {
    margin-top: 10px;
    font-size: 1.1em;
    color: var(--primary-color);
}

/* ... (lanjutkan dengan kode CSS yang sudah ada di bawah) ... */

/* Media Query untuk Responsif (jika diperlukan) */
@media (max-width: 768px) {
    .activity-link img {
        width: 120px; /* Lebar lebih kecil di layar mobile */
        height: 90px; /* Tinggi lebih kecil di layar mobile */
    }
}
}

/* Untuk judul dan teks di footer */
.rating-section {
    text-align: center; /* Memusatkan teks "Beri Penilaian Anda!" dan pesannya */
}

.newsletter-section {
    text-align: center; /* Memusatkan teks "Dapatkan Informasi Terbaru!" dan deskripsinya */
}

/* Untuk memastikan semua konten di footer rata tengah */
.footer-container {
    text-align: center;
}

/* Untuk memusatkan teks dan gambar di dalam card/item */
.culinary-item,
.destination-card,
.activity-card {
    text-align: center;
}

/* Untuk memusatkan form kontak */
.contact-section .contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Untuk memusatkan judul utama pada setiap section */
.section-title {
    text-align: center;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

/* --- Header & Video Utama --- */
.main-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 84, 84, 0.6);
    z-index: 0;
}

.header-text-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.header-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.header-description {
    font-size: 1.2em;
    line-height: 1.8;
}

/* --- Seksi Konten Umum --- */
.about-section, .featured-destinations, .activity-section, .culinary-section, .event-section, .info-section, .contact-section, .main-footer {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content p {
    flex: 1;
    font-size: 1.1em;
    color: var(--text-dark);
}

.video-container-small {
    flex: 1;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-container-small video {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Destinasi Unggulan --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.destination-card {
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.destination-card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* --- Aktivitas --- */
.activity-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.activity-card {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.activity-card:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.activity-card i {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.activity-card h3 {
    margin-top: 0;
}

/* --- Kuliner --- */
.culinary-section {
    padding-top: 50px;
}

.culinary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.culinary-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s;
}

.culinary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.culinary-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.culinary-item h3 {
    color: var(--primary-color);
    margin: 15px 0 5px;
}

.culinary-item p {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px 20px;
}

/* --- Event & Festival ---*/
.event-section {
    background-color: var(--background-light);
    padding-top: 50px;
}

.event-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 120px;
    flex-shrink: 0;
}

.event-date p {
    font-weight: bold;
    font-size: 1.2em;
    margin: 0;
}

.event-info {
    padding: 20px;
}

.event-info h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.event-info p {
    margin: 0;
    color: #666;
}


/* --- Info 2 Kolom --- */
.info-section {
    padding-top: 50px;
}

.info-item-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.info-item-row.reverse {
    flex-direction: row-reverse;
}

.info-text-box {
    flex: 1;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
}

.info-text-box h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
}

.info-image-box {
    flex: 1;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.info-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Seksi Kontak --- */
.contact-section {
    background-color: var(--background-light);
    padding-bottom: 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-top: 0;
}

.contact-info p i {
    color: var(--accent-color);
    margin-right: 10px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}


/* --- Footer --- */
.main-footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: auto;
}

.newsletter-section {
    margin-bottom: 40px;
}
.newsletter-section h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center; 
    max-width: 400px;
    margin: 0 auto; 
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 100%;
    font-size: 1em;
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1em;
}

.rating-section {
    margin-bottom: 40px;
}
.rating-section h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.stars-container {
    font-size: 2em;
    color: #ccc;
    cursor: pointer;
}

.stars-container .fas {
    color: #ffc107;
}

.rating-section #rating-message {
    color: var(--secondary-color);
    margin-top: 10px;
}

.copyright-section {
    margin-bottom: 0;
}

/* --- Responsif --- */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px;
        left: 0;
        padding-top: 10px;
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }

    .main-header {
        height: 80vh;
    }
    .header-title {
        font-size: 2.5em;
    }
    .header-description {
        font-size: 1em;
    }

    .about-content {
        flex-direction: column;
    }
    
    .destinations-grid, .activity-grid, .culinary-grid, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
    }

    .info-item-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .info-item-row.reverse {
        flex-direction: column;
    }
    
    .info-text-box {
        padding: 0;
        border-left: none;
    }
    .info-image-box {
        order: 1;
    }

    .footer-container {
        flex-direction: column;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;/* Palet Warna Pastel */
:root {
    --primary-color: #55a6a6; /* Hijau Kebiruan Pastel */
    --secondary-color: #8ac6c6; /* Biru Tosca Pastel */
    --background-dark: #2c5454; /* Hijau Gelap */
    --background-light: #f0f8f8; /* Putih Kebiruan */
    --text-dark: #333;
    --text-light: #fff;
    --accent-color: #e09f7a; /* Coklat Muda */
}

/* --- Styling Umum --- */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    /* justify-content: space-between; <= Hapus atau ubah ini */
    justify-content: center; /* Menengahkan seluruh konten di dalam navbar */
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 5%; /* Menambahkan padding di sisi kiri dan kanan */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    margin-right: 20px; /* Memberi sedikit jarak antara logo dan link */
}

.logo img {
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 25px;
    /* flex-grow: 1; <= Hapus ini agar tidak mengisi ruang berlebih */
    /* justify-content: center; <= Hapus ini jika justify-content di navbar sudah center */
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

/* --- Header & Video Utama --- */
.main-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 84, 84, 0.6);
    z-index: 0;
}

.header-text-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.header-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.header-description {
    font-size: 1.2em;
    line-height: 1.8;
}

/* --- Seksi Konten Umum --- */
.about-section, .featured-destinations, .activity-section, .culinary-section, .event-section, .info-section, .contact-section, .main-footer {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content p {
    flex: 1;
    font-size: 1.1em;
    color: var(--text-dark);
}

.video-container-small {
    flex: 1;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-container-small video {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Destinasi Unggulan --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.destination-card {
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.destination-card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* --- Aktivitas --- */
.activity-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.activity-card {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.activity-card:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.activity-card i {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.activity-card h3 {
    margin-top: 0;
}

/* --- Kuliner --- */
.culinary-section {
    padding-top: 50px;
}

.culinary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.culinary-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s;
}

.culinary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.culinary-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.culinary-item h3 {
    color: var(--primary-color);
    margin: 15px 0 5px;
}

.culinary-item p {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px 20px;
}

/* --- Event & Festival ---*/
.event-section {
    background-color: var(--background-light);
    padding-top: 50px;
}

.event-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 120px;
    flex-shrink: 0;
}

.event-date p {
    font-weight: bold;
    font-size: 1.2em;
    margin: 0;
}

.event-info {
    padding: 20px;
}

.event-info h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.event-info p {
    margin: 0;
    color: #666;
}


/* --- Info 2 Kolom --- */
.info-section {
    padding-top: 50px;
}

.info-item-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.info-item-row.reverse {
    flex-direction: row-reverse;
}

.info-text-box {
    flex: 1;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
}

.info-text-box h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
}

.info-image-box {
    flex: 1;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.info-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Seksi Kontak --- */
.contact-section {
    background-color: var(--background-light);
    padding-bottom: 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-top: 0;
}

.contact-info p i {
    color: var(--accent-color);
    margin-right: 10px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}


/* --- Footer --- */
.main-footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: auto;
}

.newsletter-section {
    margin-bottom: 40px;
}
.newsletter-section h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center; 
    max-width: 400px;
    margin: 0 auto; 
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 100%;
    font-size: 1em;
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1em;
}

.rating-section {
    margin-bottom: 40px;
}
.rating-section h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.stars-container {
    font-size: 2em;
    color: #ccc;
    cursor: pointer;
}

.stars-container .fas {
    color: #ffc107;
}

.rating-section #rating-message {
    color: var(--secondary-color);
    margin-top: 10px;
}

.copyright-section {
    margin-bottom: 0;
}

/* --- Responsif --- */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        /* Di layar kecil, kita mungkin ingin menu toggle tetap di kanan */
        justify-content: space-between; /* Kembalikan ke space-between */
    }
    .logo {
        margin-right: 0; /* Hapus margin agar logo tidak menekan ke kanan */
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px;
        left: 0;
        padding-top: 10px;
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
        justify-content: flex-start; /* Untuk menu drop-down, biasanya di kiri */
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }

    .main-header {
        height: 80vh;
    }
    .header-title {
        font-size: 2.5em;
    }
    .header-description {
        font-size: 1em;
    }

    .about-content {
        flex-direction: column;
    }
    
    .destinations-grid, .activity-grid, .culinary-grid, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
    }

    .info-item-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .info-item-row.reverse {
        flex-direction: column;
    }
    
    .info-text-box {
        padding: 0;
        border-left: none;
    }
    .info-image-box {
        order: 1;
    }

    .footer-container {
        flex-direction: column;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
    }
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
        width: calc(100% - 24px);
    }
    .newsletter-form button {
        border-radius: 5px;
        width: 100%;
    }
}
        margin: 0 auto;
    }
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
        width: calc(100% - 24px);
    }
    .newsletter-form button {
        border-radius: 5px;
        width: 100%;
    }
}