@font-face {
    font-family: "Geologica";
    src: url("fonts/geologica-font.ttf");
    font-weight: 100 900;
    font-style: normal;
}

.landing-html {
    background-image: url("pictures/backgroundtechimage.jpg");
    background-size: cover;
    background-position: center;
}
.landing-title {
    font-size: clamp(1.5em, 5vw, 4rem);
    margin: 0;
    background: linear-gradient(45deg,#EAFF00, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero1 {
    font-family: "Geologica", sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.landing-menu-box {
    padding: 0;
    border-radius: 0.75rem;
}
.landing-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.landing-button {
    border-radius: 0.75rem;
    height: clamp(2.5rem, 6vh, 3.25rem);
    min-width: clamp(7.5rem, 18vw, 10rem);
    padding: 0 1rem;
    font-size: clamp(2rem, 1.6vw, 2.5rem);
    font-family: inherit;
    white-space: nowrap;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: white;
    width: 100%;
}
.button-text {
    font-weight: 700;
    background: linear-gradient(45deg,#EAFF00, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hover-grow {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.hover-grow:hover, .hover-grow:focus, .hover-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media (max-width: 640px) {}
.menu {
    flex-direction: column;
    width: 100%;
}

.main-body {
    font-family: "Geologica", sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-title {
    font-size: clamp(2em, 5vw, 4rem);
    text-shadow: 0 0 5px #60a5fa,
                 0 0 10px #3B82F6,
                 0 0 20px #2563EB,
                 0 0 40px #1D4ED8;
    color: white;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left right";
    min-height: 50vh;
    margin: 0;
    gap: 2rem;
    padding: 1rem;
    justify-content: center;
    align-items: center;
}
.about-skillsandimages {
    display: flex;
    grid-area: left;
    flex-direction: column;
    background-color: white;
    border-radius: 20%;
    font-size: clamp(1.2rem, 1.6vw, 1.2rem);
    padding: 5%;
    box-shadow: 0 0 5px #60a5fa,
                0 0 10px #3B82F6,
                0 0 20px #2563EB,
                0 0 40px #1D4ED8;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}
.about-images{
    position:relative;
    display: grid;
    width: 50%;
    aspect-ratio: 1/2;
    box-shadow: 0 0 5px #60a5fa
                0 0 10px #3B82F6,
                0 0 20px #2563EB,
                0 0 40px #1D4ED8;
    
}

.dev-photo1, 
.dev-photo2 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15%;
    box-shadow: 0 0 10px #3B82F6,
                0 0 20px #2563EB,
                0 0 40px #1D4ED8;
    animation: imagswap 14s ease-in-out infinite;
}
.dev-photo1{
    animation: imageswap1;
}

.dev-photo2 {
    opacity: 0;
    animation: imageswap2 14s infinite;
}

@keyframes imageswap1 {
    0%, 45% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}
@keyframes imageswap2 {
    0%, 45% {
        opacity: 0;
    }
    50%, 95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.about-text {
    grid-area: right;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 20%;
    font-size: clamp(1.2rem, 1.6vw, 1.2rem);
    padding: 0;
    box-shadow:  0 0 5px #60a5fa,
                 0 0 10px #3B82F6,
                 0 0 20px #2563EB,
                 0 0 40px #1D4ED8;
    color: white;
    text-shadow: 0 0 5px #4FC1FF,
                 0 0 7px #4FC1FF,
                 0 0 8px #3B82F6,
                 0 0 9px #2563EB,
                 0 0 10px #1D4ED8;
    height: 100%;
    justify-content: center;
    font-weight: 700;
}

.nav-bar-box {
    padding: 0;
    border-radius: 0.75rem;
    background-color: transparent;
}

.nav-bar {
    display: flex;
    gap: 1rem;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding:0;
    font-family: inherit;
    background-color: transparent;
}

.nav-button {
    color:white;
    box-shadow: 0 0 5px #60a5fa,
                0 0 10px #3B82F6,
                0 0 20px #2563EB,
                0 0 40px #1D4ED8;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
    border-radius: 0.75rem;
    white-space: nowrap;
    font-family: inherit;
    cursor: pointer;
    backdrop-filter: 0;
    text-shadow: 0 0 5px #60a5fa,
    0 0 10px #3B82F6,
    0 0 20px #2563EB,
    0 0 40px #1D4ED8;
    border: 0;
    height: clamp(2.5rem, 6vh, 3.25rem);
    min-width: clamp(7.5rem, 18vw, 10rem);
    font-size: clamp(1.5rem, 1.6vw, 2.5rem);
}

.about-text p {
    margin: 0;
    text-align: center;
    margin: 2rem;
}
.developer-info{
    display: flex;
    width: 100%;

}
.bluewords {
    color: #569CD6;
}
.lightbluewords {
    color: #9CDCFE;
}
.yellowwords {
    color: #DCDCAA;
}
.orangewords {
    color: #CE9178;
}

.container-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "left middle right";
    gap: 1rem;
    width: 100%;
    min-height: 50vh;
    margin: 0;
    gap: 2rem;
    padding: 1rem;
    justify-content: center;
    align-items: center;
}
.services-container1{
    display: flex;
    grid-area: left;
    flex-direction: column;
    border-radius: 20%;
    font-size: clamp(1rem, 1vw, 1.2rem);
    padding: 5%;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    background-color: white;
    box-shadow: 0 0 5px #60a5fa,
                0 0 10px #3B82F6,
                0 0 20px #2563EB,
                0 0 40px #1D4ED8;
    height: 70vh;

}
.services-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 5px #4FC1FF,
                 0 0 7px #4FC1FF,
                 0 0 8px #3B82F6,
                 0 0 9px #2563EB,
                 0 0 10px #1D4ED8;
    gap: 2rem;
}
h2, h3 {
    color: white;
    font-weight: 700;
    text-shadow: 0 0 5px #4FC1FF,
                 0 0 7px #4FC1FF,
                 0 0 8px #3B82F6,
                 0 0 9px #2563EB,
                 0 0 10px #1D4ED8;
    text-align: center;
}
.services-container2 {
    display: flex;
    grid-area: middle;
    flex-direction: column;
    border-radius: 20%;
    font-size: clamp(1rem, 1vw, 1.2rem);
    padding: 5%;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    background-color: white;
    box-shadow: 0 0 5px #60a5fa,
                0 0 10px #3B82F6,
                0 0 20px #2563EB,
                0 0 40px #1D4ED8;
    height: 70vh;
}
.footer {
    justify-content: center;
    align-items: center;
}
.footer-statement {
    text-align: center;
    font-family: inherit;
    font-style: italic;
    color: white;
    text-shadow: 0 0 5px #4FC1FF,
                 0 0 7px #4FC1FF,
                 0 0 8px #3B82F6,
                 0 0 9px #2563EB,
                 0 0 10px #1D4ED8;

}
.services-container3 {
    display: flex;
    grid-area: right;
    flex-direction: column;
    border-radius: 20%;
    font-size: clamp(1rem, 1vw, 1.2rem);
    padding: 5%;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    background-color: white;
    box-shadow: 0 0 5px #60a5fa,
                0 0 10px #3B82F6,
                0 0 20px #2563EB,
                0 0 40px #1D4ED8;
    height: 100hv;
}
.services-button {
    width: 80%;
    color:white;
    box-shadow: 0 0 5px #60a5fa,
                0 0 10px #3B82F6,
                0 0 20px #2563EB,
                0 0 40px #1D4ED8;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
    border-radius: 0.75rem;
    white-space: nowrap;
    font-family: inherit;
    cursor: pointer;
    backdrop-filter: 0;
    text-shadow:0 0 5px #60a5fa,
                0 0 10px #3B82F6,
                0 0 20px #2563EB,
                0 0 40px #1D4ED8;
    border: 0;
    height: clamp(2.5rem, 6vh, 3.25rem);
    min-width: clamp(7.5rem, 18vw, 10rem);
    font-size: clamp(1.5rem, 1.6vw, 2.5rem);
}
.socials-nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10rem;
    margin-top: 10rem;
}
.socials-nav a{
    display: block;
    text-align: center;
}  

section {
    height: 100%;
    width: 100%;
}
.LinkedIn , .GitHub , .Instagram {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
}
.socials-icon {
    width: 10rem;
    height: 10rem;
    transition: transform .7s ease-in-out;
}
.socials-icon:hover {
    transform: rotate(360deg);
}