/*
Theme Name: TeFa SMKN 1 Tenggarong
Theme URI: https://smkn1tenggarong.sch.id
Author: Asisten AI
Description: Tema WordPress khusus untuk Teaching Factory SMK Negeri 1 Tenggarong. Dilengkapi dengan tampilan beranda langsung.
Version: 1.0
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f3f4f6;
}
header {
    background-color: #1E3A8A;
    color: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
header h1 { 
    margin: 0; 
    font-size: 22px; 
    letter-spacing: 1px;
}
nav ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    gap: 25px; 
}
nav ul li a { 
    color: white; 
    text-decoration: none; 
    font-weight: 600; 
    transition: 0.3s;
}
nav ul li a:hover { 
    color: #F59E0B; 
}
.hero {
    background: linear-gradient(rgba(30,58,138,0.85), rgba(30,58,138,0.85)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1350&q=80') center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
}
.hero h2 { 
    font-size: 42px; 
    margin-bottom: 20px; 
    color: #F59E0B; 
}
.hero p { 
    font-size: 18px; 
    max-width: 800px; 
    margin: 0 auto 30px; 
    line-height: 1.7; 
}
.btn {
    background-color: #F59E0B; 
    color: white; 
    padding: 15px 35px;
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 8px; 
    display: inline-block;
    transition: 0.3s;
}
.btn:hover { 
    background-color: #d97706; 
}
.section-title { 
    text-align: center; 
    padding: 60px 20px 20px; 
    color: #1E3A8A; 
    font-size: 32px;
}
.services {
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
    justify-content: center;
    padding: 20px 50px 60px;
}
.service-card {
    background: white; 
    border-radius: 10px; 
    padding: 30px 20px; 
    width: 280px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05); 
    text-align: center; 
    border-top: 5px solid #F59E0B;
    transition: 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1); 
}
.service-card h3 { 
    color: #1E3A8A; 
    margin-bottom: 15px;
}
.service-card p {
    color: #555;
    line-height: 1.5;
    font-size: 15px;
}
footer {
    background-color: #111827; 
    color: #d1d5db; 
    text-align: center; 
    padding: 40px 20px;
    border-top: 4px solid #F59E0B;
}
footer h3 {
    color: white;
}
footer p {
    margin: 5px 0;
}
