/**
 * Midnight Expansion - Zones Module Styles
 */

.zones-module {
    color: #f8fafc;
}

.zones-module .module-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.zones-module h1 {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.zones-module .module-intro {
    color: #94a3b8;
    max-width: 800px;
    margin: 0.5rem auto 0;
}

/* Zone Overview Gallery */
.zone-overview-gallery {
    margin-top: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    border-color: #10b981;
}

/* Zone Cards */
.zone-card {
    margin-bottom: 3rem;
    padding: 0 !important;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zone-header {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.zone-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zone-card:hover .zone-banner {
    transform: scale(1.1);
}

.zone-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.zone-header-overlay h2 {
    margin: 0;
    font-size: 2.2rem;
    color: #f8fafc;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.zone-tag {
    background: #10b981;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.zone-body {
    padding: 2rem;
}

.zone-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.2rem;
    border-radius: 12px;
    border-left: 3px solid #10b981;
}

.feature-item h4 {
    color: #10b981;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Content Pills */
.content-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.pill {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pill.delves {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pill.dungeons {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pill.raid {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Event Highlight */
.event-highlight {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.3) !important;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.event-highlight h4 {
    color: #fbbf24;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.event-highlight p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .zone-header {
        height: 200px;
    }

    .zone-header-overlay h2 {
        font-size: 1.8rem;
    }

    .zone-header-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}