:root {
    --color-primary: #e60073;
    --color-secondary: #ff4da6;
}

html {
    scroll-behavior: smooth;
    zoom: 100%;
}

body {
    background-color: black;
    min-height: 100vh;
    font-family: system-ui, sans-serif;
    margin: 0;
}

/* Top Bar */
.topBar {
    padding-bottom: 30px;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    position: sticky;
    top: 0;
    z-index: 1600;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #0000006b;
    /* padding: 20px; */
    margin-top: -160px;
    display: flex
;
    justify-content: space-between;
    align-items: center;
        border-radius: 0 0 15px 15px;

}

.topBar.scrolled {
    background-color: black;
    box-shadow: 0 4px 6px #3130317d;
    border-radius: 0 0 15px 15px;
}

/* Navigation */
.navigationMenu a, .home a {
    background-color: transparent;
    border: none;
    padding: 14px 28px;
    font-size: 22px;
    cursor: pointer;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: 0.4s;
}


.home a {

    color: #ff4da6;
    background-color: transparent;
    /* margin-left: 175px; */
    border: none;
    font-size: 22px;
    cursor: pointer;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    transition-duration: 0.4s;
    border-left-style: solid;
    text-align: justify;
    text-shadow: 0 0 black;
    font-family: sans-serif;
    padding-left: 8px;
}

/* .home button:hover { */

.home a:hover {
    color: rgb(255, 255, 255);
        /* padding: 1px 5px; */
    margin-left: 175px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding-left: 8px;
}

.navigationMenu a:hover, .home a:hover {
    color: var(--color-secondary);
}


a {
  text-decoration: none;  
}



.title {
    position: absolute;
    width: 100%;
    top: 50%;
    z-index: 5;
    text-align: center;
    margin-top: -175px;
}

.title .hello {
    font-size: 80px;
    font-weight: 800;
    letter-spacing: 5px;
    color: transparent;
    -webkit-text-stroke: 2px white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);}

.title .welcome {
    margin-top: -80px;
    font-size: 50px;
    font-weight: 300;
    color: #fff;
    animation: glow 1s ease-in-out infinite alternate;
    text-shadow: 0 0 10px #ff4da6, 0 0 20px #ff4da6;

}

/* .iconos
{
    z-index: 1500;
    position: absolute;
    width: 100%;
    top: 100%;
    text-align:center;
    margin-top: 148px;
    display:block;
    font-size: 22px;
    text-shadow: 0 0 black;
    font-family: sans-serif;
    display: flex;
    justify-content: space-evenly;
    background-color: #000000b1;

    /* background: #333; */
    /* padding: 10px 10px;
    /* border-radius: 5px; */

/* } */ 

.slides-container {
    position: relative; 
}

.iconos {

    position: absolute; 
    bottom: 0;          
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 10px 0;
    background-color: #000000b1; 
    z-index: 1500;
    font-size: 22px;
    text-shadow: 0 0 black;
    font-family: sans-serif;
}


.iconos a {
    color: #ff4da6;       
    text-decoration: none; 
    transition: 0.3s;
}

.iconos a:hover {
    color: #ffffff; 
}



/* Sections */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
    color: white;
}

/* Skills */
.skills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}

.skills li {
    background: #333;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Projects */
.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}



.content img {
    width: 100%;
}

.content h4 {
    margin: 10px 0 5px;
    color: var(--color-secondary);
}

.content p {
    color: white;
}

/* Contact Form */
.formContainer {
    max-width: 500px;
    margin: auto;
}

.aboutMe {
        text-align: justify;

}

.inputBox {
    position: relative;
    margin-bottom: 20px;
}

.inputBox input, .inputBox textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #6d6a6a97;
    border-radius: 5px;
    background: transparent;
    color: white;
    font-size: 16px;
    font-family: system-ui, sans-serif;
}

.inputBox label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 15px;
    color: #6d6a6a;
    transition: 0.3s;
    background: black;
    padding: 0 5px;
}

.inputBox input:focus ~ label,
.inputBox input:valid ~ label,
.inputBox textarea:focus ~ label,
.inputBox textarea:valid ~ label {
    top: -1px;
    font-size: 15px;
    color: white;
}

.submitForm {
    width: 73%;
    height: 45px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: 0.4s;
    display: block;      
    margin: 0 auto;      
}

.submitForm:hover {
    color: var(--color-secondary);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: black;
    color: white;
}

