/* Explorer Class Page Styles */

/* Hero Section - Full width */
.explorer-hero {
    background: transparent;
    background-image: url('../images/page-hero-bg.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    padding: calc(var(--space-3xl) + 80px) 0 var(--space-xl);
    min-height: auto;
    overflow: visible;
}

.explorer-hero .container {
    text-align: left;
    padding-left: 5%;
}

.explorer-hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-style: italic;
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 60%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.explorer-hero .hero-desc {
    color: var(--color-white);
    max-width: 500px;
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    text-align: left;
    font-size: var(--text-sm);
}

/* Hide hero decorations */
.explorer-hero .hero-decoration {
    display: none !important;
}

/* Explorer Section */
.explorer-section {
    background: var(--color-white);
    padding: var(--space-3xl) 0;
}

/* Explorer Grid */
.explorer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Explorer Card */
.explorer-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explorer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.explorer-image {
    height: 140px;
    overflow: hidden;
}

.explorer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.explorer-card:hover .explorer-image img {
    transform: scale(1.05);
}

.explorer-content {
    padding: var(--space-md);
    text-align: center;
}

.explorer-content h3 {
    font-size: var(--text-sm);
    color: var(--color-text);
    margin: 0 0 var(--space-xs);
    font-weight: 700;
}

.explorer-subtitle {
    font-size: var(--text-xs);
    color: #666;
    margin: 0 0 var(--space-sm);
}

/* Explorer Button */
.btn-explorer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-orange);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-explorer:hover {
    background: #d35400;
    transform: scale(1.05);
}

.btn-explorer.disabled {
    background: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

/* Coming Soon Card */
.explorer-card.coming-soon {
    background: var(--color-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.explorer-coming-soon {
    text-align: center;
    padding: var(--space-lg);
}

.coming-badge {
    display: inline-block;
    background: transparent;
    border: 2px dashed var(--color-orange);
    color: var(--color-orange);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

.explorer-coming-soon h3 {
    font-size: var(--text-md);
    color: var(--color-text);
    margin: 0 0 var(--space-md);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
    .explorer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .explorer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .explorer-hero {
        padding: 100px 0 30px;
    }
    
    .explorer-hero h1 {
        font-size: 2rem;
        max-width: 70%;
    }
    
    .explorer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .explorer-image {
        height: 120px;
    }
    
    .explorer-card.coming-soon {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .explorer-grid {
        grid-template-columns: 1fr;
    }
    
    .explorer-content {
        padding: var(--space-sm);
    }
    
    .explorer-content h3 {
        font-size: var(--text-sm);
    }
}
