/* Location Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Transportation Cards */
.transport-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Transportation Icons */
.transport-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Transportation Information */
.transport-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.transport-description {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.transport-details {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Map Container */
.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Venue Information */
.venue-info {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.venue-info h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.venue-info p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.venue-info strong {
    color: var(--primary-color);
}

/* Nearby Attractions */
.attraction-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
    padding: 1.5rem;
}

.attraction-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.attraction-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.attraction-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.attraction-description {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Weather Information */
.weather-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.weather-info h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.weather-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.weather-details {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Accommodation Information */
.accommodation-info {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.accommodation-info h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.accommodation-info p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.accommodation-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.accommodation-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .transport-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .venue-info,
    .accommodation-info {
        padding: 1.5rem;
    }
    
    .weather-info {
        padding: 1.5rem;
    }
}

/* Grid Layout */
.transport-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.attractions-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .transport-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .attractions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (min-width: 992px) {
    .transport-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .attractions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Card Enhancements */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Background Light Section */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header .lead {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Contact Information */
.contact-info {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Directions Section */
.directions-section {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.directions-section h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.directions-section ol {
    color: #495057;
    line-height: 1.8;
    padding-left: 1.5rem;
}

.directions-section li {
    margin-bottom: 0.5rem;
}

/* Parking Information */
.parking-info {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.parking-info h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.parking-info p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.parking-info ul {
    color: #495057;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.parking-info li {
    margin-bottom: 0.5rem;
} 