/* maps.css - Page-specific styles for Maps page */

.maps-page {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image, .core-map-image, .featured-map-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 20px auto;
}

.map-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.map-item {
    flex: 1 1 300px;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.map-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.terrain-types {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.terrain-item {
    text-align: center;
    margin: 10px;
}

.comparative-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparative-table th, .comparative-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.atlas-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.atlas-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
}

#preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#preview-image {
    max-width: 90%;
    max-height: 90%;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8B4513; /* terracotta color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn:hover {
    background-color: #A0522D;
}

/* Add more styles as needed */