/* === VARIABEL WARNA === */
:root {
    --umber: #362312;
    --cyber: #ffd400;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-light: #f7f5f2; 
}

/* === RESET DASAR === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body { background-color: #ffffff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === NAVBAR === */
header {
    background-color: var(--umber);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo { width: 100px; }
.menu-toggle { display: none; color: #ffffff; font-size: 24px; cursor: pointer; }
nav ul { list-style: none; display: flex; gap: 30px; }
nav a { color: #ffffff; text-decoration: none; font-size: 14px; transition: color 0.3s; }
nav a.active, nav a:hover { color: var(--cyber); }

/* === DECORATIVE BORDER === */
.pattern-border { display: flex; height: 10px; }
.pattern { flex: 1; }
.pattern.yellow { background-color: var(--cyber); }
.pattern.green { background-color: #436a31; }

/* === SUB-HERO WISATA === */
.sub-hero-wisata {
    padding: 80px 20px 30px; /* Jarak bawah diperkecil jadi 30px */
    text-align: center;
    /* background: linear-gradient(rgba(54, 35, 18, 0.7), rgba(54, 35, 18, 0.7)), 
                url('assets/suramadu.png') center/cover; */
    background-color: var(--bg-light);
    color: var(--umber);
}
.container-hero { max-width: 700px; margin: 0 auto; }
.badge-hero { display: inline-block; background-color: var(--cyber); color: var(--umber); padding: 6px 15px; border-radius: 20px; font-size: 12px; font-weight: bold; margin-bottom: 15px; text-transform: uppercase; }
.sub-hero-wisata h1 { font-size: 40px; margin-bottom: 15px; }
.sub-hero-wisata p { font-size: 16px; line-height: 1.6; opacity: 0.9; }

/* === KONTEN WISATA === */
.wisata-section { 
    padding: 30px 0 80px; /* Jarak atas diperkecil jadi 30px */
    background-color: var(--bg-light); 
}
.wisata-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.wisata-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.wisata-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.wisata-img { position: relative; height: 220px; overflow: hidden; }
.wisata-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.wisata-card:hover .wisata-img img { transform: scale(1.1); }

.wisata-badge {
    position: absolute; top: 15px; left: 15px;
    background-color: rgba(54, 35, 18, 0.85); color: var(--cyber);
    padding: 6px 12px; border-radius: 5px; font-size: 11px; font-weight: bold;
    backdrop-filter: blur(4px);
}

.wisata-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.wisata-info h3 { color: var(--text-dark); font-size: 20px; margin-bottom: 12px; }
.wisata-info p { color: var(--text-gray); font-size: 14px; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }

.btn-wisata {
    text-decoration: none; color: var(--umber); font-weight: bold; font-size: 14px;
    display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s;
}
.btn-wisata:hover { color: var(--cyber); }
.btn-wisata i { transition: transform 0.3s; }
.btn-wisata:hover i { transform: translateX(5px); }

/* === FOOTER === */
footer { background-color: var(--umber); color: #ffffff; text-align: center; padding: 2rem 1rem; border-top: 4px solid var(--cyber); }
footer h3 { color: var(--cyber); margin-bottom: 1rem; }
footer p { color: #a89f95; font-size: 0.9rem; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .menu-toggle { display: block; }
    nav ul.nav-list {
        display: none; flex-direction: column; position: absolute;
        top: 80px; right: 5%; background-color: var(--umber);
        width: 200px; padding: 20px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); gap: 20px;
    }
    nav ul.nav-list.active { display: flex; }
    .sub-hero-wisata h1 { font-size: 30px; }
}