/* General Styles */
html, body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden; /* Hilangkan scroll horizontal */
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

h1, h2 {
    font-weight: 700;
}

/* Section Styling */
.bg-white {
    background: #1a1a1a !important;
    transition: all 0.3s ease-in-out;
}

.bg-white:hover {
    background: #333 !important;
    transform: translateY(-5px);
}

.text-black {
    color: #f2f2f2 !important;
}

.text-gray-600 {
    color: #b3b3b3 !important;
}

.text-gray-700 {
    color: #d9d9d9 !important;
}

.shadow-md {
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

/* Button Styling */
button, .btn {
    background: linear-gradient(135deg, #ff8c00, #ff2e63);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

button:hover, .btn:hover {
    background: linear-gradient(135deg, #ff2e63, #ff8c00);
    transform: scale(1.05);
}

/* Professional Skills Section */
.grid-cols-2 img, .grid-cols-4 img {
    transition: transform 0.3s ease-in-out;
}

.grid-cols-2 img:hover, .grid-cols-4 img:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }
}

/* Placeholder warna lebih soft */
input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Animasi Efek Masuk */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efek Smooth pada Form */
.relative {
    animation: fadeIn 1s ease-out;
}