/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body.home {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #0A0E17;
    color: #FFFFFF;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-blue {
    color: #00C2FF;
}

.text-white {
    color: #FFFFFF;
}


/* Header & Navigasi */
.site-header {
    padding: 20px 0;
    background-color: #0A0E17;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #00C2FF;
}


/* Hero Section */
.hero {
    height: 50vh;
    background: url('bghome.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 14, 23, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    position: relative;
    align-items: center;
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero p {
    font-size: 16px;
    color: #CCCCCC;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #00C2FF;
    color: #0A0E17;
    border: 1px solid #00C2FF;
}

.btn-primary:hover {
    background-color: #009ACC;
    border-color: #009ACC;
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #0A0E17;
}


/* Tech Insights Section */
.deep-insights {
    padding: 50px 0;
    background-color: #0A0E17;
}

.deep-insights .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
}

.deep-insights h2 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-subtitle {
    color: #CCCCCC;
    text-align: center;
    margin-bottom: 60px;
    font-size: 14px;
    letter-spacing: 1px;
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.article-card {
    display: flex;
    flex-direction: row;
    background-color: #121826;
    text-decoration: none;
    color: #FFFFFF;
    border: 1px solid #abdeee;
}

.article-card:hover {
    background-color: #1A2233;
}

.article-img {
    width: 35%;
    height: auto;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info {
    padding: 30px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.article-meta {
    font-size: 12px;
    color: #CCCCCC;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.article-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 10px;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}