/* Global Styles for Bells and Whistles */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
}
/* Global Main */ 
main {
	padding: 2rem;
	width: min(1200px, 92vw);
  	margin: 0 auto;
}
/* Look for other h2*/
h2 {
	color: #181752;
	font-size: 1.75rem;
}
/* Global about section */ 
.about {
	position: relative;
	max-width: 1200px;
	margin: 3rem auto;
	background: #fff;
	text-align: center;	padding: 1rem;
	border: 4px solid #807ef0;
	border-radius: 12px;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
	z-index: 0;
	
}
.about h2 {
	font-size: 2rem;
  	margin-bottom: 1.25rem;
  	color: #181752;
  	position: relative;
	text-shadow: 0 2px 6px rgba(128,203,196,0.35);
}
.about p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #333;
}




/* Glint layer */
.about::after {
  content: "";
  position: absolute;
  inset: -4px; /* match border thickness */
  border-radius: inherit;
  pointer-events: none;
  animation-play-state: running;

  /* This gradient IS the glint */
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(19, 184, 87, 0.9) 50%,
    transparent 100%
  );

  background-size: 200% 100%;
  animation: glint-move 10s linear infinite;
}

/* Clip gradient so only border shows */
.about::after {
  padding: 3px;
  box-sizing: border-box;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}
@keyframes glint-move {
  from {
    background-position: -10% 0;
  }
  to {
    background-position: 350% 0;
  }
}


/* Quote of the Day */
.quote-card {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem 2.5rem;
  background: rgba(0, 0, 0, 0.65); /* dark transparent background */
  border: 2px solid rgba(255, 255, 100, 0.7); /* yellowish glow border */
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 100, 0.4); /* glow effect */
  text-align: center;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

.quote-card:hover {
  box-shadow: 0 0 30px rgba(255, 255, 150, 0.7); /* brighter glow on hover */
}

/* Heading */
.quote-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d3cd1f; 

}

/* Quote Text */
#quoteOfDay {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

/* Quote Button */
.quote-btn {
  margin-top: 1.5rem;
  padding: 0.65rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  background: #fff700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(255, 255, 100, 0.6);
}

.quote-btn:hover {
  background: #fff933;
  box-shadow: 0 0 20px rgba(255, 255, 150, 0.8);
  transform: translateY(-1px);
}

.quote-btn:active {
  transform: translateY(0);
}

/* Rotation Note */
.quote-rotation-note {
  font-size: 0.85rem;
  color: #ffff99; /* soft yellow */
  margin-bottom: 1rem;
}

/* Appdev page */
.verified {
	display: flex;
	align-items: center;
	justify-content: center;
  	gap: 10px;
  	margin-top: 20px;
}
.verified p {
	color: #333;
}
.verified-badge {
  	height: 40px;
  	border-radius: 6px;
  	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Coming soon: Belongs in, reactdemo, crud, and serverlessdemo */
.coming-soon {
	background: linear-gradient(270deg, #e3f2fd 0%, #bbdefb 100%);
	text-align: center;
	padding: 3rem 1rem;
	
	border-bottom: 4px solid #2e3f3e;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 2s ease-out forwards;
}
.coming-soon2 {
	background: linear-gradient(90deg, #e3f2fd 0%, #bbdefb 100%);
	text-align: center;
	padding: 3rem 1rem;
	
	border-bottom: 4px solid #2e3f3e;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 2s ease-out forwards;
}
@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.coming-soon h2 {
	font-size: 1.8rem;	
	color: #676b72;
	margin-bottom: 1rem;
}

.coming-soon p {
	font-size: 1.1rem;
	color: #444;
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto 1.5rem;
}
.coming-soon2 p {
  	font-size: 1.1rem;
	color: #444;
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto 1.5rem;
}
.coming-soon pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 0.95rem;
  	line-height: 1.6;

  	color: #161616; /* darker, muted slate */
  	background: transparent;

  	margin: 0;
  	white-space: pre-wrap;
}
/*this is a component */
.section-divider {
  border: none;
  height: 3px;
  width: 400px;
  margin: 2rem auto;
  border-radius: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #181752,
    transparent
  );

  animation: breathe-line 4s ease-in-out infinite;
}

@keyframes breathe-line {
  0% {
    transform: scaleX(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scaleX(1.1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.9);
    opacity: 0.6;
  }
}
.section-divertwo {
	border: none;
  	height: 3px;
  	background-color: #181752;
  	margin: 2.5rem auto;
  	width: 60%;
  	opacity: 0.7;

}
/*This is for Appdev Page */
.app-preview {
	margin-top: 2rem;
}

.app-image {
	width: 200px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.status {
	font-weight: bold;
	color: #00796b;
	margin-top: 0.5rem;
}

/* Case Study */

.case-study {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(180deg, #020617, #020617);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: #e5e7eb;
}

/* Title */
.case-study h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: #f8fafc;
  letter-spacing: -0.015em;
}

/* Paragraph blocks */
.case-study p {
  margin: 0 0 1.25rem;
  line-height: 1.65;
  font-size: 1rem;
  color: #cbd5f5;
}

/* Section labels (Problem / Approach / Outcome) */
.case-study p strong {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: #38bdf8;
  font-weight: 600;
}

/* Subtle divider between sections */
.case-study p + p {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.case-studytwo {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(270deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 24px rgba(18, 18, 19, 0.35),
    inset 0 1px 0 rgba(8, 8, 8, 0.03);
  color: #e5e7eb;
}

/* Title */
.case-studytwo h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: #f8fafc;
  letter-spacing: -0.015em;
}

/* Paragraph blocks */
.case-studytwo p {
  margin: 0 0 1.25rem;
  line-height: 1.65;
  font-size: 1rem;
  color: #0d0d0e;
}

/* Section labels (Problem / Approach / Outcome) */
.case-studytwo p strong {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: #181752;
  font-weight: 600;
}

/* Subtle divider between sections */
.case-studytwo p + p {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* Global Inline Link*/
.inline-link {
	color: #4f46e5;
	font-weight: 600;
	text-decoration: none;
}

.inline-link:hover {
	text-decoration: underline;
	color: #004d40;
}

.inline-linktwo {
	color: #676b72;
	font-weight: 600;
	text-decoration: underline;
}
.inline-linktwo:hover {
	text-decoration: none;
	color: #4f46e5;
}
/* Global Site Footer */ 
.site-footer {
	background: linear-gradient(180deg, #0f172a, #020617);
	color: #cfd8dc;
	padding: 1.5rem 1rem;
	margin-top: 4rem;
}

.footer-content {
	max-width: 1100px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
}

.footer-links {
	list-style: none;
	display: flex;
	gap: 1rem;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-links a {
	color: #80cbc4;
	text-decoration: none;
	font-size: 0.9rem;
}

.footer-links a:hover {
	text-decoration: underline;
}

/*Global UL List */
ul {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}
/*=====================
Panel is used in React demo **need to create new react.css**
=======================*/
.dark-panel {
  	background: #121212;
 	 color: #e0e0e0;
  	padding: 1rem;
  	border-radius: 12px;
}
.updates-panel {
  	background: rgba(105, 91, 91, 0.75);
  	border-radius: 12px;
  	padding: 1rem;
  	max-width: 280px;
}

.updates-panel h3 {
  	margin-top: 0;
  	color: #80cbc4;
}

.updates-panel ul {
  	list-style: none;
  	padding: 0;
}

.updates-panel li {
  	margin-bottom: 0.75rem;
  	font-size: 0.9rem;
}

/* Product- Grid for SQL demo */

.product-grid {
  	max-width: 900px;
  	margin: 3rem auto;
  	padding: 2rem 2.5rem;
  	background: linear-gradient(180deg, #5167a0, #0e1d5f);
  	border-radius: 16px;
  	box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  	color: #e5e7eb;
}

/* Title */
.product-grid h2 {
  	margin: 0 0 0.75rem;
  	font-size: clamp(1.5rem, 2.5vw, 2rem);
  	font-weight: 600;
  	letter-spacing: -0.02em;
  	color: #f8fafc;
}

/* Description text */
.product-grid p {
  	margin: 0 0 1.75rem;
  	max-width: 700px;
  	line-height: 1.6;
  	font-size: 1rem;
  	color: #cbd5f5;
}

/* Code / schema block */
.product-grid pre {
  	background: #0a0d1b;
  	border-radius: 12px;
 	padding: 1.5rem;
  	overflow-x: auto;

  	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  	font-size: 0.95rem;
  	line-height: 1.6;

  	color: #e5e7eb;
  	border: 1px solid rgba(255, 255, 255, 0.06);
  	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* Subtle accent line */
.product-grid pre::before {
  	content: "";
  	display: block;
  	height: 2px;
  	width: 48px;
  	margin-bottom: 1rem;
  	background: linear-gradient(90deg, #38bdf8, #6366f1);
  	border-radius: 999px;
}

/* index.html grid layout */
.grid-index-wrapper {
  max-width: 1200px;
  margin: 1rem auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.grid-index {
  	max-width: 1200px;
  	margin: 4rem auto;
  	padding: 1.0rem;

   	display: flex;
  	flex-direction: column;
  	gap: 3rem;  /* spacing between stacked sections */

  	background: rgba(255, 255, 255, 0.09); /* subtle light lift */
  	backdrop-filter: blur(4px);
  	border-radius: 16px;

  	border: 1px solid rgba(255, 255, 255, 0.08);

  	box-shadow:	
    0 10px 30px rgba(0, 0, 0, 0.25);

  	color: #6980ac;
}
.grid-index h2 {
	color: #0e1d5f;
	margin-bottom: 0.25rem; /* adjust to taste */
}

.grid-index ul li {
	background: #0f172a;
	color: white;
	padding: 0.3rem 0.7rem;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 600;
}
.grid-index li:hover {
  	transform: translateY(-2px);
  	transition: transform 0.2s ease;
}

.tech-list-index {
  list-style: disc;
  list-style-position: inside;

  margin: 1.5rem 0 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tech-list-index li {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5f5; /* adjust to match your text tone */

  background: none;
  padding: 0;
  border-radius: 0;
}


/* =========== Pre is used in SQL DEMO and Serverless*/
.pre {
  	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  	font-size: 0.95rem;
  	line-height: 1.6;

  	color: #19191a; 
  	background: transparent;

  	margin: 0;
  	white-space: pre-wrap;
}
.resume {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
}

.resume-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.resume-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
  color: black;
}
.resume-hero p {
	color: black;
	font-size: 1.5rem;
}

.resume-download {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #5167a0, #0e1d5f);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.resume-download:hover {
  opacity: 0.85;
}

.resume-tagline {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.resume-highlights {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
.resume-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.resume-section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #4f46e5, transparent);
  margin-top: 0.5rem;
  border-radius: 2px;
}
.highlight-card h3 {
	color: #181752;
}
.highlight-card {
  padding: 1.5rem;
  font-size: 1.25rem;
  color: black;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.resume-stack p {
	color: black;
  line-height: 1.6;
  font-size: 1.25rem;
}
.post-nav {
  margin-top: 3rem;
  text-align: left;
}

.back-link {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: #000000;
}

.back-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .quote-card {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  #quoteOfDay {
    font-size: 1.05rem;
  }
}

