/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-buttons .btn-outline {
    border-color: white;
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--alwahyu-dark);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--alwahyu-primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--alwahyu-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--alwahyu-text);
    margin-bottom: 20px;
    font-size: 1rem;
}

.card-link {
    color: var(--alwahyu-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--alwahyu-primary-2);
}

/* News Section */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.news-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid var(--alwahyu-border);
    transition: all 0.3s ease;
    display: block;
}

.news-item:hover {
    border-color: var(--alwahyu-primary);
    box-shadow: 0 5px 20px rgba(62, 125, 55, 0.1);
    transform: translateY(-5px);
}

.news-date {
    font-size: 0.9rem;
    color: var(--alwahyu-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.news-title {
    font-size: 1.1rem;
    color: var(--alwahyu-dark);
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
}
