@font-face {
	font-family: "evergreen";
	src: url("fonts/Evergreen-Regular.otf");
	}
@font-face {
	font-family: "bjorken";
	src: url("fonts/bjorken.otf");
	}

	
body{
	margin: 0px;
	padding: 20px;
	
}

* {
	cursor: none !important;
}

#bird-cursor{
	position: fixed;
	width: 64px;           /* display size (can change) */
	height: 64px;
	pointer-events: none;  /* so links still work */
	transform: translate(-50%, -50%);
	z-index: 9999;
}
	
.bg-image{
	position: relative;
	width: 100vw;
}

@media (max-width: 135vh){
	.bg-image{
		width: auto;
		height: 100vh;
	}
}	

.sign-container{
    position: relative;
    display: inline-block;
	width: 360px;
}

.sign-post{
    width: 100%;
}

.sign-link-1{
    position: absolute;
	top:15%; 
	left:15%; 
	width:30%; 
	height:23%;
}
.sign-link-2{
    position: absolute;
	top:60%; 
	left:15%; 
	width:30%; 
	height:23%;
}
.sign-link-3{
    position: absolute;
	top:24%; 
	left:50%; 
	width:35%; 
	height:23%;
}
.sign-link-4{
    position: absolute;
	top:50%; 
	left:50%; 
	width:35%; 
	height:23%;
}

#container{
	margin-top: 10px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	font-family: evergreen;
	font-size: 30px;
	text-align: center;
	color: white;
	flex: 1 0 auto; /* This pushes the footer down by taking up all available space */
}



#index_container {
	transform-origin: 70% 60%;
	position: relative;
	transform: scale(2); /* Start at 50% */
	transition: transform 2s ease; /* Smooth transition over 2 seconds */
	position: relative;
	display: inline-block;
}

#home_container{
	position: relative;
	display: inline-block;
	
}

#zoom_container {
    overflow: hidden; /* prevents scrollbars during zoom */
}

h1 {
    font-weight: normal;
    color: white;
}



.quote{
	text-align: right;
    font-size: 25px;
	color: white;
}

.square-thumb {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
}


.nav{
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    padding: 10px;
}

.hide {
  display: none;
}

.myDIV:hover + .hide {
  display: block;
  color: red;
}
	
.index-link  {
text-decoration:none;
}

.grow { 
transition: all .2s ease-in-out; 
}

.grow:hover { 
transform: scale(1.05); 
}

.video-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: auto;
}

.video-grid iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}


.flex-container {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  
}

.flex-navigation {
	  display: flex;
	  flex-flow: row;
	  justify-content: space-between;
	  align-items: center;
	  padding: 0;
	  margin: 0;
	list-style: none;
}


.flex-navigation a
{
	display: block;
	padding: 5px 10px;
	color: white;
	text-decoration: none;
	font-size: 40;
}

.flex-item {
  padding: 0px;
  width: 100%;
  margin-top: 10px;  
  color: white;
}

.flex-nav-item {
  padding: 0px;
  width: 100%;
  margin-top: 10px;
  
}


/*gallery start*/

.gallery-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 400px;
}

.nav-slot {
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.side {
  width: 150px;
  height: 200px;
  opacity: 0.6;
}

.main {
  width: 400px;
  height: 300px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Fullscreen Overlay Styles */
#overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

#fullscreen-img { max-width: 90%; max-height: 80%; }

.arrow {
  color: white; font-size: 50px; cursor: pointer; padding: 20px;
}

/*gallery end*/





@media (min-width: 1200px){
	#container{
		width: 1200px;
	}
	.sign-container{
        position: fixed;   /* Locks it to the viewport */
        bottom: 0;         /* Sticks it to the bottom edge */
        left: 0;           /* Sticks it to the left edge */
        z-index: 1000;     /* Ensures it stays on top of other content */
        margin: 0;         /* Removes any centered margins you had before */
	}
}

@media (min-width: 1600px){
	.sign-container{
		left: 25px; 
	}
}

@media (min-width: 1800px){
	.sign-container{
		left: 50px; 
	}
}





@media (max-width: 600px){
	#container{
		font-size: 20px;

	}
	.quote{
		font-size: 15px;
	}
	
	.sign_post{
		width: 100%;
	}

}	