/* Location Page Specific Styles */

.location-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(241, 94, 34, 0.05) 0%, rgba(255, 153, 102, 0.05) 100%);
    position: relative;
}

.location-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.location-hero p {
    font-size: 1.3rem;
    color: var(--gray-color);
}

/* Location Details */
.location-details {
    padding: 100px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.details-content h2 {
    margin-bottom: 1.5rem;
}

.details-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.location-info {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.info-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.info-item h4 {
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.info-item p {
    margin: 0;
    color: var(--gray-color);
}

.info-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.details-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--light-color);
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    height: 300px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Map Section */
.map-section {
    padding: 100px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    box-shadow: var(--shadow-xl);
    border-radius: 20px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 968px) {
    .location-hero h1 {
        font-size: 3rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .location-hero {
        padding: 140px 0 80px;
    }

    .location-hero h1 {
        font-size: 2.5rem;
    }

    .location-details,
    .gallery-section,
    .map-section {
        padding: 60px 0;
    }

    .gallery-item {
        height: 250px;
    }
}
