/* General styles https://coolors.co/palette/7bc785-99e089-9cd6a1-e6ffeb-ffffff */
body.bg-loaded::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://132magnet.com/media/noise-texture.png');
    background-repeat: repeat;
    background-size: 500px 500px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

body {
    font-family: Arial, sans-serif;
    background-color: #E6FFEB;
    color: #7BC785;
    font-family: 'DynaPuff', monospace;
    overflow-x: hidden;
}

p {
	width: 92%;
	color: #7BC785;
	margin-top: -15px;
}

a {
    width: 92%;
    color: #9CD6A1;
    margin-top: -10px;
}

.fullscreen-center {
    min-height: 100vh; /* Minimum height of the viewport */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.container {
    display: grid;
    gap: 16px; /* Adds spacing between columns */
    margin: 16px; /* Optional: Adds some margin around the container */
}

/* General styles for splits */
.split-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; /* Adjust gap as needed */
}

.split-1-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 1100px) {
    .split-50-50 {
        grid-template-columns: 1fr;
    }
    
    .split-1-3 {
        grid-template-columns: 1fr;
    }
	
	.profile-pic {
		width: 320px !important;
		height: auto !important;
	}
	
	.fullscreen-center {
		flex-direction: column !important;
	}
	
	.input-box {
		width: 350px !important;
	}
	
	.big-name-text {
		margin-bottom: 60px;
		font-size: 3.6rem !important;
	}

    .circle {
      width: 200px;
      height: 200px;
    }

}

.item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.item.visible {
    opacity: 1;
    transform: translateY(0);
}

.profile-pic {
    width: 420px;
    height: auto;
    border-radius: 50%;
}

.big-name-text {
    font-size: 4rem;
    font-weight: bold;
    margin-top: 0px;
}

.big-text {
    font-size: 4rem;
    font-weight: bold;
	margin-top: 0px;
}

.big-numbers {
    font-size: 4rem;
    font-weight: bold;
	margin-top: 50px;
	margin-bottom: 0px;
}

.language-div {
	margin-top: 3px;
    display: flex;
}

.language {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 32px;
    border: 1.6px solid #B4FABA;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    font-size: 1.2rem;
    margin: 2.2px;
    transition: all 0.3s ease;
}

    .language:hover {
        background-color: #37713F;
        border-color: #B4FABA;
        box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.6);
        transform: scale(1.05);
    }

.text-div {
	width: 80%;
    font-size: 1.5rem;
	line-height: 1.6;
	max-width: 1000px;
}

.project {
    display: flex;
    align-items: center;
    width: 330px;
    height: 480px;
    border: 1.6px solid #B4FABA;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    margin: 2.2px;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
}

    .project:hover {
        background-color: #37713F;
        border-color: #B4FABA;
        box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.6);
        transform: scale(1.05);
    }

.project-pic {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 350px;
    height: 220px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    margin: 2.2px;
	margin-top: 15px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 65px;
    border: 1.6px solid #B4FABA;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    margin: 2.2px;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
}

    .button:hover {
        background-color: #37713F;
        border-color: #B4FABA;
        box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.6);
        transform: scale(1.05);
    }

.button:active {
    transform: scale(0.9); /* Shrink the button slightly */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); /* Reduce shadow for depth effect */
}

.input-box {
    padding: 8px;
    font-size: 1.2em;
    border: 1.6px solid #B4FABA;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    background-color: #E6FFEB;
    width: 600px;
    margin: 10px;
    color: #99E089;
    min-height: 25px;
}

textarea {
    height: 150px;
    resize: none;
}

.hidden {
    display: none;
}

.projectLink {
    position: fixed;
    bottom: 15px;
    right: 15px;
    
    width: 30px;
    height: 30px;
    
    background-image: url('media/projectLink.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

    .blur-circle {
      position: fixed;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 1;
      animation: float 20s ease-in-out infinite alternate;
    }

    .circle {
      width: 300px;
      height: 300px;
      z-index: -9999;
    }

    @keyframes float {
      0%   { transform: translateY(0px) translateX(0px); }
      100% { transform: translateY(-30px) translateX(20px); }
    }