/* General Styles */
* {
    box-sizing: border-box;
}

.page-title {
        font-size: 80px;
        padding-bottom: 0;
        margin: 80px auto;
        text-transform: uppercase;
        text-decoration: underline;
          }
          

  @font-face {
    font-family: octarine;
    src: url('fonts/Octarine-Bold.otf') format("opentype");
  }
  @font-face {
    font-family: octarine-bo;
    src: url('fonts/Octarine-BoldOblique.otf') format("opentype");
  }
  @font-face {
    font-family: octarine-l;
    src: url('fonts/Octarine-Light.otf') format("opentype");
  }
  @font-face {
    font-family: octarine-lo;
    src: url('fonts/Octarine-LightOblique.otf') format("opentype");
  }

   
body{
    margin: 0;
    padding: 0;
    background-image: url('background.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}


/* Text Styles */
li, h1, h2, a{
    font-family: octarine;
    color: #000;
}

.update-head {
    text-indent: 0px;
    margin-top: 40px;
}

h1, h2 {
    margin: 0;
}

h1 {
    font-size: 36px;
	text-align: center;
}

h2 {
    text-decoration: underline;
}

p {
    font-size: 14pt;
}

p{
    font-family: octarine-l;
}

a {
    text-decoration: none;
}

a:hover {
    color: #f00;
    text-decoration: underline;
}

/* Header and Navigation */

div.header::before {
    content:url('../images/3d-fiend-8.webp');
    width: 1000px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}


/* Main Content */
.main {
    width: 1200px;
    min-height: 1000px;
    margin: 0 auto;
    padding: 30px 5px;
    background-color: rgba(255, 255, 255, 0.90);
    border: 5px none #000;
    border-top: none;
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
}


/* Footer */
.footer {
    max-width: 100vw;
    margin: 0 auto;
    padding: 30px 0;
    background-color: rgb(19, 19, 19);
    display: flex;
    justify-content: space-evenly;
    font-size: 25px;
}

.footer-link {
    color: #fff;
    text-decoration: underline;
}

.footer-link:hover {
    color: #9C95FF;
    font-style: italic;
}

.break {
    flex-basis: 100%;
    height: 0;
}

  .no-bottom {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .home {
background-image: none;
  }

  .nav-bar {
    position: fixed;
    width: 100vw;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 187, 0, 0.61);
    z-index: 98;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.0);
}

.nav-items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-item {
    font-size: 30px;
    color: rgb(0, 0, 0);
	text-decoration: none;
    background-color: rgba(255, 131, 234, 0.0);
    transition-duration: 0.3s;
}


.nav-item:hover {
    cursor: pointer;
    color: rgba(255, 0, 0, 1);
    font-size: 40px;
    text-shadow: 2px 2px 0px #000;
}

.nav-item::after {
    content: ''; /* Ensure the ::after element is generated */
    display: block; /* Ensure the ::after element takes up space */
    background-color: rgba(255, 131, 234, 0.0);
    font-size: 30px;
    transition: background-color 0.3s; /* Apply transition to the base state */
}


.nav-link:hover {
    color: white;
}

h3 {
	font-family: octarine;
	font-size: 20px;
	text-align: center;
}

.dropdown {
    width: 300px;
    height: 50px;
    font-size: 30px;
    text-align: left;
    padding-top: 5px;
    padding-left: 10px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.subhead {
    font-family: octarine-bo;
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.collection-subhead {
    font-family: octarine-bo;
    text-align: center;
    font-size: 36px;
    margin-bottom: -70px;
}

.vid-container {
    width: 1200px;
    height: 720px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.collection-vid-container {
    width: 1200px;
    height: 720px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin: -80px auto;
    transform: scale(70%);
}

.video-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-link:hover::after {
    opacity: 1;
}


.video-text {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

#sub-title {
    margin-top: 50px;
    text-align: center;
}

.home-p {
    font-size: 24px;
}

.container-row {
    max-width: 100vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.row-item {
    text-align: center;
    position: relative;
    width: 300px;
    height: auto;
    transition: transform 0.3s;
}

@media only screen and (min-width: 1100px) {
.row-item {
    text-align: center;
    position: relative;
    width: 350px;
    height: auto;
    transition: transform 0.3s;
}
}

@media only screen and (max-width: 1000px) {
    .row-item {
        text-align: center;
        position: relative;
        width: 70%;
        height: auto;
        margin-bottom: 50px;
    }
    }

.image-text-container {
    display: inline-block;
    position: relative;
    transition: transform 0.3s;
    transform-origin: center;
    z-index: 1;
}

.row-item:hover .image-text-container {
    transform: scale(1.5);
    z-index: 10;
}

.row-item img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1; /* Ensure images are behind .row-text */
}

.row-item:hover .row-text {
    color: rgba(255, 0, 0, 1);
    z-index: 20; /* Ensure text appears above images on hover */
}

.row-text {
    color: rgba(255, 255, 255, 1);
    display: block;
    margin-top: -40px; /* Negative margin to position text closer to image */
    font-size: 30px;
    white-space: nowrap;
    transition: color 0.3s;
    position: relative;
    z-index: 15; /* Ensure text has higher z-index than images by default */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
}

.video-single {
    display: inline-flex;
    text-align: right;
}

.big-thumbnail {
    width: 600px;
    justify-self: left;
}

.single-description {
    margin: auto 5%;
    justify-items: right;
    text-align: left;
}

/* Ensure the link has relative positioning */
.big-thumbnail-link {
    position: relative;
    display: inline-block;
}

/* Set initial opacity and transition */
.big-thumbnail-link .big-thumbnail {
    display: block;
    opacity: 1; /* Initial opacity */
    transition: opacity 0.3s ease; /* Transition for opacity */
}

/* Define hover effect */
.big-thumbnail-link:hover .big-thumbnail {
    opacity: 0.5; /* Opacity on hover */
}

.navigation-buttons {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 100%;
    text-align: center;
}

.prev-button, .next-button {
    background-color: #ffffff;
    color: #333333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.prev-button {
    position: absolute;
    left: 20px;
}

.next-button {
    position: absolute;
    right: 20px;
}

.prev-button:hover, .next-button:hover {
    background-color: #f0f0f0;
}

.photo-r1 {
display: flex;
flex-direction: column;
margin: 0 auto;
}

.photo-r2 {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
}

.photo1 {
max-width: 495px;
margin: 5px;
}

.photo2 {
max-width: 1000px;
margin: 8px;
}

.photo-p {
    font-size: 24px;
    text-align: center;
}