* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kulim Park', sans-serif;
}

body {
    background-color: #169873;
}

main {
    max-width: 1440px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
}
.social-container{
    height:50px;
    width:auto;
    display:flex;
    flex-direction:row;

}
.contact{
    display:flex;
    flex-direction:column;
    
}
.thumb{
  height:50px;
  width:50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.logo {
    color: #169873;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.hero {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    border-radius: 3px;
    overflow: hidden; /* Ensures the image doesn't spill outside the hero container */
}

.hero_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Similar to background-size: cover */
    object-position: center; /* Similar to background-position: center */
    z-index: 1; /* Lower z-index so content appears above */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 2; /* Above the image but below the content */
}

.hero-content {
    position: relative;
    z-index: 3; /* Highest z-index to ensure text appears above everything */
    padding: 0 20px;
    max-width: 800px;
    text-align:center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
.header{
    display:flex;
    min-height: 50px;
    justify-content: space-between;
}
.social{
    display:flex;
    height:100%;
}
.tiktok, .facebook {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.tiktok {
    background-image: url('/tiktok.svg');
}

.facebook {
    background-image: url('/facebook.svg');
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius:3px;
}

.hero h1, .hero p {
    position: relative;
    z-index: 1;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.4;
}

.about {
    display: flex;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
    justify-content: space-evenly;
}
.about-divide{
    display:flex;
    width:50%;
    height:100%;
    justify-content: center;
    align-items: center;
}

.about img {
    height: 600px;
    width: auto;
    border-radius: 10px;
}

.about-content h2 {
    color: #169873;
    font-size:42px;
    margin-bottom: 20px;
}
.about-content p{
    font-size: 1.1rem;
    line-height: 1.2;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    list-style: none;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    color: #169873;
    position: absolute;
    left: 0;
    font-size: 1.5em;
}
.

.projects {
    text-align: center;
    margin: 60px 0;
}

.projects h2 {
    margin-bottom: 40px;
}

.projects h2 span {
    color: #169873;
}

.project-grid {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    /*grid-template-columns: repeat(4, 1fr);*/
    gap: 20px;
    margin-top: 20px;
}
.project-text{
    text-align:center;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    width: 250px;
    height: 375px;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-item:hover img {
    transform: scale(1.1);
}

footer {
    text-align: center;
    width: 100%;
    padding: 20px;
    position: relative;
    bottom: 0;
    flex-direction: column;
    display:flex;
}
@media (max-width:780px){
    .about{
        flex-direction: column-reverse;
    }
    .about-content{
        width:70%;
    }
    .about-divide{
        width:100%;
    }
}
@media (max-width:550px){
    .about-content{
        width:90%;
    }
    .about img{
        height: auto;
        width: 90%;
    }
    .social-container{
        flex-direction:column;
    }
}
/*@media (max-width: 1090px) {*/
/*    .project-grid {*/
/*        grid-template-columns: repeat(3, 1fr);*/
/*    }*/
/*}*/
/*@media (max-width: 820px) {*/
/*    .project-grid {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*    }*/
/*}*/
/*@media (max-width: 550px) {*/
/*    .project-grid {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*}*/