body {
    background-color: #EFEFE8;
    color: #000;
    height: auto; /* override index */
}

/* Navbar Overrides */
.navbar {
    opacity: 1 !important;
    position: fixed !important;
}

/* Location Hero */
.location-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background-color: #000; /* Fallback */
    overflow: hidden;
}

.location-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Darken for text readability */
    transition: opacity 0.5s ease;
}

.location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.location-hero-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px; /* MATCH NARROW MARGINS */
    box-sizing: border-box;
}

.location-hero-content {
    color: #fff;
    max-width: 600px;
    height: 420px; /* Increased from 320px to push arrows lower */
    display: flex;
    flex-direction: column;
}

.location-title {
    font-family: 'Cubao', sans-serif;
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.location-address {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: auto; /* This pushes the arrows to the absolute bottom of the 320px container! */
    opacity: 0.8;
}

.location-nav-arrows {
    display: flex;
    gap: 20px;
}

.location-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-nav-btn:hover {
    background: #fff;
    color: #000;
}

/* Content Container - Narrow margins exactly like Journal/Gallery */
.location-container {
    margin: 80px auto;
    padding: 0 80px; /* MATCH NARROW MARGINS */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    min-height: 50vh;
}

.location-section-title {
    font-family: 'Cubao', sans-serif;
    font-size: 30px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.location-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.location-gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}

.location-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.location-menu-name {
    font-weight: 700;
    font-size: 16px;
}

.location-menu-desc {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.location-menu-price {
    font-family: 'Cubao', sans-serif;
    font-size: 18px;
}

/* Footer override for this page (same as journal) */
.scene5-footer.journal-footer {
    position: relative;
    background: #000;
    padding-top: 60px;
}

/* Responsive */
@media (max-width: 1024px) {
    .location-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .location-hero-inner, .location-container {
        padding: 0 20px;
    }
}
