body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('background.webp') no-repeat center center fixed; 
    background-size: cover;
    overflow: auto;
    min-height: 100vh; /* Ensures at least full viewport height */
}

footer {
    position: relative;
    background-color: #DEB887;
    text-align: center;
    bottom: 0;
    width: 100%;
    height: 10vh; /* Footer height is set to be 10% of the viewport height */
}

/* Text and paragraph styles */
h1, h6, p {
    color: #ff7f50; /* Coral color for text */
    min-width: 70vw;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    position: relative;
    display: block;
	  padding-left: 10vw;
  padding-right: 10vw;
      text-shadow: 
        -1px -1px 0 #696969,  
         1px -1px 0 #696969,
        -1px  1px 0 #696969,
         1px  1px 0 #696969; /* Dark grey outline */
}
h5 {
	
	color: #008080; /* Coral color for text */
    min-width: 70vw;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    position: relative;
    display: block;
	  padding-left: 10vw;
  padding-right: 10vw;
      text-shadow: 
        -.5px -.5px 0 #696969,  
         .5px -.5px 0 #696969,
        -.5px  .5px 0 #696969,
         .5px  .5px 0 #696969; /* Dark grey outline */
}

h2 {
    color: #F8F8FF; /* Off-white color for text */
    text-shadow: 
        -1px -1px 0 #696969,  
         1px -1px 0 #696969,
        -1px  1px 0 #696969,
         1px  1px 0 #696969; /* Dark grey outline */
    min-width: 70vw;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    position: relative;
    display: block;
    padding-left: 10vw;
    padding-right: 10vw;
    font-size: 3em;
}

h1 {
    font-weight: bold;
    font-size: 1.5em;
	  padding-left: 10vw;
  padding-right: 10vw;
      text-shadow: 
        -1px -1px 0 #696969,  
         1px -1px 0 #696969,
        -1px  1px 0 #696969,
         1px  1px 0 #696969; /* Dark grey outline */
}

h3 {
	    color: #DEB887; /* Sand color for text */
    min-width: 70vw;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    position: relative;
    display: block;
	  padding-left: 10vw;
  padding-right: 10vw;
     font-weight: bold;
    font-size: 2em;
	    text-shadow: 
        -1px -1px 0 #696969,  
         1px -1px 0 #696969,
        -1px  1px 0 #696969,
         1px  1px 0 #696969; /* Dark grey outline */
}

h4 {
	color: #36fce1; /* bright teal color for text */
    min-width: 70vw;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    position: relative;
    display: block;
	  padding-left: 10vw;
  padding-right: 10vw;
     font-weight: bold;
    font-size: 1.5em;
	    text-shadow: 
        -1px -1px 0 #696969,  
         1px -1px 0 #696969,
        -1px  1px 0 #696969,
         1px  1px 0 #696969; /* Dark grey outline */
}
header {
    min-width: 70vw;
    max-width: 1000px;
    margin: auto;
    color: #36fce1; /* Teal color for header */
    font-size: 2em;
    text-align: center;
	  padding-left: 10vw;
  padding-right: 10vw;
      text-shadow: 
        -1px -1px 0 #696969,  
         1px -1px 0 #696969,
        -1px  1px 0 #696969,
         1px  1px 0 #696969; /* Dark grey outline */
}

.gallerycontainer {
    width: 90vw;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
		
}

.gallerycontainer img {
    max-width: 80vw; /* Responsive max-width for images */
    min-height: auto; /* Responsive max-height for images */
    width: auto;
    height: 40vh;
	position: relative;
}

.arrow {
    font-size: 3em;
    user-select: none;
    position: absolute;
    top: 18vh;
  color: rgba(213, 140, 113, 0.5);
	    z-index: 1000; /* Ensure it's high enough */
    cursor: pointer; /* Ensure it shows as clickable */
}

#prevArrow {
    left: 10vw;
}

#nextArrow {
    right: 10vw;
}



.corner-image {
    position: fixed; /* Change from absolute to fixed */
    z-index: 4; /* Ensure it stays above other content */
}

/* Top left corner */
.corner-image.tl {
    top: 0;
    left: 0;
    width: 7.5vw;
}

/* Top right corner */
.corner-image.tr {
    top: 0;
    right: 0;
    width: 7.5vw;
}

/* Bottom left corner */
.corner-image.bl {
    bottom: 0;
    left: 0;
    width: 7.5vw;
}

/* Bottom right corner */
.corner-image.br {
    bottom: 0;
    right: 0;
    width: 7.5vw;
}







.images-table td, .gallery td {
  text-align: center;
  vertical-align: middle;

}






.images-table, .gallery {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap as needed */
    justify-content: center; /* Center items horizontally */
    width: 90vw; /* Set the container width */
    margin: auto; /* Center the container */
}

.gallery a, .images-table a {
    width: 28vw; /* Set the link (and thus the image) to take up 25% of the viewport width */
    display: flex; /* Use flex to center the image within the link */
    justify-content: center; /* Center horizontally */
    padding: 0.5vw; /* Adjust padding as needed */
	height: auto;
}

.images-table img, .gallery img {
    max-width: 17vw; /* Ensure the image is responsive within the link */
    height: auto; /* Maintain aspect ratio */
	width: auto;
}







#galleryPlaceholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#pagination {
    display: flex;
    flex-direction: row; /* Ensure buttons are in a row */
    justify-content: center; /* Center the buttons horizontally */
    flex-wrap: wrap; /* Allow buttons to wrap in small screens */
    gap: 5px; /* Optional: Adds a gap between buttons */
}

#pagination button {
    background-color: #006994; /* Light grey background */
    border: 2px solid #000000; /* Grey border */
    color: #ff7f50; /* Dark grey text */
    padding: 5px 10px; /* Top and bottom padding, left and right padding */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline from text */
    display: inline-block; /* Display inline with block features */
    font-size: 1rem; /* Standard font size */
    margin: 2px; /* Small margin around buttons */
    cursor: pointer; /* Change mouse cursor to pointer */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.5s, border-color 0.5s; /* Smooth transition for hover effects */
}

#pagination button:hover {
    background-color: #87ceeb; /* Darker grey background on hover */
    border-color: #ccc; /* Darker border on hover */
}

#pagination button {
    cursor: url('transparency.png'), auto; /* Fallback to 'auto' if the custom image cannot be used */
}

.galleria {
    margin-left: auto;
	margin-right: auto;
	margin-bottom: auto;
	margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
	width: 90vw;
		
}
.body-container {
    position: relative;
    height: 90vh;
	
}


/* Assuming the footer is directly at the bottom of the page */
.lfishies img, .rfishies img {
    position: fixed; /* Fixed positioning to keep them above the footer regardless of scrolling */
    bottom: 0; /* Height of the footer + desired distance above it */
    width: 15vw;
    height: auto;
    z-index: -2; /* Ensure this does not overlap content you want visible */
}

.lfishies img {
    left: 7vw;
}

.rfishies img {
    right: 7vw;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 2s ease; /* 3s fade effect */
}

body.loading {
  overflow: hidden; /* Prevents scrolling while loading */
}

/* Styles for the contact form */
#contactForm {
  background-color: #008080; /* Teal background */
  color: #ff7f50; /* Coral text */
  padding: 2vw; /* Padding inside the form */
  border-radius: 10px; /* Rounded corners */
  width: 60vw; /* Set the form width */
  max-width: 500px; /* Maximum width of the form */
  margin: 40px auto; /* Centering the form */
  font-size: 2em; /* Larger text size */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Soft shadow for depth */
  position: relative;
  z-index: 2;
}

/* Styles for form elements to ensure they are visually integrated */
#contactForm input[type=email], #contactForm textarea, #contactForm input[type=submit] {
  width: 100%; /* Full width of the form container */
  padding: 10px; /* Padding for form elements */
  margin-top: 10px; /* Margin to separate form elements */
  border: 1px solid #ddd; /* Subtle border */
  border-radius: 5px; /* Slightly rounded corners for form elements */
  box-sizing: border-box; /* Ensures padding does not affect width */
}

/* Additional style for the submit button for better visual appeal */
#contactForm input[type=submit] {
  background-color: #ff7f50; /* Coral background for the button */
  color: white; /* White text on the button */
  border: none; /* No border for the button */
  cursor: pointer; /* Cursor changes to pointer to indicate clickable */
}

/* Hover effect for the submit button */
#contactForm input[type=submit]:hover {
  background-color: #ff9966; /* A lighter coral for hover effect */
}


#contactButton {
  background-color: #008080; /* Teal background */
  color: #ff7f50; /* Coral text */
  font-size: 1.5em; /* Text size */
  padding: 10px 20px; /* Padding around the text */
  border: 1px #fff; /* Remove default border */
  border-radius: 20px; /* Rounded corners */
  cursor: pointer; /* Change cursor on hover */
  display: block; /* Block level allows for margin auto to work */
  margin: 20px auto; /* Center the button horizontally */
  text-align: center; /* Ensure text is centered */
}

#contactButton:hover {
  background-color: #ff7f50; /* Change color on hover */
  color: #fff; /* Change text color on hover */
}
