body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: #ffffff;
    border-bottom: 2px solid #8D6E63; 
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 0;
}


.logo img {
    height: 70px; 
    width: auto;
    display: block;
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; 
    align-items: center;
    gap: 20px; 
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    transition: color 0.3s, background-color 0.3s;
    white-space: nowrap;
    border-radius: 4px;
}

nav ul li a:hover,
nav ul li a.active:not(.btn) {
    background-color: #FBEEC1; 
    color: #8D6E63; 
}


nav ul li a.btn {
    background-color: #FFB300; 
    color: white !important;
    border-radius: 4px;
    padding: 8px 15px !important;
}

nav ul li a.btn:hover {
    background-color: #FFA000;
}



.hero {
    height: 400px;
    background-image: url('banner_utama.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: -1;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background-color: #FFB300; 
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #FFA000;
}


.services, .tagline, #visi_misi, #galeri, .contact-info {
    padding: 40px 0;
    text-align: center;
}

h2 {
    color: #8D6E63; 
    margin-bottom: 20px;
    font-size: 2em;
}


.data-table, .galeri-table, .vm-table, .lokasi-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin: 30px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    text-align: left;
}
.data-table th, .data-table td,
.galeri-table th, .galeri-table td,
.vm-table th, .vm-table td,
.lokasi-table th, .lokasi-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.data-table th, .lokasi-table th {
    background-color: #8D6E63; 
    color: white;
    text-transform: uppercase;
}
.vm-table th {
    background-color: #FFB300;
    color: white;
}

.data-table tr:nth-child(even) { background-color: #f7f7f7; }
.data-table tr:hover { background-color: #FBEEC1; }
.highlight-price { color: #FFB300; font-weight: bold; }


.vm-table .kirei { background-color: #FBEEC1; } 


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    padding: 30px 0;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.contact-info {
    background-color: #FBEEC1; 
    margin-top: 40px;
    border-radius: 8px;
}

.map-placeholder {
    background-color: #eee;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #666;
    font-size: 1.2em;
    border: 1px solid #999;
}



footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}


