/* hero-image css styles */
/* ========== FAB MENU ========== */
.fab-menu {
  position: fixed;
  top: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 1500;
}

.fab-menu .fab-toggle {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  padding: 0 !important;
  border-radius: 50%;
  background: #050505;
  border: 2px solid #8EC07C;
  color: #8EC07C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.fab-menu .fab-toggle i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-menu .fab-toggle.active {
  background: #8EC07C;
  color: #050505;
  transform: rotate(90deg);
}

.fab-menu .fab-toggle:hover:not(.active) {
  background: #0d0d0d;
  transform: translateY(-1px);
}

.fab-menu .fab-toggle:active {
  transform: scale(0.95);
}

.fab-drawer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: rgba(5, 5, 5, 0.95);
  border: 1px solid #8EC07C;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
  visibility: visible;
}

.fab-drawer[hidden] {
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.25s;
}

.fab-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #8EC07C;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.fab-link i {
  font-size: 18px;
}

.fab-link:hover {
  background: rgba(142, 192, 124, 0.12);
  border-color: rgba(142, 192, 124, 0.3);
  transform: translateY(-1px);
}

.fab-link:active {
  transform: scale(0.98);
}

button {
  padding: 10px 0; /* Adjust padding as needed */
  font-size: 16px;
  text-align: center;
  font-family: 'Courier New', Courier, monospace; /* Monospaced font for console look */
  background-color: #050505; /* Dark background similar to a console */
  color: white; /* Light green text, common in console displays */
  border: 1px solid #333; /* Slight border to mimic console appearance */
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  width: 10%; /* Set the width to 10% of the screen width */
  min-width: 100px; /* Specify a minimum width if needed */
}

button:hover {
  background-color: #333; /* Slightly darker background on hover */
  color: #fff; /* White text on hover */
}

.hero-image {
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  opacity: 0.8;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  
}

/* .page-wrap{
  width: 100%;
  height: 100%;
  position: relative;
} */


.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: white;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}
 #mailto a:hover{
  text-decoration: none;
  color: white;

}



/* compact.css */
body{
background-repeat: no-repeat;
background-size: cover;
background-color: black;
padding-bottom: 10px;

}

@media (max-width: 979px) {
  body {
    padding-top: 0px;
  }
}
*{

}
h2{
  color: white;
  font-family: 'Courier New', Courier, monospace;
  text-align: center;

}

.gallery-block{
  padding-bottom: 60px;
  padding-top: 60px;
}

.gallery-block .heading{
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block .heading h2{
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.gallery-block.compact-gallery .item{
  overflow: hidden;
  margin-bottom: 0;
  background: black;
  opacity: 1;
}

.gallery-block.compact-gallery .item .image{
  transition: 0.8s ease;
}

.gallery-block.compact-gallery .item .info{
  position: relative;
    display: inline-block;
}

.gallery-block.compact-gallery .item .description{
  display: grid;
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding: 10px;
    font-size: 17px;
    line-height: 18px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    opacity: 1;
    color: white;
    transition: 0.8s ease;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.39));
}

.gallery-block.compact-gallery .item .description .description-heading{
  font-size: 1em;
  font-weight: bold;
}

.gallery-block.compact-gallery .item .description .description-body{
  font-size: 0.8em;
  margin-top: 10px;
  font-weight: 300;
}

@media (min-width: 576px) {

  .gallery-block.compact-gallery .item .description {
    opacity: 0; 
  }

  .gallery-block.compact-gallery .item a:hover .description {
    opacity: 1; 
  } 

  .gallery-block .zoom-on-hover:hover .image {
    transform: scale(1.3);
    opacity: 0.7; 
  }
}


#about-me{
  padding: 30px;
}
footer{
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  padding-bottom: 20px;
  color:white;
}

/* BS4 carousel slider */
.bs-slider{
  max-height: calc(100vh - 71px);
  overflow: hidden;
}


/* GRID GALLERY.CSS */

#grid-pics{
padding-left: 4px;
padding-right: 4px;
padding-bottom: 4px;
padding-top: 4px;
background: #ddd;
}
.gallery-block.grid-gallery{
  padding-bottom: 60px;
  padding-top: 60px;
  
}

.gallery-block.grid-gallery .heading{
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block.grid-gallery .heading h2{
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.gallery-block.grid-gallery a:hover{
  opacity: 0.8;
}

.gallery-block.grid-gallery .item img{
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  transition: 0.8s;
}

.gallery-block.grid-gallery .item{
  margin-bottom: 20px;
}

@media (min-width: 576px) {

  .gallery-block.grid-gallery .scale-on-hover:hover{
    transform: scale(1.05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
  }
}

/* CARD GALLERY.CSS */

.gallery-block{
	padding-bottom: 60px;
	padding-top: 60px;
}

.gallery-block .heading{
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block .heading h2{
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.gallery-block.cards-gallery h6 {
  font-size: 17px;
  font-weight: bold; 
}

.gallery-block.cards-gallery .card{
  transition: 0.4s ease; 
}

.gallery-block.cards-gallery .card img {
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15); 
}

.gallery-block.cards-gallery .card-body {
  text-align: center; 
}

.gallery-block.cards-gallery .card-body p {
  font-size: 15px; 
}

.gallery-block.cards-gallery a {
  color: white; 
}

.gallery-block.cards-gallery a:hover {
  text-decoration: none; 
}

.gallery-block.cards-gallery .card {
  margin-bottom: 30px; 
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

@media (min-width: 576px) {

	.gallery-block .transform-on-hover:hover {
	    transform: translateY(-10px) scale(1.02);
	    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important; 
	}
}

/* ABOUT ME SECTION */

#about-me{
  font-size: 15px;
  }

#emailHelp{
  text-align: center;
  font-size: 10px;
}

/* css grid gallery */

.grid-1 {
	background:ddd;
	-webkit-column-count:1;
	-webkit-column-gap:10px;
	-webkit-column-fill:auto;
	-moz-column-count:1;
	-moz-column-gap:10px;
	-moz-column-fill:auto;
	column-count:1;
	column-gap:10px;
	column-fill:auto;
}

.grid-item-1 {
	display:inline-block;
	background:#ddd;
	margin:0 0 10px;
	padding:10px;
	padding-bottom:5px;
	-webkit-column-break-inside:avoid;
	-moz-column-break-inside:avoid;
  column-break-inside:avoid;
  
}

.hr-2 {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #ddd;
	margin:.5em 10px;
	padding:0;
}

.img-2 {
	width:100%
}

#p1{
  font-size: 15px !important;
  color: white;
}

@media (min-width: 450px) {
  .grid-1 {
    -webkit-column-count:2;
	  -moz-column-count:2;
	  column-count:2; 
  }
}

@media (min-width: 650px) {
  .grid-1 {
    -webkit-column-count:3;
	  -moz-column-count:3;
	  column-count:3; 
  }
}

@media (min-width: 960px) {
  .grid-1 {
    -webkit-column-count:4;
	  -moz-column-count:4;
	  column-count:4; 
  }
}
