body {
    margin: 0;
    background-size:cover;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 2rem;
    background: linear-gradient(#aaffff, #FFFFFF); /* light blue to steel grey */

}


.body-paragraf {
    margin: 0;
    background-size:cover;
    font-family: Arial, sans-serif;
    font-size: 28px;
    margin: 0;
    padding: 2rem;
    background: white;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    width: 100%;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.body-paragraf img {
    width: 100%;
    height: auto;
}


.signature-container {
    margin-top: 2rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column; /* <-- This stacks h1 over h2 */
    align-items: center;
    justify-content: center;
}



h1, h2 {
    color: #3E606F;
    z-index: 10;
    margin: 0;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
}

h1 {
    font-size: clamp(24px, 8vw, 64px);
    white-space: nowrap;
}
h2 {
    font-size: 14px;
    margin-top: 0.5rem; /* Adds spacing below h1 */
    @media (min-width: 480px) {
        font-size: 3vw;
    }
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    #max-width: 1000px;
    width: 100%;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.project-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}


.project-card:hover {
    transform: scale(1.02);
}

.project-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-content {
    padding: 1rem;
}

.project-content h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.project-content p {
    font-size: 0.9rem;
    color: #555;
}

.project-content a {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
}


svg {
    width: 100%;
}

.wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1; /* Optional: Push it behind content */
    #rotate: 180deg;
}
    .wave {
    animation: wave 16s linear infinite;
}

.wave1 {
    animation: wave1 20s linear infinite;
}

.wave2 {
    animation: wave2 24s linear infinite;
}
@keyframes wave {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes wave1 {
    0% {
        transform: scaleY(1.2) translateX(0%);
    }
    100% {
        transform: scaleY(1.2) translateX(100%);
    }
}

@keyframes wave2 {
    0% {
        transform: scaleY(0.8) translateX(0%);
    }
    100% {
        transform: scaleY(0.8) translateX(100%);
    }
}
.social-icons {
    position: relative;
    top: 2rem; /* Push above the waves */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(100px, 20vw, 300px);
    height: auto;
}

.social-icons svg {
    transition: transform 0.3s ease;
}

.social-icons a:hover svg {
    transform: scale(1.2);
}


.social-icons {
    position: relative;
    top: 2rem; /* Push above the waves */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(100px, 20vw, 300px);
    height: auto;
}

.social-icons svg {
    transition: transform 0.3s ease;
}

.social a:hover svg {
    transform: scale(1.2);
}

.nav-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  #background-color: #fff; /* or transparent or same as .social-icons */
}

.nav-bar a {
  text-decoration: none;
}

.nav-bar svg.svg_image {
    width: clamp(50px, 8vw, 300px);
    height: auto;
    #fill: #333; /* Match .social-icons color */
    transition: transform 0.2s ease, fill 0.2s ease;
}

.nav-bar svg.svg_image:hover {
  transform: scale(1.1);
  #fill: #0a66c2; /* highlight like LinkedIn color */
}

