/*
Theme Name: AI Hub Vizag Portal
Theme URI: https://aihubvizag.com
Author: Sri@itsSri.net
Description: A lightweight, zero-dependency custom theme for the AI Hub Vizag news, events and careers portal.
Version: 1.0
Text Domain: aihubvizag
*/

:root {
    --primary: #0a4275;
    --secondary: #1a73e8;
    --background: #f8f9fa;
    --text: #333333;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

header {
    background: var(--primary);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

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

.card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    margin-top: 0;
    color: var(--primary);
}

.card a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #e9ecef;
    margin-top: 4rem;
}
