﻿/* Image Styles - Clean & Professional */
.hero-logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(78, 205, 196, 0.3));
}

.featured-realm {
    margin: 3rem 0;
    text-align: center;
}

.featured-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(78, 205, 196, 0.2);
}

.realm-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(78, 205, 196, 0.15);
    transition: all 0.3s ease;
}

.realm-card:hover .realm-image {
    transform: scale(1.02);
    border-color: rgba(78, 205, 196, 0.4);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.2);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
    }
    
    .realm-image {
        height: 180px;
    }
}
