
html, body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/*Master container to hold all header elements*/
.introContainer{
    position: relative;
    text-align: center;
    color: white;
    background-color: black;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/*Main Image in header background*/
 .myImg{
    max-width: 60vw;
    height: auto;
    opacity: 0.2; 
    border-radius: 5rem;
    outline: 2rem dashed black;
    outline-offset: -1rem;
    margin: 5rem;
} 

.introHeader{
    position:absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(15px, 2.0vw, 200px);
}

.introBio{
    position:absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10px, 2.5vw, 60px);

}

/*Instagram logo posiion, image, and effects*/
.instaLogo{
    position:absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10px, 2.5vw, 60px);
    padding: calc(0.5rem + 0.5vw) calc(1rem + 1vw);
}

#instaLogoTag{
    width: 15%;
    height: auto;
    top: 80%;
    left: 50%;
    
}

#instaLogoTag:hover{
    content: url("imagefiles/instaLogoNewHL.png");
    
}

/* Optional: ensure usability on very small screens IMAGE SIZE*/
    @media (max-width: 800px) {
        .instaLogo a #instaLogoTag{
            width: 40%;
        }
    }


/*Animated arrow gif and its attributes*/
.arrowAnimation{

    position:absolute;
    top: 80%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 15%;
    height: 20%;
    background-image: url('imagefiles/ArrowDown1_T1.gif');
    background-size: contain;
    background-repeat: no-repeat;
    filter: grayscale(1) brightness(1) sepia(0) hue-rotate(200deg) saturate(10);
}

/*Addition padding space to extend the header section more*/
.extraSpace{
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: calc(8rem + 1vw) calc(5rem + 2vw);

}

/*Property custom variables for changing color to portfolio button*/
@property --myColor{
    syntax: '<color>';
    initial-value: rgb(247, 161, 0);
    inherits: false;
}


@property --myColor2{
    syntax: '<color>';
    initial-value: rgb(240, 74, 74);
    inherits: false;
}


.portfolioBtn{

    position:absolute;
    /* box-shadow: 0 0 5px 5px rgba(190, 143, 40, 0.3); */
    font-size: calc(0.3rem + 1vw);
    padding: calc(0.5rem + 0.5vw) calc(1rem + 1vw);
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: linear-gradient(var(--myColor),var(--myColor2));
    border-color: transparent;
    color: white;
    transition: --myColor 0.5s, --myColor2 0.5s, box-shadow 0.5s;
    cursor: pointer;
    white-space: nowrap;
    
}

.portfolioBtn:hover{
    box-shadow: 0 0 5px 5px rgba(68, 167, 248, 0.3);
    /* background: linear-gradient(to bottom right,rgb(105, 170, 255) 10%, rgb(26, 97, 163)100%); */
    --myColor: rgb(105, 170, 255);
    --myColor2:rgb(26, 97, 163);
}

.portfolioBtn:active{
     --myColor: rgb(255, 105, 105);
    --myColor2:rgb(163, 26, 26);
    box-shadow: 0 0 5px 5px rgba(248, 68, 68, 0.3);
}


 /* Optional: limit max size so it doesn't get too big */
    @media (min-width: 1000px) {
        .portfolioBtn {
            font-size: 180%;
            padding: 0.5% 0.5%;
        }
    }

    /* Optional: ensure usability on very small screens */
    @media (max-width: 400px) {
        .portfolioBtn {
            font-size: 180%;
            padding: 0.5% 0.5%;
        }
    }


/*END OF HEADER MODIFICATIONS*/


/*MAIN SECTION MODIFICATION INCLUDING NAVIGATION BAR AND CONTENT*/

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0.5% 20%;
  overflow: hidden;
  background-color: transparent;
  display: flex;
  justify-content: center;
  
}

nav ul li{

    padding:1% 2%;
}

nav ul li a {
  display: block;
  color: black;
  text-align: center;
  /* padding: 14px 16px; */
  text-decoration: none;
  font-size: 150%;
  font-weight: bold;
}

nav ul li a:hover {
  color: var(--myColor);
  text-decoration: underline;
  transform: translate(2px, -2px);
}


nav #myName{
    margin-right: auto;
    font-size: 180%;
    font-weight: bold;
    padding: 1% 1%;
}

/*PROFESSIONAL SECTION*/

.Professional{

    position: relative;
    text-align: center;
    color: black;
    background-color: white;
    margin: 0;
    padding: 0;
    font-size: 300%;
    overflow: hidden;
}


  /* Optional: ensure usability on very small screens */
    @media (max-width: 800px) {
        .Professional {
            font-size: 150%;
        }
    }


.ProfProjects{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  
}

.ProfProjects li{
    padding: 5% 1%;
}


.ProfProjects li img{
    border-radius: 10%;
    border-style: solid;
    border-color: var(--myColor);
    border-width: 7px;
    box-shadow: 2px 5px 5px 5px rgba(17, 31, 43, 0.5);
    cursor: pointer;
    transition: transform 0.5s;
}


.ProfProjects li img:hover{
    /* filter: grayscale(0%) brightness(90%) sepia(50%) hue-rotate(200deg) saturate(600%) opacity(50%); */
    box-shadow: 2px 5px 5px 5px rgba(9, 39, 73, 0.8);
    transform: translate(5px, -10px);
    border-color: rgb(63, 146, 223);
    
}


/*HOVER EFFECTS TO ADD TEXT AND CHANGE ICON BACKGROUND*/
.brunoTag a img:hover{
    content: url(imagefiles/b_Catering_Hover.png);
}

.indiTag a img:hover{
    content: url(imagefiles/indiPrjct_Hover.png);
}

.hbTag a img:hover{
    content: url(imagefiles/hb_Prjct_Hover.png);
}


/*PERSONAL SECTION*/
.Personal{

    position: relative;
    text-align: center;
    color: black;
    background-color: white;
    margin: 0;
    padding: 0;
    font-size: 300%;
    overflow: hidden;
}

.PersProjects{

  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  
}

.PersProjects li{
    padding: 5% 1%;
}

.PersProjects li img{

    border-radius: 10%;
    border-style: solid;
    border-color: var(--myColor);
    border-width: 7px;
    box-shadow: 2px 5px 5px 5px rgba(17, 31, 43, 0.5);
    cursor: pointer;
    transition: transform 0.5s;

}

.PersProjects li img:hover{
    /* filter: grayscale(50%) brightness(90%) sepia(50%) hue-rotate(300deg) saturate(600%) opacity(100%); */
    box-shadow: 2px 5px 5px 5px rgba(9, 39, 73, 0.8);
    transform: translate(5px, -10px);
    border-color: rgb(63, 146, 223);
}

/*HOVER EFFECTS TO ADD TEXT AND CHANGE ICON BACKGROUND*/
.swTag a img:hover{
    content: url(imagefiles/SW_prjct_Hover.png);
}

.ncTag a img:hover{
    content: url(imagefiles/NC_prjct_Hover.png);
}

/*============================================================================================================================*/
/*===========================================ABOUT ME - HTML PAGE CONTENT=====================================================*/
/*============================================================================================================================*/


/*BACK LINK TO GO BACK TO HOMEPAGE*/
#backLink a{
     padding: 0px 10px;
     color: black;
     text-decoration: none;
}

#backLink a:visited{
     color: black;
     text-decoration: none;
}

#backLink a:hover{
    color:var(--myColor);
}

#bodyBG #backLink a{
    color: white;
}

#bodyBG #backLink a:hover{
    color: var(--myColor);
}

/*ABOUT SECTION CONTENT*/

.aboutSection{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.aboutSummary{
    
    max-width: 40%;
    height: fit-content;
    text-align: center;
    align-content: center;
    margin: 1% 0 1% 0;
    
}

.aboutSummary p{
    font-size: 150%;
    color: grey;
}


/* Optional: limit max size so it doesn't get too big */
    @media (min-width: 1000px) {
        .aboutSummary {
            max-width: 40%;
        }
    }

    /* Optional: ensure usability on very small screens */
    @media (max-width: 800px) {
        .aboutSummary {
            max-width: 80%;
        }
    }


/*PROFILE PICTURE AND NAME*/

.aboutSummary img{
    

    width: 30%;
    height: 30%;
    border-radius: 90%;
    border-color: var(--myColor);
    border-style:double;
    border-width: 0.8rem;
}

/*SERVICES SECTION*/

.aboutSummary h2{
    margin-top: 10%;
}

.myServices{

    list-style-type: none;
    text-decoration: none;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    padding: 1%;
    gap: 5%;
    font-size: 150%;
    color: gray;
    flex-wrap: wrap;

}

.myServices li{
    padding: 1%;
}

/*Footer SECTION*/
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    height: 10vh;
    margin-top: 11vh;
    color: white;
    font-size: 150%;
    opacity: 0.9;
}

/*============================================================================================================================*/
/*============================================CONTACT - HTML PAGE CONTENT=====================================================*/
/*============================================================================================================================*/


#bodyBG{
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(imagefiles/yamabonMT1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(0, 0, 0);
}
#bodyBG nav{
    color: white;
}
#bodyBG nav ul li a{
    color: white;
}

#bodyBG nav ul li a:hover{
  color: var(--myColor);
  text-decoration: underline;
  transform: translate(2px, -2px);
}

.contactSection{
    padding-top: 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.contactSection h1{
    color: white;
    opacity: 0.7;
    font-size: 350%;
}

.contactSection h2{
    text-decoration: underline;
    font-size: 250%;
    color: var(--myColor);
}

.contactSection p{
    font-size: 250%;
    color:white;
}

.contactSection #instaLogoTag{
    width: 5%;
    height: 5%;
}

/* Optional: ensure usability on very small screens IMAGE SIZE*/
    @media (max-width: 800px) {
        .contactSection a #instaLogoTag{
            width: 40%;
        }
    }


/*============================================================================================================================*/
/*===========================================HOLY BANGERS - HTML PAGE CONTENT=================================================*/
/*============================================================================================================================*/

.hbContentSection{
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.hbContentSection h1{
    font-size: 350%;
}

.hbContentSection p{
    width: 50%;
    height: 20%;
    margin: 0 25%;
    padding-top: 2%;
    font-size: 180%;
    text-align: center;
    color: gray;
}

.hbMainLogo1{

    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    
}

.hbMainLogo1 img{

    width: 50%;
    height:50%;
    
}

.hbMainLogo2{

    overflow: hidden;
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    
}

.hbMainLogo2 img{

    
    width: 50%;
    height:50%;
    
}

.hbMockupSet1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1%;
    overflow: hidden;
    padding: 1%;
    height: 100%;
    width: 75%;
   
}

.hbMockupSet1 img{
     width: 30%;
     height: 30%;
     border-radius: 10%;
}

/* Optional: ensure usability on very small screens */
    @media (max-width: 800px) {
        .hbMockupSet1 {
            max-width: 100%;
            flex-direction: column;
        }
    }

/* Optional: ensure usability on very small screens IMAGE SIZE*/
    @media (max-width: 800px) {
        .hbMockupSet1 img{
            width: 60%;
        }
    }


.hbMockupSet2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5%;
    overflow: hidden;
    padding: 1%;
    height: 100%;
    width: 75%;
   
}

.hbMockupSet2 img{
     width: 90%;
     height: 30%;
     border-radius: 10%/15%;
     padding: 1%;
}

.hbMockupAdvert{

     display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1%;
    overflow: hidden;
    padding: 0;
    height: 100%;
    width: 75%;

}

.hbMockupAdvert img{
     width: 90%;
     height: 30%;
     border-radius: 10%/15%;
     padding: 0;
}


.hbMockupSet3{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1%;
    overflow: hidden;
    padding: 0;
    height: 100%;
    width: 75%;
   
}

.hbMockupSet3 img{
     width: 90%;
     height: 30%;
     border-radius: 10%/15%;
     padding: 0;
}

/*============================================================================================================================*/
/*======================================INDIGENOUS LOGOFOLIO PROJECT - HTML PAGE CONTENT======================================*/
/*============================================================================================================================*/

.indiContentSection{

    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;


}

.indiContentSection h1{
    font-size: 350%;
    text-align: center;
}

.indiContentSection p{
    width: 50%;
    height: 20%;
    margin: 0 25%;
    padding-top: 2%;
    font-size: 180%;
    color: gray;
}


.KSLSlogo{

    padding-top: 5%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.KSLSlogo img{
    
    width: 50%;
    height: auto;
    border-radius: 10%;
}

.KSLSmockup1{

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1%;
    overflow: hidden;
    padding: 1% 0;
    height: 100%;
    width: 75%;

}

.KSLSmockup1 img{
     width: 30%;
     height: 30%;
     border-radius: 10%/8%;
}

.DClogo{

    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.DClogo img{
    width: 50%;
    height: auto;
    border-radius: 10%;
}

.DCmockup1{

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1%;
    overflow: hidden;
    padding: 1% 0;
    height: 100%;
    width: 75%;

}

.DCmockup1 img{
     width: 30%;
     height: 30%;
     border-radius: 10%/8%;
}


.SAGElogo{

    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.SAGElogo img{
    
    width: 50%;
    height: auto;
    border-radius: 10%;
}

.sageDisplaySet{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.sageDisplaySet img{
    
    width: 50%;
    height: auto;
    border-radius: 10%;
}

/*============================================================================================================================*/
/*=========================================BRUNO CATERING PROJECT - HTML PAGE CONTENT=========================================*/
/*============================================================================================================================*/

.brunoContentSection{

    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;


}

.brunoContentSection h1{
    font-size: 350%;
    text-align: center;
}

.brunoContentSection p{
    width: 50%;
    height: 20%;
    margin: 0 25%;
    padding-top: 2%;
    font-size: 180%;
    color: gray;
}

/*MAIN LOGO IMAGE*/
.brunologo{

    padding-top: 5%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.brunologo img{
    
    width: 50%;
    height: auto;
    border-radius: 10%;
}

/*SOCIAL MEDIA BANNER IMAGE*/
.brunoSocialMediaBanner{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.brunoSocialMediaBanner img{
    
     width: 50%;
    height: auto;
    border-radius: 10%;

}

/*STYLE SHEET IMAGE*/
.brunoStyleSheet{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.brunoStyleSheet img{
    
     width: 50%;
    height: auto;
    border-radius: 10%/5%; /**MAKE RECTANGLE SHAPE HAVE EVEN ROUNDED CORNERS*/
    object-fit: cover;

}

/*STYLE CONCEPT IMAGE*/

.brunoStyleConcept{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.brunoStyleConcept img{
    
    width: 50%;
    height: auto;
    border-radius: 10%/20%; /**MAKE RECTANGLE SHAPE HAVE EVEN ROUNDED CORNERS*/
    object-fit: cover;

}

/*CATERING MENU MOCKUP IMAGE*/
.brunoCateringMenu{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.brunoCateringMenu img{

    width: 50%;
    height: auto;
    border-radius: 10%/16%; /**MAKE RECTANGLE SHAPE HAVE EVEN ROUNDED CORNERS*/
    object-fit: cover;

}

/*BUSINESS CARD IMAGE*/
.brunoBusinessCard{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.brunoBusinessCard img{

    width: 50%;
    height: auto;
    border-radius: 10%/16%; /**MAKE RECTANGLE SHAPE HAVE EVEN ROUNDED CORNERS*/
    object-fit: cover;

}

/*SHIRT MOCKUP 1 IMAGE*/
.brunoShirtMockup{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}


.brunoShirtMockup img{
    
    width: 50%;
    height: auto;
    border-radius: 10%/15%; /**MAKE RECTANGLE SHAPE HAVE EVEN ROUNDED CORNERS*/
    object-fit: cover;

}



/*============================================================================================================================*/
/*==========================================SACRED WATER PROJECT - HTML PAGE CONTENT==========================================*/
/*============================================================================================================================*/

.swContentSection{

    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;


}

.swContentSection h1{
    font-size: 350%;
    text-align: center;
}

.swContentSection p{
    width: 50%;
    height: 20%;
    margin: 0 25%;
    padding-top: 2%;
    font-size: 180%;
    color: gray;
}

/*MAIN LOGO IMAGE*/
.swLogo{

    padding-top: 5%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.swLogo img{
    
    width: 50%;
    height: auto;
    border-radius: 10%;
}

.swLogo2{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.swLogo2 img{
    
    width: 50%;
    height: auto;
    border-radius: 10%;
}

/*SW LOGOS GRP*/
.swLogoGrp{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.swLogoGrp img{
    
    width: 50%;
    height: auto;
    border-radius: 10%;
}

/*SW STYLE SHEET*/
.swStyleSheet{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.swStyleSheet img{
    width: 50%;
    height: auto;
    border-radius: 10%/5%;
}

/*SW MOCKUP ONE*/
.swMockup1{
    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.swMockup1 img{
    width: 50%;
    height: auto;
    border-radius: 10%/15%;
}

/*SW MOCKUP TWO*/
.swMockup2{
    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.swMockup2 img{
    width: 50%;
    height: auto;
    border-radius: 10%/15%;
}



/*============================================================================================================================*/
/*===========================================NIMBUS CORE PROJECT - HTML PAGE CONTENT==========================================*/
/*============================================================================================================================*/


.ncContentSection{

    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;


}

.ncContentSection h1{
    font-size: 350%;
    text-align: center;
}

.ncContentSection p{
    width: 50%;
    height: 20%;
    margin: 0 25%;
    padding-top: 2%;
    font-size: 180%;
    color: gray;
}


/*MAIN LOGO IMAGE*/
.ncLogo{

    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.ncLogo img{
    
    width: 50%;
    height: auto;
    border-radius: 10%;
}

.ncLogo2{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.ncLogo2 img{
    
    width: 50%;
    height: auto;
    border-radius: 10%;
}

/*NIMBUS CORE STYLE SHEET*/
.ncStyleSheet{

    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;

}

.ncStyleSheet img{
    width: 50%;
    height: auto;
    border-radius: 10%/5%;
}

/*NIMBUS CORE MOCKUP ONE*/
.ncMockup1{
    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.ncMockup1 img{
    width: 50%;
    height: auto;
    border-radius: 10%/15%;
}

/*NIMBUS CORE MOCKUP TWO*/
.ncMockup2{
    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.ncMockup2 img{
    width: 50%;
    height: auto;
    border-radius: 10%/12%;
}

/*NIMBUS CORE MOCKUP THREE*/
.ncMockup3{
    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.ncMockup3 img{
    width: 50%;
    height: auto;
    border-radius: 10%/15%;
}

/*NIMBUS CORE MOCKUP FOUR*/
.ncMockup4{
    padding-top: 1%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.ncMockup4 img{
    width: 50%;
    height: auto;
    border-radius: 10%/12%;
}