/* Global Styles */
body {
  margin: 0;
  overflow: hidden;
  background: #111;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  height: 100%;
  overflow-y: auto;
}

/* Header Styles */
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px;
  z-index: 10;
  background-color: black;
}

.header-logo {
  font-size: 4rem;
  color: whitesmoke;
  padding-left: 10px;
}

.header-small-text {
  font-size: 1rem;
  vertical-align: middle;
}

.menu-icon {
  font-size: 30px;
  color: whitesmoke;
  cursor: pointer;
  margin-right: 20px;
}

/* Centered Text Styles */
.centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: bold;
  color: white;
  z-index: 4;
}

  ul {
    text-align: left;
  }

/* Hidden Class */
.hidden {
  opacity: 0;
}

/* Console Text Styles */
.console-underscore {
  display: inline-block;
  position: relative;
  top: -0.14em;
  left: 10px;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 13;
  top: 50;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
	
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

/* About and Certifications Section Styles */
.about-cert-section {
  background: transparent;
  color: white;
  position: relative;
  z-index: 3;
  opacity: 60;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.about-me-section,
.certifications-content {
  margin-bottom: 40px;
}

.about-me-content h2,
.certifications-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-me-text,
.certifications-content ul {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  list-style: none;
  padding: 0;
text-align: left;
}

.about-me-text {
  margin-bottom: 20px;
}

/* Adjust canvas to cover the entire viewport height */
#c {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Blinking cursor */
.box h2 {
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 11;
}

@keyframes cursor-blink {
  0% {
    opacity: 0;
  }
}

.box h2::after {
  content: "";
  width: 5px;
  height: 20px;
  background: #33FF00;
  display: inline-block;
  animation: cursor-blink 1.5s steps(2) infinite;
}


/* Additional Styles for Table Layout */
.certifications-table {
  border-collapse: collapse;
  width: 100%;
}

.certifications-table td {
  padding: 10px;
  vertical-align: top;
  border: none;
}

.salesforce-items, .other-items {
  font-size: 1rem;
  line-height: 1.6;
}

.salesforce-items strong, .other-items strong {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.salesforce-items p, .other-items p {
  margin: 0;
  margin-bottom: 10px;
}

.salesforce-items {
  padding-right: 20px;
}


/* Integration Card Styles */
.integration-card {
  width: 125px;
  height: 100px;
  perspective: 800px;
  display: inline-block;
  margin: 10px;
  margin-bottom: 100px;
  cursor: pointer;
  position: relative;
}

/* Container for integration cards */
.integration-container {
  display: flex;
  flex-wrap: wrap; /* Allow cards to wrap to the next line */
  justify-content: flex-start; /* Distribute space evenly between cards */
  gap: 10px;
}



/* Adjust card width for mobile screens */

/* Stack cards into a single column when they can't be in a row of 5 */
@media screen and (max-width: 700px) {
  .integration-container {
    flex-direction: column;
    align-items: center; /* Center cards in the column */
	  width: 80%;
	  margin-bottom: 15px;
  }
}






.integration-card-inner {
  width: 125px;
  height: 200px;
  transition: transform 0.5s;
  transform-style: preserve-3d;
	
}

.integration-card:hover .integration-card-inner,
.integration-card.active .integration-card-inner {
  transform: rotateY(180deg);
}

.integration-card-front
 {
  width: 125px;
  height: 200px;
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: white;
  color: black;
  border-radius: 10px;
  -webkit-box-shadow: 14px -8px 16px -4px rgba(181,69,181,0.48);
-moz-box-shadow: 14px -8px 16px -4px rgba(181,69,181,0.48);
box-shadow: 14px -8px 16px -4px rgba(181,69,181,0.48);
}

.integration-card-back {
  transform: rotateY(180deg);
  width: 125px;
  height: 175px;
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
	padding:10px;
	
	
  color: white;
  text-align:center;
  border-radius: 10px;
  -webkit-box-shadow: 14px -8px 16px -4px rgba(181,69,181,0.48);
-moz-box-shadow: 14px -8px 16px -4px rgba(181,69,181,0.48);
box-shadow: 14px -8px 16px -4px rgba(181,69,181,0.48);
	overflow-y: scroll;
	
}

.backText {
	padding: 1em;
	text-align: left;
	
	
		
}

.backTitle{
	padding-top: 10px;
	font-size: 0.8rem;
  padding:1em;
	text-align: center;
}

/* Integration Row Styles */
.integration-row {
  margin-bottom: 10px; /* Adjust the margin as needed */

}


.integration-card h3 {
  font-size: 0.8rem;
  margin: 0;
}

.integration-card p {
  font-size: 0.7rem;
  margin: 0;
}

/* Navigation Dots Styles */

.dot-navigation {
  position: fixed;
  top: 50%;
  left: 20px; /* Adjust the left distance as needed */
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  margin-bottom: 10px;
  cursor: pointer;
	z-index:9;
}

.dot.active {
  background-color: black;
  border: 2px solid white;
}


/* Adjust dot navigation for smaller screens */
@media screen and (max-width: 768px) {
  .dot-navigation {
    left: 10px; /* Adjust the left distance for smaller screens */
  }
}

/* Adjust dot navigation for very small screens */
@media screen and (max-width: 480px) {
  .dot-navigation {
    left: 5px; /* Adjust the left distance for very small screens */
  }
}

/* Further adjustments for even smaller screens */
@media screen and (max-width: 360px) {
  .dot-navigation {
    left: 3px; /* Adjust the left distance for even smaller screens */
  }
}


/*created new div for center alignment*/
.center {  margin: auto;
  width: 100%;
  padding: 10px;
}


/* CSS for the buttons */
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
	z-index: 2;
}

.button {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


/* Hover effect */
.button:hover {
  transform: scale(1.1);
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, font-weight 0.3s, box-shadow 0.3s;
}

/* Click effect */
.button:active {
  transform: translateY(2px); /* Move the button down slightly on click */
  box-shadow: none; /* Remove the shadow on click */
}





/* Add media query to hide buttons on screens below iPad size */
@media screen and (max-width: 768px) {
  .buttons {
    display: none;
  }
}

/* CSS for the toggle switch */
.toggle-container {
  display: flex;
  align-items: center;
	margin-bottom: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 10px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #33FF00; /* Default color when off */
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: red; /* Green color when on */
}

input:focus + .slider {
  box-shadow: 0 0 1px #33FF00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* CSS for centering the toggle switch and text */
.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 
}


/* Portfolio Styling */
.portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-item {
    display: flex;
    flex-direction: column; /* Change to column to align content at the top */
    align-items: center;
    
	padding-top: 5px;
}


.portfolio-image {
    flex: 1;
    max-width: 70%;
	background-color: black;
	
}

.portfolio-image img {
    max-width: 100%;
    height: auto;
	display: block;
	margin-top: inherit;
	
	
	
	
}

.portfolio-content {
    flex: 1;
    padding: 0 20px;
	 margin-top: 0px;
	background-color: black;
	opacity: 0.6;
	
}

/* Video styling within the portfolio item */
.portfolio-image video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin: 0 auto; /* Center the video horizontally */
}

.portfolio-image video:hover {
    opacity: 0.7;
	
}

.portfolio-title {
  text-align: center;
  text-transform: uppercase;
  color: #4CAF50;
	margin-bottom: 10px;
}



hr{
	 width: 100%;
    margin: 20px 0;
	color:white;
}


/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .portfolio-item {
        flex-direction: column; /* Stack items vertically */
        text-align: center;
    }

    .portfolio-image {
        max-width: 100%;
    }

    .portfolio-content {
        padding: 20px 0;
    }
}



/* Style for the back-to-top button */
#myBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 13;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.75);
  box-shadow-webkit: 10px 10px 14px 0px rgba(0,0,0,0.75);
  box-shadow-moz: 10px 10px 14px 0px rgba(0,0,0,0.75);
}

#myBtn:hover {
  background-color: #555;
}


/*remove hyperlink on buttons*/
a {
    text-decoration: none; /* Remove underlines */
    color: inherit; /* Inherit the text color from the parent element */
}


/* Footer Styles */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f5f5f5;
  color: black;
  text-align: center;
	padding-top: 10px;
}

/*footer media query to hide footer automatically in landscape on mobile */
@media only screen and (max-width: 1000px) and (orientation: landscape) {
  .footer {
    display: none;
  }


/* Style for the button to show the footer */
  .show-footer-button {
    display: block;
    position: fixed;
    bottom: 10px; /* Adjust positioning as needed */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #f5f5f5;
    color: black;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
  }
}


.resume-button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.resume-button:hover {
  background-color: #333; /* Change to your preferred button color on hover */
}

.resume-button:active {
  background-color: #222; /* Change to your preferred button color when pressed */
  box-shadow: none; /* Remove box-shadow when pressed, if present */
}

.resume-button.clicked {
  animation: buttonClick 0.3s;
}

@keyframes buttonClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.social-icons {
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons-hover:hover {
  color: #333; /* Change to your preferred hover color */
	font-size: 32px;
}

.left{
    text-align:center;
    float:left;
	padding-left: 15px;
	width:40%;
}

.centered{
text-align:center;
float:center;
width:100%;
align-content: center;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }

    .left {
        width: 100%;
		align-content: center;
		float:center;
    }
	
	.toggle-container {
        width: 100%;
		align-content: center;
		float:center;
		flex-direction: column;
        align-items: center;
    }
	
	.toggle-text{
		text-align: center;
		padding-left: 15%;
		padding-right:20%;
	}
	
	.centered {
        width: 100%;
    }
	
	.social-icons{
		padding-bottom: 3px;
	}
	
	.resume-button{
		padding-left: 20%;
		padding-right:20%;
	}
	
	
}


/*Center console animated SF dork text be it no look good on giant screen*/
.centered-console {
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
 
  font-weight: bold;
  color: white;
	padding-bottom: 10px;
}

.container {
	top: 60%;
	position: relative;
  display: flex;
  flex-direction: column;
	align-content: center;
	width:100%;
	 z-index: 12;

}


/*Made to hold the animated text as a blank div to not show in landscape */
.consoleTextContainer{

}

/* Hide .consoleTextContainer in landscape mode on mobile phones */
@media only screen and (max-width: 1000px) and (orientation: landscape) {
  .consoleTextContainer {
    display: none;
  }
}






/* Media query to adjust the layout when the buttons should go away */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column-reverse; /* Reverse the order for mobile screens */
  }
}



/* Image stuff */
/* Add a common class for images that should trigger the modal */
.modal-image {
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 150px auto auto; /* Center the image horizontally */
}

.modal-image:hover {
  opacity: 0.7;
}

/* Add this CSS to remove hover transparency when the modal is active */
.modal-opened .modal-content img:hover {
  opacity: 1;
}


/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
 
  padding-top: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center; /* Center the content vertically */
	z-index:25;
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
	
}

/* Caption of Modal Image */
#caption {
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 145px;
  right: 5px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

.modal-opened #myBtn,
.modal-opened .dot-navigation {
  display: none;
}


/* Skills pillz */
.skills-table {
  display: flex;
  flex-direction:row;
  max-width: 100%;
  margin: 0 auto;
}

.skill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
	width:100%;
	flex:1;
}

.skill-pill {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: auto;
  margin: 10px;
 
}

/* Hover effect */
.skill-pill:hover {
  transform: scale(1.1);
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, font-weight 0.3s, box-shadow 0.3s;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .skill-pill {
    width: 70%;
	  display:inline-grid;
  }
	.skill-row{
		width:100%;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		padding:1em;
	}
	
	.skills-table{
		 flex-direction: column-reverse;
    align-items: center; /* Center cards in the column */
	  width: 80%;
	  margin-bottom: 15px;
	}
}

