* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
}

header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    gap: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 3rem;
    z-index: 1000;
    color: white;
}

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

li a {
    position: relative;
    color: white;
    font-weight: 300;
}

li a::before {
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    height: 5px;
    top: 25px;
    border-radius: 1rem;
    background-color: white;
    transition: 0.3s ease-in-out;
    background: linear-gradient(to right, rgb(221, 149, 196), rgb(255, 0, 255));
}

li a.active::before,
li a:hover::before {
    width: 100%;
}

.visit-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
    background: linear-gradient(to right, rgb(221, 149, 196), rgb(255, 0, 255));
}

.visit-btn:hover {
    background: linear-gradient(to right, rgb(255, 0, 255), rgb(221, 149, 196));
    transform: scale(1.03);
}

#menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

section {
    min-height: 100vh;
    padding: 8rem 12%;
    width: 100%;
    position: relative;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}

.about img {
    width: 30vw;
    border-radius: 50%;
}

.info-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.info-box h3 {
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.info-box h1 {
    font-size: 3rem;
    font-weight: 600;
}

.info-box span {
    background: linear-gradient(to right, rgb(214, 0, 214), rgb(231, 159, 206));
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    opacity: 0.8;
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    color: black;
    background-color: transparent;
    border-radius: 3rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid black;
    font-weight: 500;
    cursor: pointer;
    text-wrap: nowrap;
    transition: 0.2s ease-in-out;
}

.btn:hover {
    background-color: black;
    color: white;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: black;
    display: inline-block;
}

.socials i {
    font-size: 2rem;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.socials i:hover {
    transform: scale(1.1);
}

.experience-list {
    list-style: disc;
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.experience-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

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

.grid-card {
    border: 2px solid black;
    border-radius: 3rem;
    padding: 2rem; 
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: baseline;
    justify-content: left;
    transition: 0.3s ease-in-out;
}

.grid-card:hover {
    transform: scale(1.03);
    background-color: black;
    color: white;
}

.grid-card i {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.grid-card span {
   font-size: 1.5rem;
   font-weight: 500;
   background: linear-gradient(to right, rgb(198, 145, 179), rgb(189, 0, 189));
   background-clip: text;
   color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(219, 219, 219);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgb(198, 145, 179), rgb(189, 0, 189));
}

.tech-stack-container {
  display: flex;
  flex-wrap: wrap; 
  gap: 8px; 
  margin-top: 8px; 
  margin-bottom: 16px; 
}

.tech-badge {
  background-color: #f3f4f6; 
  color: #374151; 
  font-family: system-ui, -apple-system, sans-serif; 
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px; 
  border: 1px solid #e5e7eb; 
  transition: all 0.3s ease; 
  cursor: default; 
}

.tech-badge:hover {
  background-color: rgb(231, 159, 206); 
  color: #ffffff; 
  border-color: rgb(231, 159, 206);
  transform: translateY(-2px); 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    padding: 1.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 1.5rem;
    border: 2px solid black;
    border-radius: 3rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.project-card:hover {
    background-color: black;
    color: white;
    transform: translateY(-10px)scale(1.03);
}

.project-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 1.5rem;
}

.project-card:hover .btn {
    border: 2px solid white;
    color: white;
}

.project-card:hover .btn:hover {
    border: 2px solid white;
    background-color: white;
    color: black;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.input-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    margin-top: 5rem;
}

.input-box input {
    border-radius: 3rem;
    border: 2px solid black;
    padding: 2rem 8rem;
    font-size: 3rem;
}

.input-box input::placeholder {
    font-size: 3rem;    
}

.input {
    position: relative;
}

.input i {
    position: absolute;
    font-size: 4rem;
    top: 50%;
    left: 10px;
    transform: translate(50%,-50%);
}

footer {
    bottom: 0; 
    left: 0;
    height: 10rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

footer ul {
    display: flex;
    align-items: center;
    gap: 3rem;
}

footer ul li a {
    color: black;
    font-weight: 600;
}

.copyright {
    font-size: 300;
    margin-top: 2rem;
}






/*RESPONSIVENESS*/
@media (max-width: 1280px) {
    header {
        padding: 1rem 2rem;
        gap: 2rem;
    }

    .about .about-container {
        gap: 3rem;
    }
    
    .experience-info {
        flex-direction: column;
    }

    .input-box  input {
        padding: 2rem 5rem;
        font-size: 2.5rem;
    }

    .input input::placeholder {
        font-size: 2.5rem;
    }

    .input i {
        font-size: 2.5rem;
    }
}


@media (max-width: 768px) {
    header {
        gap: 1rem;
        padding: 1rem 1rem;
    }   

    header .logo {
        font-size: 1rem;
    }

    header .visit-btn {
        display: none;
    }

    .about-container {
        flex-direction: column;
    }

    .input-box input {
        padding: 1rem 2rem;
        font-size: 1.8rem;
    }

    .input input::placeholder {
        font-size: 1.5rem;
    }

    .input-box i {
        display: none;
    }

    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}



@media (max-width: 600px) {
    header #menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        margin-top: 1rem;
        width: 100%;
        padding: 1rem;
        color: white;
        display: none;
        flex-direction: column;
        text-align: center;
        background: rgba(0, 0, 0, 0.9);
        border-radius: 3rem;
    }

    .nav-links li {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    header {
        padding: 1rem 5rem;
        gap: 8rem;
    }

    header .logo {
        font-size: 1.5rem;
    }

    .about-container img {
        width: 80vw;
    }

    .input-box input {
        padding: 0.5rem 3rem;
        width: 80%;
        font-size: 1.5rem;
    }

    .input-box input::placeholder {
        font-size: 1.5rem;
    }

    footer ul {
        gap: 1rem;
    }
}

