/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e293b;
    --secondary: #86efac;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --red-50: #fef2f2;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --blue-600: #2563eb;
}



/* Main Content */
.main-content {

}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Section Title */
.section-title {
    margin-top: 32px;
    text-align: center;
}

.section-title h3 {
    display: inline-block;
    font-size: 24px;
}

.title-underline {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
}

/* Content Sections */
.content-sections {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Intro Section */
.intro-section {
    color: var(--gray-700);
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
}

/* Section Heading */
.section-heading {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.section-heading .icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
}

/* Map Section */
.map-container {
    width: 100%;
    margin-top: 32px;
    border-radius: 8px;
    overflow: hidden;
}

/* Car Section */
.car-content {
    background-color: var(--gray-50);
    border-radius: 8px;
    padding: 24px;
}

.warning-box {
    background-color: var(--red-50);
    border-left: 4px solid var(--red-500);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 16px;
}

.warning-box p {
    font-size: 14px;
    color: #991b1b;
}

.directions-info {
    margin-bottom: 32px;
}

.directions-info h5 {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Parking Section */
.parking-section {
    margin-top: 32px;
    padding: 24px;
    background-color: white;
    border-radius: 8px;
}

.parking-map-wrapper {
    position: relative;
    max-width: 672px;
    margin: 0 auto 16px;
}

.parking-map {
/*     width: 100%; */
    height: auto;
    border-radius: 8px;
/*
    cursor: pointer;
    transition: transform 0.3s ease;
*/
	margin:auto;
}
/*

.parking-map:hover {
    transform: scale(1.02);
}
*/

.enlarge-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.enlarge-btn:hover {
    background-color: white;
}

.enlarge-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Parking Details */
.parking-details {
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
}

.parking-details h6 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

.parking-info {
    margin-bottom: 16px;
}

.info-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.info-label.mt {
    margin-top: 24px;
}

.parking-info p {
    margin-bottom: 4px;
}

.info-highlight {
    background-color: rgb(222, 241, 255);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.info-highlight p {
    font-size: 14px;
}

/* Tables */
.table-wrapper {
    margin-top: 16px;
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--gray-300);
}

.info-table thead {
    background-color: var(--gray-100);
}

.info-table th {
    border: 1px solid var(--gray-300);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
}

.info-table td {
    border: 1px solid var(--gray-300);
    padding: 12px 16px;
}

.info-table tbody tr td:first-child {
    width: 192px;
}

.parking-notes {
    margin-top: 16px;
}

.parking-notes p {
    font-size: 14px;
    color: var(--gray-600);
}

.external-link {
    color: var(--blue-600);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.external-link:hover {
    text-decoration: underline;
}

.external-link svg {
    width: 12px;
    height: 12px;
}

/* Train Section */
.train-content {
    background-color: var(--gray-50);
    border-radius: 8px;
    padding: 24px;
}

.train-info {
    margin-bottom: 32px;
}

.train-info p {
    margin-bottom: 8px;
}

.train-list {
    margin: 16px 0;
    padding-left: 20px;
}

.train-list li {
    list-style: disc;
    margin-bottom: 8px;
}

/* Contact Box */
.contact-box {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
}

.contact-title {
    font-size: 16px;
    margin-bottom: 16px;
    text-decoration: underline;
}

.contact-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--primary);
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--blue-600);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.contact-note {
    font-size: 14px;
    color: var(--red-600);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 40;
    background-color: var(--primary);
    color: white;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: rgba(30, 41, 59, 0.9);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background-color: rgba(17, 24, 39, 0.95);
    color: white;
    padding: 64px 0;
}

.footer-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
}

.footer-info {
    color: #d1d5db;
}

.footer-info p {
    margin-bottom: 12px;
}

.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 48px;
    padding-top: 32px;
    text-align: center;
    color: #9ca3af;
}

/* Image Modal */
.image-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: white;
}

.modal-close svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .enlarge-btn {
        bottom: 16px;
        right: 16px;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .parking-map-wrapper {
        max-width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .scroll-top-btn,
    .image-modal {
        display: none;
    }
}
