/* Styling Global & Font */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #e50914; /* Merah aksen */
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #e50914;
    margin: 10px auto 0;
}

/* Header & Navigasi */
.header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo h1 {
    font-size: 2em;
    color: #e50914;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar a {
    color: #f0f0f0;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #e50914;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    position: relative;
}

/* Bagian lainnya (about, skills, projects) */
.section {
    padding: 80px 50px;
    text-align: center;
}

/* Contoh styling untuk skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.skill-item {
    background-color: #2b2b2b;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

/* Kontak & Footer */
.contact-links a {
    display: inline-block;
    background-color: #e50914;
    color: #fff;
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-links a:hover {
    background-color: #ff3333;
}

.footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
    color: #888;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ff000033 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    animation: cursed-energy 10s linear infinite;
}

@keyframes cursed-energy {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    background-color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}