:root{
	--background-color: #FAFAFA;/*#F5F5F5;/*#F0F0F0 ;/* #E5E5E5;*/
	--font-color: #222222;/*#333333 ;/*or #444444 ;*/
	--font-hover-color:#AAAAAa;/*#666666;/* #666666 ; /*or #AAAAAA;*/
	--sub-font-color: #333333;
}
@font-face {
  font-family: 'Inclusive Sans';
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome';
  src: url('webfonts/fa-brands-400.woff2') format('woff2');
  font-display: swap;
}
*,
*::before,
*::after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	font-size: 18px;
}
body{
	background-color: var(--background-color);
	font-family: "Inclusive Sans", sans-serif;
	color:var(--font-color);
	padding: 0 25px;
}

/********** BRAND *************/
.header{
	position: sticky;
	top: 0;
	padding: 15px 0;
	background-color: var(--background-color);
	z-index: 100;
}
.brand {
    display: flex;
    flex-direction: column-reverse; /* This swaps the order visually */
    text-align: center; /* Centers both elements */
}
.header .brand .brand-type{ /*data analyst*/
	display: inline;
	margin-top: 2px;
	font-size: .8rem;
	color: var(--background-color);
	background-color: var(--font-color);
	font-weight: 500;
	padding: 3px;
}
/*.brand-name{ 
	display: inline-block;
font-size: 1.8rem;
font-weight: bold;
}*/
/********** END BRAND *************/

/********** NAVIGAGTION *************/
.nav-bar{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-bar ul{
	list-style-type: none;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 20px;
	column-gap: 10px;
	margin: 10px 0;
}

.nav-link{
	display: inline-block;
	padding: 10px;
	font-weight: 500;
/*	border: 1px solid red;*/
}
.brand a,
.nav-link,
.social-link{
	text-decoration: none;
	color: var(--font-color);
/*	border: 1px solid red;*/
}
.nav-link:active{
	color: #000000;	
	font-weight: 	bold;
}
#separator{
	position: fixed;
	top: 100px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ccc;
	margin: 0;
	z-index: 99;
	display: block;
}

.menu-toggle {
    display: none;
}

/* Hamburger menu (hidden by default on desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--font-color);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
/********** END NAVIGAGTION *************/

main{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  	column-gap: 1rem;
}

/******** Contact ********/
#photo {
  display: block;
  width: 150px;          /* Explicit width for LCP stability */
  height: 150px;         /* Explicit height for CLS prevention */
  max-width: 100%;       /* Responsive safeguard */
  border-radius: 50%;
  filter: grayscale(100%);
  margin: 0 auto 15px;
  object-fit: cover;     /* Ensures proper cropping */
  aspect-ratio: 1/1;     /* Modern way to maintain proportions */
}
#contact h3{
	margin: 10px auto -10px;
	text-align: 	center	;
/*	border: 1px solid	red;*/
}
#contact{
	grid-column: 1/2;
/*	border: 1px solid red;*/
}
#sections{
	grid-column: 2/6;
/*	border: 1px solid red;*/
}
.social-icons{
	display: flex;
	flex-direction: column;
}
.social-link{
	padding: 10px;
	font-weight: 500;
}
.nav-link:hover,
.social-link:hover{
	transform: scale(1.15) ;
	color: #000000;
	transition: transform 0.3s ease-in-out, color 0.3s ease-in-out; /* Adds smooth effect */
}
.nav-link:hover{
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
/******** END Contact ********/

/******** Sections ***********/
#contact,
#sections{
	padding: 30px 0;
/*	border: 1px solid	 green;*/
}
.section-title{
	font-size: 1.5rem;
  /*font-weight: 500;*/
  /*color: #333;*/
  /*margin-bottom: 1rem;*/

}
#contact section,
#sections section{
	margin: 	10px 0 20px;
	scroll-margin-top: 100px;
/*	border: 1px solid	 violet;*/
}
.sub-section{
	margin: 15px 10px;
/*	border: 1px solid	blue;*/
}
.lead-para {
  font-size: 1.1rem;
  font-weight: 500;
  /*color: #333;*/
  margin-bottom: 1rem;
}
.trail-para {
  margin-bottom: 1rem;
}

/***** Edu Experience *******/
.section-details{
	display: 	flex;
	justify-content: 	space-between;
	column-gap: 1rem;
	margin-top: 5px;
	margin-left: 	10px;
}
.section-details span{
	color: var(--sub-font-color);
	font-weight: 	500;
	font-style: 	italic	;
}
.section-details span a{
	color: var(--font-color);
}
.section-details span a:hover{
	color: var(--font-hover-color);
}

.exp-details{
	margin: 	10px 0 0 10px;
}
/***** End Edu Experience *******/

/***** Projects **********/
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem 10px;
}

.project-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  display: flex;
  flex-direction: column;
  height: 100%; /* or set a fixed height */

}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.project-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--sub-font-color);/*#333;*/
}

.project-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--font-color);/*#555;*/

}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  /*flex-grow: 1; /* fills available vertical space */*/

}

.tech-list li {
  background-color: #e5e5e5;
  color: #222;
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
}

.tech-list li:hover {
  background-color: #cfcfcf;

}

/* Project Links Container */
.project-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  
  margin-top: auto; /* pushes to bottom */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

/* Link Styles */
#projects a,
.project-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--font-color);
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Hover Effects */
#projects a:hover,
.project-links a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Binder Badge Image */
.project-links a img {
  /*height: 28px;*/
  width: auto;
  transition: transform 0.3s ease;
}

.project-links a:hover img {
  transform: scale(1.05);
}

/* GitHub Link Specific Style */
.project-links a:first-child {
  margin-right: 1rem;
}

/* Binder Link Specific Style */
.project-links a:last-child {
  padding: 0.25rem 0.75rem;
}

/******* End Projects *******/

/******* Cert Tech *********/
.tech-cert-list{
  margin-left:  10px;

}
.tech-cert-list li{
  padding: 0 0 10px;
}
/******* End Cert Tech *********/

footer{
	height: 100px;
	padding-top: 	30px;
/*	border: 1px	 solid	 red;*/
}

/*------------Media Queires-----------*/
@media (max-width: 991px) {
    /* Show hamburger */
    .hamburger {
        display: block;
        z-index: 101;
    }
    
    /* Hide nav links by default */
    .nav-links-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        min-width: 150px;
        height: 100vh;
        background: var(--background-color);
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .nav-links {
        flex-direction: column;
        padding-top: 80px; /* Space for hamburger */
    }
    
    /* When checkbox is checked (menu open) */
    .menu-toggle:checked ~ .nav-links-container {
        right: 0;
    }
    
    /* Hamburger animation */
    .menu-toggle:checked + .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked + .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    main{
		display: flex;
		flex-direction: column;
	}
	#contact{
		padding-bottom: 0;
	}
	.social-icons{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
	#sections{
		padding-top: 0;
}
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .project-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .project-links a:first-child {
    margin-right: 0;
  }
}
/*------------END Media Queires-----------*/



