/* Reset dasar */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Poppins", sans-serif;

}

/* Header dengan foto background */
.projects-header {
    position: relative;
    width: 100%;
    height: 30vh;
    background: url('https://i.pinimg.com/736x/14/60/54/1460544c14e26b1bd102e6ff01308af4.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Efek warna oranye */
.projects-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 165, 0, 0.6); /* Oranye transparan */
    z-index: 0;
}

/* Agar teks tetap terlihat di atas overlay */
.projects-header h1,
.projects-header p,
.projects-header a {
    position: relative;
    z-index: 1;
}

.projects-header h1{
    font-family:Arial, Helvetica, sans-serif;
}

.projects-header p {
    font-family: inherit;
}

.projects-header a{
    color: #f5f5f5;
    background-color: #ff5722;
}

/* Tombol kembali */
.back-home {
    margin-top: 10px;
    text-decoration: none;
    color: white;
    background: rgba(255, 69, 0, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.back-home:hover {
    background: rgba(255, 69, 0, 1);
}

/* Section Projects */
.projects-section {
    padding: 50px;
    text-align: center;
}

/* Highlight Project */
.featured-project {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.featured-project h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff5722;
}

.video-container {
    width: 100%;
    height: 500px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Grid untuk project lain */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 20px 5px rgba(248, 172, 149, 0.7);
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-card h4 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.project-card p {
    font-size: 12px;
    padding: 0 10px 15px;
    color: #666;
    text-align: left;
}

footer {
    background: linear-gradient(135deg, #1c1c1c, #292929);
    color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo h2 {
    font-size: 22px;
    font-weight: bold;
    color: #f5f5f5;
    transition: transform 0.3s ease;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 14px;
    transition: color 0.1s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    transition: transform 0.1s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.8;
}

.social-icons img {
    width: 28px;
    height: auto;
    filter: invert(1);
}

.social-icons img.github {
    width: 50px; /* Perbesar ukuran */
}

.social-icons img.youtube {
    width: 34px;
    padding-top: 2.5px;
}

.footer-text {
    font-size: 13px;
    color: #a0a0a0;
    margin-top: 10px;
}
