

#titlePageText
{
font-family:pixelFont, Geneva, Arial, Helvetica, sans-serif;
text-shadow: 0.1em 0.1em 0.2em #000000;
font-size:28px;
min-height:100%;
line-height: 28px;
padding:50px;
padding-top:15px;
text-align:left;
}



* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	position: relative;
	overflow-x: hidden; /* Prevent horizontal scrolling */	
}

/* Hide the body scrollbar */
body {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}      
/* Hide webkit scrollbar on body */
body::-webkit-scrollbar {
	display: none;
}



/*menu on the upper left */
.menu {
	position:absolute;
	left:50%;
	margin-left:-725px;
	width:200px;
	
	top: 50px;
	text-align: right;
	/*background-color: rgba(255, 255, 255, 0.8);
	border-radius: 5px;*/
	padding: 10px;
	
	z-index: 40;
}

.menu ul {
	list-style-type: none;
}

.menu li {
	margin: 5px 0;
}

.menu a {
	pointer-events: auto !important;
    display: block; /* Makes the entire link area clickable */
    padding: 2px 0; /* Adds some click area */
	
	text-decoration: none;

}





/* Fixed container for background elements */
.container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

/* Left column with repeating background image bound to right */
.left-column {
	flex: 1 1 0; /* grow, shrink, base width 0 */
	background-image: url('left.gif');
	background-repeat: repeat-y;
	background-position: right top;
	position: relative;
	pointer-events: none;
}


.page-scroll-container {
	height: 100vh;
	width: 100vw;
	overflow-y: scroll; /* Prevent scrollbar appearance from moving our content. */
	scrollbar-color: #243335 #60767c;
	position: relative;
	z-index: 20; 
	
}    
.scrollable-content {
	position: absolute; 
	left: 50%; /* Center horizontally */
	transform: translateX(-50%); /* Adjust for half the width */
	width: 1000px;
	padding: 20px 20px 20px 34px;   /* account for scrollbar in centering. CSS still doesn't have overlay scrollbars wtf???*/
	z-index: 30; 
	pointer-events: auto; /* Re-enable pointer events for content items */
	
}



.center-column {
	width: 1000px;
	min-width: 1000px;
	flex: 0 0 1000px; /* Don't grow or shrink, fixed width */
	position: relative;
	background-color: #243335;
}

/* cloud element */
.center-top {
	height: 273px;
	width: 100%;
	background-color: #243335;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

/* ground element */
.center-bottom {
	height: 154px;
	width: 100%;
	background-color: 243335;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
}

/* Right column with repeating background image bound to left */
.right-column {
	flex: 1 1 0; /* grow, shrink, base width 0 */
	background-image: url('right.gif');
	background-repeat: repeat-y;
	background-position: left top;
}


/*FISH and intro section*/
@font-face 
{
	font-family: pixelFont;
	src: url("editundo.ttf");
}


.fish 
{
  position: relative;
  display: block;
  height: 950px; 
  width: 400px;
  /*background: blue;  A color just for debug */
}
.fish img 
{
  position: absolute;
  top: 40px;  
  left: 150px; 
}
.fish .heart 
{
	position: absolute;
	top: 300px;   /* position it where you want */
	left: 398px;  /* position it where you want */
	z-index: 10; /* make sure it's above the other image */
}
.fish .heartText 
{
	position: absolute;
	top: 465px;   /* position it where you want */
	left: 382px;  /* position it where you want */
	width: 300px;
	
	color: #101415;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	

	z-index: 10; /* make sure it's above the other image */
}

.pixel-text-container 
{
  position: absolute;
  top: 750px;
  right: 30px;
  height: 400px; 
  width: 600px;

  
  
  
  /*background: green;  A color just for debug */
}
.pixelText
{
  position: absolute;
  top: 0px;   
  right: 0px; 
  
  min-width: 100px;
  min-height: 100px;
  
  color: #dddddd; 
  
  font-smooth: none; /* non-standard call */
  font-family: pixelFont, Geneva, Arial, Helvetica, sans-serif;
  text-shadow: 0.1em 0.1em 0.2em #000000;
  font-size: 28px;
  min-height: 100%;
  line-height: 26px;
  padding: 0px;
  padding-top: 0px;
  text-align: right;  
}

.pixelText a
{
	  text-decoration: none;
}


/*///////////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////////*/
/* BELOW IS PORTFOLIO CONTENT, ABOVE IS BACKGROUND ELEMENTS */


.outer 
{ 
	margin: auto; 
    width: 900px; /* Depending on the desired effect, width might be needed */
	color: #dddddd;
	font-weight: bold;
	font-family: "Arial Black", Gadget, sans-serif;
	padding-bottom: 50px;
	/*background: blue;  A color just for debug */
}
.inner 
{ 
	position: absolute;
	text-align: left; 
	width: 900px;
    /*background: yellow;  A color just for debug */
}
.right 
{ 
	position: absolute;
	text-align: right; 
	width: 900px;
    /*background: yellow;  A color just for debug */	
}

.desc 
{ 
	position: relative;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	
	text-indent: 0px;
	
	color: #999999;
	text-align: right; 
	width: 900px;
	
	padding-bottom: 15px;
	
    /*background: blue;  A color just for debug */
}

.descL
{ 
	text-align: left; 
    /*background: blue;  A color just for debug */
}

.work
{ 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-align: left; 
	margin-left: 50px;
	font-weight: normal;
	
	padding-top: 10px;
	padding-bottom: 15px;
	
    /*background: blue;  A color just for debug */
}


hr.sectionLine 
{
    border: 0;
	border-top: 1px solid #666666;
}


a:link {color: #dddddd;}
a:visited {color: #dddddd;}
a:hover {color: #dddddd;}
a:active {color: #dddddd;}





/*CAROUSEL CSS*/
.carousel-container {
  width: 900px;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--lx-gap);
  
  
  /*don't let font changes screw up formatting inside the carousel*/
  font-weight: normal;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;

  .carousel {
    aspect-ratio: 16/9;
    width: 100%;
    position: relative;
    overflow: hidden;	

    .item 
	{
      opacity: 0;
      width: 100%;
      height: 100%;
      display: none;
      transition: opacity 0.5s ease-in-out;
	  z-index: 9;  

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
		/*display:none*/
      }

      .caption {
        width: 100%;
        padding: var(--lx-space-01);
        position: absolute;
        top: 0px;
		left: 0px;
        text-transform: uppercase;
        text-align: center;
        font-size: 12px;
		font-weight: bold;
        background-color: rgba(0, 0, 0, 0.5);	
		z-index: 10;   		
      }
	  
      &.active {
        opacity: 1;
        display: block;
      }
    }
  }
  

	
	

  .btn {
    padding: 1em 1.5em;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    outline: none;
    border: none;
	border-radius: 3px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    color: #dddddd;
    background-color: #090a0c;
    transition: transform 0.2s ease-in-out;

    &:active,
    &:focus {
      /*transform: translateY(-50%) scale(1.0);*/
    }

    &:hover {
      /*transform: translateY(-50%) scale(1.0);*/
	  background-color: #555555;
    }
  }

  .prev {
    left: -7%;
  }

  .next 
  {
    right: -7%;
  }

  .dots 
  {
	height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    .dot 
	{
		
      cursor: pointer;
      height: 10px;
      width: 10px;
      background-color: #242421;
      transition: background-color 0.3s ease;

      &.active,
      &:hover {
        background-color: #ffffe6;
      }
    }
  }
}



