/*
Theme Name:   GeneratePress Child for Today Panchangam
Theme URI:    https://todaypanchangam.in
Description:  Custom child theme for GeneratePress with multi-language gateway and Panchangam tools.
Author:       Today Panchangam Developer
Template:     generatepress
Version:      1.0.0
Text Domain:  generatepress-child
*/

/* Custom CSS for Language Gateway Grid Layout */
.gateway-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}
.gateway-title {
    font-size: 32px;
    color: #111111;
    margin-bottom: 12px;
    font-weight: 700;
}
.gateway-subtitle {
    font-size: 18px;
    color: #555555;
    margin-bottom: 50px;
}
.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.lang-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 20px;
    text-decoration: none !important;
    color: #1f2937;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lang-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.15);
    border-color: #1a73e8; /* Blue highlight */
}
.lang-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}
.lang-native {
    font-size: 14px;
    color: #6b7280;
}