* {
    box-sizing: border-box;
    margin: 0;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: black;
    color: white;
}

.image-box {
    position: relative;
    height: auto; /* Set a fixed height for the image box */
}

/* Medium screens (tablets and smaller laptops) */
@media (min-width: 1000px) {
    .image-box {
        height: 50%;
    }
}

.left-arrow {
    position: absolute; 
    left: 20px; 
    top: 20px; /* Positioning adjustments */
    font-size: 2em; 
    color: white; 
    cursor: pointer; /* Pointer cursor for clickable icon */
}

.menu-icon {
    position: absolute; 
    right: 20px; 
    top: 20px; /* Positioning adjustments */
    font-size: 2em; 
    color: white; 
    cursor: pointer; /* Pointer cursor for clickable icon */
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the image box */
}

.container {
    padding: 10vw;
}


h1 {
    font-family: "Funnel Display", serif;
    font-weight: normal;
    font-size: 3vw; /* Default size, optimized for mid-size screens */
}

/* Larger screens (desktops and large laptops) */
@media (min-width: 1200px) {
    h1 {
        font-size: 2.5vw; /* Slightly smaller to prevent it from becoming too large on very wide screens */
    margin-top: -4vw;
    }
}

/* Medium screens (tablets and smaller laptops) */
@media (max-width: 991px) {
    h1 {
        font-size: 4vw; /* Increase font size slightly for smaller screens */
    }
}

h2 {
    font-family: "Funnel Display", serif;
    font-size: 10vw; /* Ukuran font default untuk semua ukuran layar */
    color: #ff69b4; /* Pink untuk judul utama */
}

/* Untuk layar kecil (smartphone) */
@media (max-width: 600px) {
    h2 {
        font-size: 15vw; /* Ukuran font lebih besar untuk layar kecil */
    }
}

/* Untuk layar menengah (tablet) */
@media (min-width: 601px) and (max-width: 1200px) {
    h2 {
        font-size: 12vw; /* Ukuran font yang sesuai untuk tablet */
    }
}

/* Untuk layar besar (desktop) */
@media (min-width: 1201px) {
    h2 {
        font-size: 8vw; /* Ukuran font default untuk desktop */
		line-height: 7vw;
    }
}

.collab {
    font-family: "Funnel Display", serif;
    color: #ccc;
}

.buttons {
    display: flex; /* Allows buttons to be inline */
    flex-direction: row; /* Aligns buttons horizontally */
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
    gap: 10px; /* Space between buttons */
    margin: 10px 0;
}

button {
    font-family: "Funnel Display", serif;
    background-color: #2633FE;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px; /* Added margin to separate buttons */
}

.about-section {
    display: flex;
    padding-top: 3vw;
    background-color: black; /* Background color black */
    color: white; /* Text color white */
}

.about-header {
    flex: 0.3; /* Takes up one portion of space */
    margin-right: 40px; /* Space between sections */
}

.about-content {
    flex: 2; /* Takes up two portions of space */
    margin-right: 20px; /* Space between sections */
}

.url-scope {
    flex: 0; /* Takes up one portion of space */
    display: flex;
    flex-direction: column; /* Aligns URL and Scope vertically */

}

.url, .scope-of-work {
    margin-bottom: 10px; /* Space between URL and Scope of Work */
}

h3 {
    font-family: "Funnel Display", serif;
    font-size: 4vw; /* Default size for small screens */
    color: #6d6d6d;
}

/* Media query for medium screens */
@media (min-width: 768px) { 
    h3 {
        font-size: 1.5rem; /* Fixed size for medium screens */
    }
}

/* Media query for large screens */
@media (min-width: 1024px) { 
    h3 {
        font-size: 1rem; /* Fixed size for large screens */
    }
}


h4 {
    font-family: "Funnel Display", serif;
    font-size: 4vw; /* Default size for small screens */
    margin-bottom: 10px; /* No spacing above and below */
}

/* Media query for medium screens */
@media (min-width: 768px) {
    h4 {
        font-size: 2rem; /* Fixed size for medium screens */
    }
}

/* Media query for large screens */
@media (min-width: 1024px) {
    h4 {
        font-size: 2rem; /* Fixed size for large screens */
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column; /* Stack the sections on smaller screens */
    }

    .about-header, .about-content, .url-scope {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 10px; /* Space between stacked sections */
    }
}

p {
    font-family: "Funnel Display", serif;
    font-size: 3vw; /* Default size for small screens */
    margin: 0 0 1em 0; /* Adjust spacing below paragraphs */
}

/* Media query for medium screens */
@media (min-width: 768px) {
    p {
        font-size: 1rem; /* Fixed size for medium screens */
    }
}

/* Media query for large screens */
@media (min-width: 1024px) {
    p {
        font-size: 1rem; /* Fixed size for large screens */
    }
}

/* Secondary paragraph style (p2) */
.p2 {
    font-family: "Funnel Display", serif;
    font-size: 3vw;
    color:#6d6d6d;
}

/* Larger screens (desktops and large laptops) */
@media (min-width: 1200px) {
    .p2 {
        font-size: 0.5vw; /* Slightly smaller to prevent it from becoming too large on very wide screens */
		margin-top: 2vw;
        margin-bottom: 2vw ;
    }
}

/* Medium screens (tablets and smaller laptops) */
@media (min-width: 600px) {
    .p2 {
        font-size: 1.3vw; /* Increase font size slightly for smaller screens */
    }
}


ul {
    list-style-type: none; /* Removes default bullets */
    padding: 0; /* Removes default padding */
}

li {
    margin: 10px 0; /* Spacing between list items */
}

a {
    color: #ff69b4; /* Link color */
    text-decoration: none; /* Removes underline */
}

a:hover {
    text-decoration: underline; /* Adds underline on hover */
}


/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 50px; /* Jarak antar gambar */
    padding-top: 20px;
    padding-bottom: 20px;
}

.gallery img {
    width: 100%; /* Gambar akan mengambil lebar maksimal di kontainer */
    border-radius: 5px; /* Sudut gambar melengkung */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Bayangan gambar */
    transition: transform 0.2s; /* Efek transisi saat hover */
    cursor: pointer; /* Menunjukkan bahwa gambar dapat diklik */
}

.gallery img:hover {
    transform: scale(1.05); /* Memperbesar gambar saat hover */
}

.lightbox {
    display: none; /* Awalnya tidak terlihat */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Latar belakang hitam transparan */
    justify-content: center; /* Mengatur gambar ke tengah */
    align-items: center; /* Mengatur gambar ke tengah */
}

.lightbox-content {
    max-width: 80%; /* Maksimum lebar gambar */
    max-height: 80%; /* Maksimum tinggi gambar */
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer; /* Menunjukkan bahwa ini dapat diklik */
}