body{
    background-color: #D8EBEF;
    font-family: "archivo", sans-serif;
    margin: 0;

}
body.loaded .logo {
    opacity: 1; 
    transform: translateY(0);}

#navBar {
    width: 100%;
    height: auto;
    background-color: rgb(61, 60, 64, 0);
    color: #3D3C40;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
    font-size: 4vh;
    font-weight:520;
}


#navBar.fixed {
    position: fixed; /* Switch to fixed position */
    background-color: rgba(61, 60, 64, 0); /* Solid background when fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays on top */
}




.logo {
    font-size: 5vh;
    font-weight: bolder;
    font-family: "Dancing Script", cursive;
    color: #A64149;
    text-shadow: #A64149;
    transform: translateY(20px); 
    transition: opacity 2s ease, transform 2s ease; 
}

.menu-icon {
    display: none; /* Hidden by default */
    font-size: 3vh;
    cursor: pointer;
    color:#A64149;
}

.navItems {
    display: flex;
    gap: 2.252vh;
}

.navItems a {
    text-decoration: none;
    color: inherit;
    padding: 5px 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navItems a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #D9525E;
}


@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .navItems {
        display: none; 
        flex-direction: column; 
        gap: 15px;
        width: 100%; 
        background-color: rgb(217, 82, 94); 
        position: absolute;
        top: 100%; 
        left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navItems a {
        padding: 10px 20px;
        font-size: 2.5vh;
        text-align: left;
        font-family:"archivo", sans-serif;
        color: #FAE5E3; 
    }

    .navItems.show {
        display: flex; 
    }
}




.headerImage{
    width: 100%;
    
}

h1{
    font-size: 5vh;
    color: #F08486;
    text-transform: capitalize;
    text-decoration:none;
    text-shadow: #F08486 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px;
}
   
h2{
    font-size: 3vh;
    color: #578493;
    text-shadow: #F08486 2px 2px 4px #F08486;
    padding: 10px;
}
 

.overview{
    font-size: 4vh;
    margin: 2vh;
    text-align: justify
}


.role{
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(238, 141, 141, 0.5);
    font-size: 3vh;
    padding: 20px;

}

.target{ 
     font-weight: bold;
    text-shadow: 2px 2px 4px rgba(238, 141, 141, 0.5);
    font-size: 3vh;
    padding: 20px;

}

.challengesImage{
    width: 90vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 5vh;
    margin: 0 auto;
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease; 
}
.challengesImage.visible {
    opacity: 1; 
    transform: translateY(0); 
}

li{
    font-size: 3vh;
    font-weight: bold;
}

.painText{
    font-size: 3vh;
}

.intro{
    line-height: 5vh;
}

.introText{
    font-size: 3vh;
    text-align: left;
    padding: 10px;
}
.personaImg{
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    margin: 20px auto; 
    padding: 10px;
    box-sizing: border-box;
}

.persona1 , .persona2 {
    display: flex;
    align-items: center; 
    justify-content: center; 
    width: 80%; 
    height: auto; 
    margin: 20px auto; 
    object-fit: cover;
    box-sizing: border-box; 
    background-color: rgba(166, 65, 73, 0.1);
    border-radius: 8px; 
}


.persona1, .persona2 {
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease; 
}

.persona1.visible, .persona2.visible {
    opacity: 1; 
    transform: translateY(0); 
}


.problemImage{
        width: 80vw;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 5vh;
        object-fit: cover;
        margin: 20px auto;
        opacity: 0;
        transform: translateY(20px); 
        transition: opacity 0.8s ease, transform 0.8s ease; 
    }
    
    .problemImage.visible{
        opacity: 1; 
        transform: translateY(0); 
    }


    .userjourneyImg{
        display: flex;  
        justify-content: space-between; 
        align-items: center; 
        flex-wrap: wrap;
        width: 100%; 
        margin: 20px auto; 
        padding: 10px;
        box-sizing: border-box;
        object-fit: cover;
    }

    .userJourneyImage1, .userJourneyImage2 {
        display: flex;
        align-items: center; 
        justify-content: center; 
        width: 60%; 
        height: auto; 
        margin: 20px auto; 
        box-sizing: border-box;
        object-fit: cover; 
        background-color: rgba(166, 65, 73, 0.1);
        border-radius: 8px; 
        opacity: 0;
        transform: translateY(20px); 
        transition: opacity 0.8s ease, transform 0.8s ease; 
    }

    .userJourneyImage1.visible, .userJourneyImage2.visible {
        opacity: 1; 
        transform: translateY(0); 
    }


    .ideationImage{
        width: 70vw;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 5vh;
        object-fit: cover;
        margin: 20px auto;
        opacity: 0; 
        transform: translateY(20px); 
        transition: opacity 0.8s ease, transform 0.8s ease; 
    }

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


    .informationImage{
        width: 70vw;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 5vh;
        margin: 20px auto;
        object-fit: cover;
        opacity: 0; 
        transform: translateY(20px); 
        transition: opacity 0.8s ease, transform 0.8s ease; 
    }
    .informationImage.visible {
        opacity: 1; 
        transform: translateY(0); 
    }

    

    .wireframeImg{
        display: flex;  
        justify-content: space-between; 
        align-items: center; 
        flex-wrap: wrap;
        width: 90%; 
        margin: 20px auto; 
        padding: 10px;
        box-sizing: border-box;
        background-color: rgb(240, 178, 180, 0.5);
    }

    .wireframeImage1, .wireframeImage2, .wireframeImage3, .wireframeImage4, .wireframeImage5, .wireframeImage6, .wireframeImage7, .wireframeImage8, .wireframeImage9{
        display: flex;
        align-items: center; 
        justify-content: center; 
        width: 20%; 
        height: auto; 
        margin: 0 auto; 
        box-sizing: border-box; 
        background-color: rgba(166, 65, 73, 0.1);
        border-radius: 8px; 
        object-fit: cover;
    }
    .digitalWireframeImage {
        width: 80%; 
        height: auto; 
        display: block;
        margin: 20px auto; 
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    }

     .digitalPrototype{
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 5vh;
        margin: 0 auto;    
    }

    .solution1, .solution2, .solution3, .solution4, .solution5, .solution6, .solution7{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        top: 5vh;
        padding: 30px;
    }

   .SolutionA, .SolutionB, .SolutionC, .SolutionE, .SolutionF, .SolutionG, .SolutionD, .mockup7, .mockup8, .mockup9{
    width: 30%;
    height: auto;
   }
     
   .footer{
    font-size: 5vh;
    align-self: center;
    padding: 10px;
   }

   .test{
    padding: 3vh;
   }
  
.testGoals{
    font-size: 3vh;
    text-align: left;
    padding: 10px;
    line-height: 3vh;
}

.TestParticipants{
    font-size: 3vh;
    text-align: left;
    padding: 10px;
    line-height: 5vh;
    font-weight: lighter;
}

.toolList{
    font-size: 3vh;
    text-align: left;
    padding: 10px;
    line-height: 5vh;
    font-weight: lighter;
}

.Scenarios{
    font-size: 3vh;
    text-align: left;
    padding: 10px;
    line-height: 5vh;
    font-weight: lighter;
}

table{
    width: 50%;
    height: auto;
    border-collapse: collapse;
    border: 1px solid black;
    font-size: 3vh;
    font-weight: lighter;
    padding: 5px;
    margin: 10px;
    text-align: left;
}

th, td {
    padding: 10px;
    border: 1px solid #131212;
}

.feedback{
    font-size: 3vh;
    text-align: left;
    padding: 10px;
    line-height: 5vh;
    font-weight: lighter;
}

.insightImage{
    width: 70vw;
    height: auto;
    display: block;
    object-fit: cover;
    top: 5vh;
    margin: 20px auto;
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease; 
}
.insightImage.visible {
    opacity: 1; 
    transform: translateY(0); 
}

.nextSteps{
    font-size: 3vh;
    text-align: left;
    padding: 30px;
    line-height: 5vh;
    font-weight: lighter;
}

.conclusion{
    font-size: 3vh;
    text-align: left;
    padding: 10px;
    line-height: 5vh;
    font-weight: lighter;
    background-color: rgb(188, 143, 143, 0.3);
    padding: 20px;
}

.designSystem{
    width: 80vw;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease; 
}
.designSystem.visible {
    opacity: 1; 
    transform: translateY(0);}

    @media (max-width: 768px) {
        .designSystem {
            width: 90vw;
        }
    }
    
    
    @media (max-width: 480px) {
        .designSystem {
            width: 95vw; 
        }
    }


    

@media (max-width: 768px) {
    .overview, .role, .target {
        font-size: 2.5vh; 
        line-height: 3.5vh; 
        width: 90%; 
        padding: 15px; 
    }
}


@media (max-width: 480px) {
    .overview, .role, .target {
        font-size: 2vh; 
        line-height: 3vh;
        width: 95%; 
        padding: 10px;
    }
}  



@media (max-width: 768px) {
    .personaImg, .problemImage, .userJourneyImg, .ideationImg, .informationImage {
        width: 90%;
        margin: 15px auto; 
    }
}


@media (max-width: 480px) {
    .personaImg, .problemImage, .userJourneyImg, .ideationImg, .informationImage {
        width: 100%; 
        margin: 10px auto; 
    }
}

@media (max-width: 768px) {
    .userJourneyImage1, .userJourneyImage2, .persona11, .persona22 {
        width: 90%;
        margin: 15px auto;
    }
}


@media (max-width: 480px) {
    .userJourneyImage1, .userJourneyImage2, .persona11, .persona22 {
        width: 100%; 
        margin: 10px auto; 
    }
}


@media (max-width: 768px) {
    .wireframeImage1, .wireframeImage2, .wireframeImage3, 
    .wireframeImage4, .wireframeImage5, .wireframeImage6, 
    .wireframeImage7, .wireframeImage8, .wireframeImage9 {
        width: 90%; 
        margin: 15px auto; 
    }
}


@media (max-width: 480px) {
    .wireframeImage1, .wireframeImage2, .wireframeImage3, 
    .wireframeImage4, .wireframeImage5, .wireframeImage6, 
    .wireframeImage7, .wireframeImage8, .wireframeImage9 {
        width: 100%; 
        margin: 10px auto; 
    }
}

@media (max-width: 768px) {
    .digitalWireframeImage {
        width: 90%; 
        margin: 15px auto; 
    }
}


@media (max-width: 480px) {
    .digitalWireframeImage {
        width: 100%; 
        margin: 10px auto; 
    }
}

@media (max-width: 768px) {
    .solution1, .solution2, .solution3, .solution4, .solution5, .solution6, .solution7 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}


@media (max-width: 480px) {
    .solution1, .solution2, .solution3, .solution4, .solution5, .solution6, .solution7 {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .SolutionA, .SolutionB, .SolutionC, .SolutionD, .SolutionE, .SolutionF, .SolutionG {
        width: 45%;
        margin: 15px auto; 
        font-size: 2.5vh; 
    }
}


@media (max-width: 480px) {
    .SolutionA, .SolutionB, .SolutionC, .SolutionD, .SolutionE, .SolutionF, .SolutionG {
        width: 90%; 
        margin: 10px auto; 
        font-size: 2vh; 
    }
}

@media (max-width: 768px) {
    .mockup7, .mockup8, .mockup9 {
        width: 45%;
        margin: 15px auto; 
        font-size: 2.5vh; 
    }
}


@media (max-width: 480px) {
    .mockup7, .mockup8, .mockup9 {
        width: 90%; 
        margin: 10px auto;
        font-size: 2vh; 
    }
}

@media (max-width: 768px) {
    .insightsImage {
        width: 90%; 
        margin: 15px auto;
    }
}


@media (max-width: 480px) {
    .insightsImage {
        width: 100%; 
        margin: 10px auto; 
    }
}

@media (max-width: 768px) {
    table {
        display: block; 
        overflow-x: auto; 
        white-space: nowrap;
    }

    th, td {
        font-size: 1.4rem; 
        padding: 8px;
    }
}


@media (max-width: 480px) {
    th, td {
        font-size: 1.2rem; 
        padding: 6px; 
    }
}

#footer{
    display: flex; 
     align-items: center; 
     justify-content: center;
     text-decoration: none;
     padding: 20px;
 }


 #footer a {
     text-decoration: none; 
     color: #3D3C40; 
     font-size: 3vh; 
     margin: 0 15px; 
     transition: color 0.3s ease; 
 }
 
 #footer a:hover {
     color: #A64149; 
 } 

 
 @media (max-width: 768px) {
    #footer {
      
        gap: 10px; 
    }

    #footer a {
        font-size: 3vh; 
    }
}


@media (max-width: 480px) {
    #footer {
       
        gap: 3px; 
    }

    #footer a {
        font-size: 3vh;
    }
}