/*standard styling across pages*/
@font-face { /*font for header and nav bar*/
    font-family: JetBrainsMono;
    src: url(JetBrainsMono-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}
* {
    background-color: rgb(48,48,48);
    font-family: Arial, Helvetica, sans-serif;
    
    color:white;
    
}
h1 {
    color: rgb(48,215,176);
    font-size: 1.7vw;
    
}
a {
    background-color: transparent;
}
p {
    font-size: 1vw;
}
.header h1{
    display: inline;
    
    font-family: JetBrainsMono;
    
}

.white {
    color: white;
}
.pink {
    color: rgb(216,42,119);
    text-align: center;
    margin-bottom: 0%;
}
.blue {
    color: rgb(48,215,176);
    font-size: 1vw;
    transition: opacity 0.3s;
}
.blue:hover {
    opacity: 0.5;
}

/*homepage content styling*/
h3 {
    color: white;
    font-size: 9vw;
    margin-top: 10%;
    margin-bottom: 0;
}
.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    font-size: 1.25vw;
    margin: auto;
    position: relative;
    
}
.headshot {
    display: none;
}

/*nav bar styling*/
.nav {
    font-size: 1.25vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    right: 1%;
    top: 2%;
}
.nav a {
    display: inline-block;  /* Enables transform */
    transition: transform 0.3s ease-in-out;
    transform-origin: right;
    font-family: JetBrainsMono;
    text-decoration: none;
    line-height: 3.5vw;
}
.nav a::before {
    content: "//";
    margin-right: 5px;  /* adjust as needed for spacing */
}

.nav a:hover {
    transform: scale(1.2);  /* You can adjust the scale factor as needed */
}
button {
    display: inline-block;  /* Enables transform */
    transition: transform 0.3s ease-in-out;
    transform-origin: right;
    font-family: JetBrainsMono;
    text-decoration: none;
    border: none;
    font-size: 1.25vw;
    margin-left: -2.1%;
    line-height: 3.5vw;
}
button::before {
    content: "//";
    margin-right: 5px;  /* adjust as needed for spacing */
}

button:hover {
    transform: scale(1.2);
}

/*footer styling*/
.footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-left: 2%;
    margin-bottom: 2%;
    margin-right: 2%;
    width: 10%;
    position: fixed;  /* Position it at the bottom right */
    bottom: 0;
    right: 0;

}
.footer a {
    display: inline-block;  /* Enables transform */
    transition: transform 0.3s ease-in-out;
    transform-origin: right;
}
.footer img {
    width: 100%;  
}

.footer a:hover {
    transform: scale(1.2);  /* You can adjust the scale factor as needed */
}

/*resume page styling*/
.resume {
    position: absolute;
    width: 33%;   /* Ensures that the image is not wider than its container */
    height: auto;      /* Maintains aspect ratio */
    display: block;    /* Centers the image */
    left: 2.5%;
    top: 9%;
    border: 10px solid black;
}
.resume-title {
    font-size: 5vw;
    margin-bottom: 0%;
    margin-top: 2%;
    color: white;
    text-align: center;
    margin-right: 0%;
}
.container, .container1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.leftMargin {
    margin-left: 2%;
}
.textbox {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 45%;
    top: 6%;
    width: 30%;
    flex-wrap: wrap;
    
}
.textbox p {
    border-top: 2px solid white;
    margin-top: 0.5%;
    padding-top: 2%;
}

/*service page styling*/
.service-textbox {
    left:auto;
    top:auto;
    width:80%;
    display: flex;
    flex-wrap: wrap;
    
}
.service-title {
    font-size: 5vw;
    margin-bottom: 0%;
    margin-top: 0%;
    color: white;
    text-align: center;
    margin-right: 20%;
}
.service-paragraph {
    border: 2px solid rgb(216,42,119);
    padding: 10px;
    margin: 10px 0;
}

/*projects page styling*/
.projects-title {
    font-size: 5vw;
    margin-bottom: 0%;
    margin-top: 0%;
    margin-right: 19%;
    color: white;
    text-align: center;
    
}
.center {
    justify-content: center;
}

.main-content {
    margin-top: 2%;
    margin-left: 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Evenly spaces the project blocks */
    align-content: center;
    margin-right: 20%; /* Ensures there is room for the navigation bar */
}

.project {
    width: 46.5%;  /* You can adjust this */
    background-color: #657382;
    text-align: center;  /* Center the text */
    margin-bottom: 4%;
    border: 10px solid black;
}

.project img {
    width: 100%;  /* Makes the image take up the full width */
    height: auto;  /* Keeps the image aspect ratio */
}

.project-interior h2 {
    margin: 10px 0;  /* Adds a little space above and below */
    background-color: #657382;
}

.project-interior p {
    margin-top: -1.5%;  /* Adds a little space above and below */
    padding-top: 1.5%;
    background-color: #657382;
}
.project-link {
    color: rgb(216,42,119);
    text-decoration: none;
    transition: opacity 0.3s;
}
.project-link:hover {
    opacity: 0.7;
}

