/* Reset dan Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* Latar lembut */
}

.site-header {
    background-color: #C2F0FF; /* Biru pastel */
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand h1 {
    color: #FFC0DB; /* Pink pastel */
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFC0DB; /* Pink saat hover/aktif */
}

.site-main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    min-height: 70vh;
}

.site-footer {
    background-color: #FFC0DB; /* Pink pastel */
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: #C2F0FF; /* Biru link */
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Konten Halaman */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(to right, #C2F0FF, #FFC0DB);
    color: black;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-section {
    background: linear-gradient(to right, #C2F0FF, #FFC0DB);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.content-section {
    background: linear-gradient(to right, #C2F0FF, #FFC0DB);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem auto;
    text-align: center;
    max-width: 800px;
    animation: fadeUp 1.2s ease-out;
}

.content-section img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    animation: fadeUp 1.5s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.portfolio-item {
    background: #DAC6FF; 
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.project-detail {
    background: linear-gradient(to right, #C2F0FF, #FFC0DB)
    padding: 2rem;
    border-radius: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #C2F0FF;
    border-radius: 5px;
}

.contact-form button {
    background: #FFC0DB;
    color: #333;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background: #C2F0FF;
}

/* Responsif */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    
    .nav-menu {
        margin-top: 1rem;
    }
    
    .nav-menu li {
        margin: 0 1rem;
    }
}
