/* Location Page Specific Styles - Professional Webbuilders Style */
:root {
    --primary-maroon: #5a2420;
    --primary-orange: #d48300;
}

/* 1. Location Hero */
.location-hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/night view.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 150px;
    /* Stronger padding to push title down and avoid header */
}

.location-hero h1 {
    font-size: 3.5rem;
    font-family: var(--heading-font);
    font-weight: 500;
}

/* 2. Map Section */
.map-full-section {
    position: relative;
    padding: 0;
    margin-top: 20px;
    /* Added positive spacing to avoid overlap */
}

.map-wrapper {
    height: 500px;
    width: 100%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border: 8px solid white;
}


/* 3. Travel Guide */
.travel-guide {
    padding: 100px 0;
    background: white;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.travel-card {
    padding: 50px 30px;
    border-radius: 20px;
    background: #fcfcfc;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
}

.travel-card:hover {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.travel-card i {
    font-size: 3rem;
    color: var(--primary-maroon);
    margin-bottom: 25px;
}

.travel-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #4a4a4a;
    font-weight: 500;
}

/* 4. Landmarks */
.landmarks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.landmark-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.landmark-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.landmark-img {
    height: 150px;
    background: #ddd;
}

.landmark-content {
    padding: 20px;
}

.landmark-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.landmark-content span {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
    .travel-grid {
        grid-template-columns: 1fr;
    }

    .map-card-overlay {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        border-radius: 0;
    }

    .map-wrapper {
        height: 400px;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .landmark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}