/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #fff;
    color: #fff;
    padding: 0; /* Remove padding as hero image will cover it */
    text-align: center;
    border-bottom: 5px solid #ffc72c; /* Yellow accent like In-N-Out */
}


#logo-top {
    display: block;
    margin: 20px auto;
    max-width: 250px; /* Adjust as needed, larger than header logo */
    height: auto;
}

.hero-image {
    height: 400px; /* Adjust as needed */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column; /* Stack logo and nav vertically */
    align-items: center;
    justify-content: center; /* Center logo and nav */
    background-repeat: no-repeat; /* Ensure background doesn't tile */
}

#logo {
    max-width: 150px; /* Adjust as needed */
    margin-bottom: 20px; /* Space between logo and nav */
}

nav {
    margin-top: 20px;
}

.nav-button {
    background-color: #d32f2f; /* Red similar to In-N-Out */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-button.active,
.nav-button:hover {
    background-color: #b71c1c; /* Darker red on hover/active */
}

/* Main Content Styles */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 30px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h1, h2 {
    color: #d32f2f; /* Red headings */
}

/* Ulasan and Galeri Grid Styles */
.ulasan-grid, .galeri-grid, .maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.ulasan-grid img, .galeri-grid img, .maps-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Call to Action Button Styles */
.call-to-action {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ffc72c; /* Yellow accent */
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #d32f2f; /* Red border */
}

.cta-button:hover {
    background-color: #ffb300; /* Darker yellow on hover */
}

/* Lokasi Page Specific Styles */
#video-lokasi video {
    max-width: 100%;
    border-radius: 5px;
}

.lokasi-detail {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px;
    align-items: flex-start;
}

.peta-gmaps {
    flex: 1;
    min-width: 280px; /* Ensure it doesn't get too small */
}

.peta-gmaps img {
    vertical-align: middle;
    margin-right: 10px;
}

.copywriting-lokasi {
    flex: 2;
    min-width: 300px; /* Ensure it doesn't get too small */
}

.copywriting-lokasi ul {
    list-style-type: none; /* Removing default bullets */
    padding-left: 0;
}

.copywriting-lokasi ul li {
    padding-left: 1.5em; /* Space for custom bullet */
    position: relative;
    margin-bottom: 5px;
}

.copywriting-lokasi ul li::before {
    content: "\2022"; /* Unicode bullet character */
    color: #d32f2f; /* Red bullet */
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1.5em; /* Position bullet before text */
    position: absolute;
    left: 0;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image {
        height: 300px;
    }
    #logo {
        max-width: 120px;
    }
    .nav-button {
        padding: 8px 15px;
        margin: 0 5px;
        font-size: 0.9em;
    }
    main {
        padding: 15px;
        margin: 15px auto;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.5em;
    }
    .ulasan-grid, .galeri-grid, .maps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 250px;
    }
    #logo {
        max-width: 100px;
    }
    nav {
        display: flex;
        flex-direction: column; /* Stack nav buttons on very small screens */
        align-items: center;
    }
    .nav-button {
        margin: 5px 0; /* Add vertical margin for stacked buttons */
        width: 80%;
        text-align: center;
    }
    .lokasi-detail {
        flex-direction: column; /* Stack peta and copywriting */
    }
}

