/* Index Specific Styles */

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 109, 119, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-header);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Nav Grid */
.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.nav-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.nav-card:hover::before {
    transform: scaleX(1);
}

.nav-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 109, 119, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-card:hover .nav-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(15deg);
}

.nav-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--text-main);
}

.nav-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Quick Links Section */
.quick-links {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.link-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--bg-body);
    border-radius: var(--border-radius-sm);
    color: var(--text-main);
    font-weight: 500;
    transition: all 0.2s ease;
}

.link-item svg {
    margin-right: 10px;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.link-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    color: var(--primary-color);
    transform: translateX(5px);
}

.link-item:hover svg {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 4rem 0 3rem;
    }
}
