* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Julius Sans One", sans-serif;
}

body {
    background-color: #0e0e0e;
    color: #f5f5f5;
}

main {
    padding-top: 40px;
}

.projects-page {
    height: 90vh;
    background-size: cover;
    background-position: center;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro {
    font-size:35px;
    width: 100%;
    font-weight: bold;
    color: black(44, 22%, 94%, 0.9);
    text-align: center;
    justify-content: center;
    margin: 10px auto;
    text-shadow: 0 0 20px #ff66cc;

}

.intro h3 {
    font-size: 18px;
    font-style: italic;
    font-weight: lighter;
    margin-top: 5px;
}

.perm-header {
    position: relative;
    height: 75px;
    width:100%;
    background-color: hsla(44, 22%, 94%, 0.7);
}

.page-links {
    display: flex;
    justify-content: space-evenly;
    height: 100%;
}

.page-links li {
    display: flex;
    align-items: center;    /* vertical centering ✅ */
    justify-content: center; /* optional: horizontal centering */
    height: 100%;
    font-size: 35px;
}

.page-links a {
    display: flex;
    height: 100%;
    text-decoration: none;
    color: #000;
    align-items: center;
}

.page-links a:hover {
    color: #ff66cc;
    transform: scale(1.3);
}


.project-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    gap: 20px;
}

#left-arrow, 
#right-arrow {
    font-size: 40px;
    color: #ff66cc;
    
    border: 2px solid #ff66cc;
    border-radius: 10px;
    box-shadow: 0 0 20px #ff66cc;

}

.project-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 700px;
    margin: 20px auto;
    
    border: 3px solid #ff66cc;
    border-radius: 10px;
    box-shadow: 0 0 20px #ff66cc;
    background-color: gray;
}

.project-container a {
    color: white;
    font-style: italic;
}

.project-container a:hover {
    transform: scale(1.1);
    color: #ff66cc;
}

.project-wrapper {
    margin-bottom: 35px;
}

.project-wrapper h1 {
    font-size: 35px;
    margin-top: 7px;
    margin-bottom: 4px;
}

.project-wrapper h2 {
    font-size: 20px;
    margin: 7px;
}

.project-wrapper h3 {
    font-size: 15px;
    margin: 7px;
}

.project-description {
    margin-top: 4px;
    margin-bottom: 10px;
}

.project-container video,
.project-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 10px auto; 
}

.project-card {
    display: none; 
}

.project-card.active {
    display: block; 
}

footer {
    background-color: hsla(44, 22%, 94%, 0.7);
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer i {
    transition: transform 0.3s;
    margin: 7px;
    font-size: 50px;
}

.links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap:20px;
    font-size:18px;
}

.links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size:18px;
}

.links a:hover {
    color: #ff66cc;
}

.links a:hover i {
    transform: scale(1.3);
    color: #ff66cc;
}