/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #000000, #00fed4, #000000);
    color: #333;
}

/* Header Styles */
header {
    background: #00000094;
    padding: 10px 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
#hero {
    background: url('path/to/your-image.jpg') no-repeat center center/cover; /* Ganti 'path/to/your-image.jpg' dengan path gambar */
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content .btn {
    padding: 10px 20px;
    background: #05f8ec;
    color: rgba(245, 118, 14, 0.836);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-content .btn:hover {
    background: #91ff00af;
    transform: scale(1.05);
}

/* About Section */
#about {
    padding: 50px 20px;
    text-align: center;
    background: #08020228;
}

#about h2 {
    color: #007bff;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Skills Section */
#skills {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
}

.skills-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.skill-card {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: scale(1.1);
}

/* Projects Section */
#projects {
    padding: 50px 20px;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.project-card {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.project-card:hover {
    transform: scale(1.05);
    background-color: #e8e8e8;
}

/* Contact Section */
#contact {
    padding: 40px 15px;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    margin: 15px auto;
    max-width: 600px;
}

#contact h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

#contact p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact form input, 
#contact form textarea {
    width: 90%;
    max-width: 400px;
    margin: 10px 0;
    padding: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease-in-out;
}

#contact form input:focus, 
#contact form textarea:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

#contact form textarea {
    resize: none;
    height: 120px;
}

#contact form button {
    padding: 10px 20px;
    margin-top: 15px;
    background: white;
    color: #007bff;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

#contact form button:hover {
    background: #e8e8e8;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Footer Styles */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Me Section */
.about-me {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
}

.about-me h2 {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.about-me p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin: 0 20px;
}

/* Profile Picture */
.profile-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid hsl(122, 39%, 49%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}
