@charset "utf-8";
/* CSS Document */

/* color groups */
/*
	off-black: #2E332E
	green: #3CE14C
	berry: #994963
	pink: #D93268
	dgreen: #4A8450
	palebrown: #594149

#08CB00
#253900
#EEEEEE
#000000
*/



body {
    background-color: #252529;
	margin: 0;
}

h1, h2, h3, h4, h5, h6{
	font-family: komet, sans-serif;
}

/* Banner Image and Heading ------------------------*/

.banner-container {
  position: relative;
  padding: 0; /* removes any unwanted spacing */
}

.banner-img {
  width: 100%;
  display: block;
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 2;
}

@media (max-width: 768px) {
  .banner-text {
    font-size: 1.5rem;
    bottom: 10px;
    left: 10px;
  }
}

/* End of Banner Image and Heading ---------------------*/

/* Hero Heading and Txt ---------------------*/

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ccc;
}

.hero-subtitle a {
  background: rgba(255,255,255,0.1);
  padding: 4px 8px;
  margin: 0 4px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.hero-subtitle a:hover {
  background: #0dcaf0;
  color: black;
}

/*  End ofHero Heading and Txt ------------*/

/*  Carousel  ------------*/
.carousel {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Keep the item block-level for Bootstrap functionality */
.carousel-item {
  height: 400px;
  background-color: #111;
  position: relative; /* for overlay */
}

/* Center images inside a wrapper */
.carousel-img-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  max-height: 80%;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Optional overlay for contrast */
.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

/* Caption positioning */
.carousel-caption {
  bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 250px;
  }

  .carousel-item img {
    max-height: 85%;
    max-width: 90%;
  }
}

/*  End Carousel  ------------*/

.img-fluid {max-width:100%;
            height: auto; 
}


/* Featurettes CSS
-------------------------------------------------------- */
.featurette {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 1rem 0; /* spacing between featurettes */
  margin-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #2E332E; /* optional alternating colors if you want */
  border-radius: 12px;
}

/* Text column */
.featurette .col-md-7, 
.featurette .col-md-6 {
  color: #FFFFFF;
  padding: 1rem;
}

/* Headings */
.featurette-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #08CB00;
  margin-bottom: 0.75rem;
}

/* Paragraphs */
.featurette .lead {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Images */
.featurette-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  margin: 1rem auto;
  display: block;
}

/* Responsive: stack text and image on small screens */
@media (max-width: 767px) {
  .featurette {
    flex-direction: column !important;
  }

  .featurette .col-md-7, .featurette .col-md-5 {
    text-align: center;
  }

  .featurette-image {
    margin-bottom: 1.5rem;
  }
}

/* End of Featurette -------------------*/

/* Cards CSS ------------------*/

#skills_cards {
  margin: 4rem 0;
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Individual cards */
#skills_cards .card {
  background-color: #2E332E;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  color: #fff;
}

/* Card hover effect */
#skills_cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

/* Card images */
#skills_cards .card-img-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Card body */
#skills_cards .card-body {
  text-align: center;
  padding: 1.5rem;
}

#skills_cards .card-title {
  color: #08CB00;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#skills_cards .card-text {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

/* Card buttons */
#skills_cards .btn-info {
  background-color: #08CB00;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  transition: 0.3s;
}

#skills_cards .btn-info:hover {
  background-color: #0dcaf0;
  color: #000;
}

/* Responsive cards: full width on small screens */
@media (max-width: 767px) {
  #skills_cards .card {
    width: 90%;
    margin-bottom: 2rem;
  }
}

/* End Cards CSS--------------*/

blockquote{
	font-weight: 300;
	margin: 0;
	border-left: 2px solid black;
	padding-left: 15px;
	font-size: 1em;
	word-spacing: 1px;
	line-height: 1;
	letter-spacing: .03em;
	
}

/* ----------Image Scroll Bar----------------*/

.image-scroll-container{
  display: flex;
  flex-direction: row;
  align-items: center; /* centers thumbnails */
  max-width: 100%; /* controls width */
  max-height: 100vh;
  gap: 10px;
  overflow-x: auto;   
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ffffff transparent;
}

@media (min-width: 768px) {
  .image-scroll-container {
    flex-direction: column;
    overflow-x: hidden;
	overflow-y: auto;
	max-height: 80vh;
	  
  }
}

.image-scroll-container img {
  flex: 0 0 auto;
  max-width: 120px; /* adjust as needed */
}

.scroll-thumb{
  width: 100%;
  max-width: 100px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform .2s;
}

@media (min-width: 768px) {
  .scroll-thumb {
    width: 100%;
  }
}

.scroll-thumb:hover{
  transform: scale(1.05);
}

.scroll-thumb[data-video]::after {
  content: "▶";
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 18px;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ---------- End Image Scroll Bar----------------*/

#mainDisplay {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

#contentTitle {
  margin-top: 1rem; /* adds space on small screens */
}

@media (max-width: 767px) {
  #contentTitle {
    font-size: 1.5rem;
  }

@media (min-width: 768px) {
  #contentTitle {
    margin-top: 0; /* remove spacing on larger screens */
  }
}


  #contentDesc {
    font-size: 1rem;
  }

  .border-end {
    border: none !important;
  }
}

.gallery-controls{
  display:flex;
  gap:20px;
  justify-content:center;
}

@media (max-width: 767px) {
  .text-start {
    text-align: center !important;
  }
}

.small-text {
  font-size: 14px;
}

@media (min-width: 768px) {
  .small-text {
    font-size: 20px;
  }
}

h2{
	padding-bottom: 0.3em
}

h2, h3{
	color: whitesmoke;
}

p{
	color: whitesmoke;
}

footer{
	background-color: #2E332E;
	text-align: center;
    line-height: 60px;
}

.image-scroll-container::-webkit-scrollbar {
  width: 6px; /* thickness */
}

.image-scroll-container::-webkit-scrollbar-track {
  background: transparent; /* background behind the bar */
}

.image-scroll-container::-webkit-scrollbar-thumb {
  background: #ffffff; /* CHANGE THIS to your color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.5);
}

.marquee-container {
  width: 100%;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text {
  font-family: unibody-8-new, sans-serif;
  color: #08CB00;
  font-size: 1.5rem;
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.navbar-nav li {
  border-right: 1px solid #ccc; /* Adds line to the right of each item */
  padding-right: 15px; /* Adds space between text and line */
  padding-left: 15px;  /* Optional: balances spacing */
}

.navbar-nav li:last-child {
  border-right: none; /* Removes line from the last item */
}

.navbar{
	flex-direction: column;
	align-items: center;
}

.navbar-nav{
	text-align: center;
	margin: 0 auto;
    align-items: center;
}


.navbar-brand{
	font-family: unibody-8-new, sans-serif;
	font-weight: 400;
	font-size: 2em;
}

/* Background color for navbar and dropdown menus */
.navbar-custom, .navbar-custom .dropdown-menu {
background-color: #2E332E;
}
/* Text color for navbar and dropdown menus */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link,
.navbar-custom .dropdown-item {
color: #08CB00;
}
/* Background and text colors for current page link and links on hover and
focus */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
background-color: #08CB00;
color: #fff;
}
/* Border and text colors for menu icon on small screens */
.custom-toggler.navbar-toggler {
	border-color: #ecf0f1;
	color: #fff;	
}

  .navbar-toggler {
    margin: 0 auto;
  }

@media (max-width: 991.98px) {
  .navbar-toggler {
    margin: 0 auto;
    display: block;
  }
}

/* Hamburger icon - use same rgb values as previous rule for stroke */
.custom-toggler .navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg-viewBox='0
0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath
stroke='rgba(236,240,241, 0.7)' stroke-width='2' stroke-linecap='round'
stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E";
}















