/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply grid layout to grid-container */
.grid-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr) minmax(0, 3fr) minmax(0, 1fr); /* four columns */
    grid-template-rows: 84px minmax(0,1fr) 400px 400px 60px;  
}
nav{
    grid-row: 1/2;
    grid-column: 2/4;
    /*background-color: rgba(70, 98, 114, 0.5);*/
    position: sticky;
}
nav ul{
        display: flex;
        list-style-type: none;
        margin-top: 50px;
        font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
        
}
nav a{
    text-decoration: none;
    color: rgb(241, 170, 36);
    font-size: 30px;
    margin: 12px ;
    
    
    
    /* background-color: rgb(70,98,114); */
    
}
.clawimage{
    grid-row: 1/2;
    grid-column: 1/5 ;
    background-image: url(gclawer.png);
    background-size: 50%;
    background-position: center;
    background-color: rgb(70, 98, 114);
    

}

.div2{
    padding-left: 0px;
}
.div1 a{

    color: rgba(249,249,228,1);
    font-size: 75px;
    line-height: 0;  
}

  
.div3{
    
    grid-row: 2/3;
    grid-column: 1/5  ;
    background-image: url(superchargedgodzilla.png);
    transform: scaleX(-1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}
.div3::after {
    grid-row: 2/5;
    content: ''; /* Required for pseudo-element */
    position: absolute; /* Position the overlay */
    top: 0;
    left: 0;
    width: 100%; /* This stuff give it the awesome fade look*/
    height: 100%;
    background: linear-gradient(180deg, rgba(80,160,205,0) -50%, rgba(1,2,2,1) 100%); /* Adjust gradient color and transparency here */
}
.div41{
    grid-area: 2/2/3/4;
    /*background-color: rgba(226, 226, 199, 0.5);*/
    z-index: 1;

}
.div4{
    grid-area: 2/2/3/3;
    z-index: 2;
}
.div4 h2{
    color: rgb(240, 179, 13);
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: lighter;
    margin-left: 4%;
    margin-top: 5%;
    font-size: 40px;
}
.div4 p{
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    /* font-size: larger; */
    font-size: 25px;
    margin-left: 4%;

    margin-top: 2%;
    

}
.div5{
    grid-area: 2/1/4/5;
    /*background: rgb(80,160,205);*/
    
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(1,2,2,1) 100%);
    /*background: linear-gradient(180deg, rgba(80,160,205,1) 0%, rgba(1,2,2,1) 100%);*/
}
.seaguy{
    grid-area: 3/2/4/3;
    background-image: url(deepseaman.jpg);
    background-size: cover;
    margin-left: 4%;
    margin-top: 4%;
    margin-bottom: 4%; 
    margin-right: 4%;
}
.div61{
    grid-area: 3/2/4/4;
    /*background-color: rgba(70, 98, 114, 1);*/ 
}
.div6{
    grid-area: 3/3/4/4;  
}
.div6 h3{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    margin-top: 3%;
    margin-left: 1%;
    font-size: 35px;
    color: rgb(240, 179, 13);

}
.div6 p{
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     font-size: 20px;
     margin-left: 1%;
     margin-right: 1%;
     color: antiquewhite;
     font-size: 25px;
}
.div6 a{
    text-decoration: none;
    
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    font-style: italic;
    /*color: rgb(10, 29, 34);*/
    color: rgb(203, 220, 224);

}
.div6 h2{
    text-align: end;
    margin-top: 2%; /* was 42%*/
    margin-right: 1%;
}
.div7{
    grid-area: 4/1/8/5;
    background-color: rgba(1,2,2,1);
    font-family: Arial, Helvetica, sans-serif;
    font-size: smaller;
    color: rgb(151, 222, 224);
    text-align: center;
    font-style: italic;
}
.div7 a{
    text-decoration: none;
    color: rgb(255, 215, 140);
    margin-bottom: 5%;
}
.timeline{
    grid-area: 2/2/3/3;
    z-index: 2;
}
.timeline{
    color: rgb(240, 179, 13);
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: lighter;
    margin-left: 4%;
    margin-top: 5%;
}
.timeline{
    font-size: 25px;
    margin-left: 4%;
    margin-top: 2%;

}
/*body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  } */
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 50px 50px auto;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ccc;
    transform: translateX(-50%);
  }
  .timeline-item {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background-color: #f9f9f9;
    margin-bottom: 100px;
  }
  .timeline-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    transform: translateY(-50%);
  }
  .timeline-item:last-child::after {
    display: none;
  }
  .timeline-item .date {
    font-weight: bold;
    color: #333;
  }
  .timeline-item .content {
    margin-top: 10px;
    color: #666;
  }
  .timelinetitle{
    text-align: center;
    font-size: 30px;
    color:rgb(70, 98, 114);
  }
  .showera{
    grid-row: 2/3;
    grid-column: 3/4;
    z-index: 2;
}
.showera{
    color: rgb(240, 179, 13);
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: lighter;
    margin-left: 4%;
    margin-top: 5%;
}
.showera{
    font-size: 25px;
    margin-left: 4%;
    margin-top: 2%;

}
  .showera {
    position: relative;
    max-width: 800px;
    margin: 50px  50px auto;
  }
  .showera::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ccc;
    transform: translateX(-50%);
  }
  .showera-item {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background-color: #f9f9f9;
    margin-bottom: 75px;
  }
  .showera-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    transform: translateY(-50%);
  }
  .showera-item:last-child::after {
    display: none;
  }
  .showera-item .date {
    font-weight: bold;
    color: #333;
  }
  .showera-item .content {
    margin-top: 10px;
    color: #666;
  }
  .showeratitle{
    text-align: center;
    font-size: 30px;
    color:rgb(70, 98, 114);
  }
  .div3timeline{
    
    grid-row: 2/3;
    grid-column: 1/5  ;
    background-image: url(godzillamovieimg/musicgodzilla.jpg);
    transform: scaleX(-1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
  }
  .div3timeline::after {
    grid-row: 2/5;
    content: ''; /* Required for pseudo-element */
    position: absolute; /* Position the overlay */
    top: 0;
    left: 0;
    width: 100%; /* This stuff give it the awesome fade look*/
    height: 100%;
    background: linear-gradient(180deg, rgba(80,160,205,0) -50%, rgba(1,2,2,1) 100%); /* Adjust gradient color and transparency here */
  }
  .seaguytimeline{
    grid-area: 3/2/4/3;
    background-image: url(godzillamovieimg/clockgodzilla.jpeg);
    background-size: cover;
    margin-left: 4%;
    margin-top: 4%;
    margin-bottom: 4%; 
    margin-right: 4%;
}
  
/* this is for the monster gallery page of the website*/

  .container {
    position: relative;
    width: 85%; 
    display: inline-block; /* Add this to make containers align horizontally */
    margin: 10px; /* Add some margin for spacing */
    
  }
  .div4monsters{
    grid-row: 2/3;
    grid-column: 2/4;
    z-index: 2;
    /* display: -ms-flexbox; IE10 */
    display: flex;
    /* -ms-flex-wrap: wrap; IE10 */
    flex-wrap: wrap;
    padding: 0 ;

}
.div4monsters h2{
    grid-column: 2/3;
    text-align: center;
    color: rgb(240, 179, 13);
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 75px;
    font-weight: lighter;
    margin-left: 4%;
    margin-top: 5%;
}

  
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(2, 1fr); /* 2 rows */
    gap: 10px; /* Adjust the gap between images */
  }
  
  .image-grid img {
    max-width: 100%;
    height: auto;
  }
  /*.container {
    position: relative;
    width: 50%; 
    float: left;  Add this to make containers align horizontally 
    margin: 10px;  Add some margin for spacing 
    
  } 
  */
  
  
  .image {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(240, 179, 13,0.5);
  }
  
  .container:hover .overlay {
    opacity: 1;
  }
  
  
  .text {
    color: rgba(255, 255, 255);
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: lighter;
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    /* -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); */
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .apoca{
    
    grid-row: 2/3;
    grid-column: 1/5  ;
    background-image: url(compressor/apocalypse.jpg);
    transform: scaleX(-1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}
.apoca::after {
    grid-row: 2/5;
    content: ''; /* Required for pseudo-element */
    position: absolute; /* Position the overlay */
    top: 0;
    left: 0;
    width: 100%; /* This stuff give it the awesome fade look*/
    height: 100%;
    background: linear-gradient(180deg, rgba(80,160,205,0) 0%, rgba(1,2,2,1) 100%); /* Adjust gradient color and transparency here */
}
.row {
    /* display: -ms-flexbox; IE10 */
    display: flex;
    /* -ms-flex-wrap: wrap; IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    /* -ms-flex: 25%; IE10 */
    flex: 25%;
    /* max-width: 25%; */
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  .comment-box {
    margin-top: 15px;
    margin-left: 1%;
  }
  
  .comment-textarea {
    width: calc(100% - 110px); /* Adjust width as needed */
    vertical-align: top;
  }
  
  .comment-button {
    /* width: 100px; */
    vertical-align: top;
  }
  .div6monsters{
    grid-row: 3/4;  
    grid-column: 2/3;
}
.div6monsters h3{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    margin-top: 3%;
    margin-left: 1%;
    font-size: 25px;
    color: rgb(240, 179, 13);

}
.div6monsters p{
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     font-size: 20px;
     margin-left: 1%;
     margin-right: 1%;
     color: antiquewhite;
}

.div6monsters h2{
    text-align: end;
    margin-top: 2%; /* was 42%*/
    margin-right: 1%;
}
                                                            /* movies page css  */
.moviecontainer {
  grid-row: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.movie-image-container {
  width: 100%;
  /* max-width: 500px; Adjust max-width as needed */
  margin: 10px;
  display: flex;
}

.movie-image-container img {
  max-width: 50%; /* Adjust image width */
  height: auto;
}

.moviedescription {
  
  flex: 1;
  padding: 10px;
  background-color: rgba(19, 90, 157, 0.80);

}
.div4movies{
  grid-row: 2/3;
  grid-column: 2/4;
  z-index: 2;
}
.div4movies h2{
  color: rgb(240, 179, 13);
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: lighter;
  font-size: 40px;
  margin-left: 4%;
  margin-top: 5%;
}
.div4movies p{
  color: rgb(255, 255, 255);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  margin-left: 4%;

  margin-top: 2%;
  

}
.div3movies{
    
  grid-row: 2/3;
  grid-column: 1/5  ;
  background-image: url(godzillamovieimg/citywreck.jpg);
  transform: scaleX(-1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}
.div3movies::after {
  grid-row: 2/5;
  content: ''; /* Required for pseudo-element */
  position: absolute; /* Position the overlay */
  top: 0;
  left: 0;
  width: 100%; /* This stuff give it the awesome fade look*/
  height: 100%;
  background: linear-gradient(180deg, rgba(80,160,205,0) -50%, rgba(1,2,2,1) 100%); /* Adjust gradient color and transparency here */
}
.seaguymovie{
  grid-area: 3/2/4/3;
  background-image: url(godzillamovieimg/roadwreck.jpg);
  background-size:cover;
  
  margin-left: 4%;
  margin-top: 4%;
  margin-bottom: 4%; 
  margin-right: 4%; 
}

/* dive deeper webpage */

.div3divedeeper{
    
  grid-row: 2/3;
  grid-column: 1/5  ;
  background-image: url(godzillamovieimg/godzillacosmo.jpg);
  transform: scaleX(-1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}
.div3divedeeper::after {
  grid-row: 2/5;
  content: ''; /* Required for pseudo-element */
  position: absolute; /* Position the overlay */
  top: 0;
  left: 0;
  width: 100%; /* This stuff give it the awesome fade look*/
  height: 100%;
  background: linear-gradient(180deg, rgba(80,160,205,0) -75%, rgba(1,2,2,1) 100%); /* Adjust gradient color and transparency here */
}
.seaguydivedeeper{
  grid-area: 3/2/4/3;
  background-image: url(godzillamovieimg/godzillachart.jpeg);
  background-size:cover;
  
  margin-left: 4%;
  margin-top: 4%;
  margin-bottom: 4%; 
  margin-right: 4%; 
}
.div4divedeeper{
  grid-row: 2/3;
  grid-column: 3/4;
  z-index: 2;
}
.div4divedeeper h2{
  color: rgb(255, 255, 255);
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: lighter;
  margin-left: 4%;
  margin-top: 5%;
  font-size: 40px;
}
.div4divedeeper p{
  color: rgb(255, 255, 255);
  font-family: Arial, Helvetica, sans-serif;
  /* font-size: larger; */
  font-size: 25px;
  margin-left: 4%;

  margin-top: 2%;
}
.fact-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fact {
    width: 90%;
    max-width: 600px;
    background-color: rgba(200, 145, 211, 0.5);
    color: rgb(203, 220, 224);
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    
}
.div6divedeeper{
  grid-area: 3/3/4/4;  
}
.div6divedeeper h3{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: italic;
  margin-top: 3%;
  margin-left: 1%;
  font-size: 35px;
  color: rgb(240, 179, 13);

}
.div6divedeeper p{
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-size: 20px;
   margin-left: 1%;
   margin-right: 1%;
   color: antiquewhite;
   font-size: 25px;
}

.div6divedeeper h2{
  text-align: end;
  margin-top: 2%; /* was 42%*/
  margin-right: 1%;
}

@media screen and (max-width: 1120px){
    .grid-container{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .div4{
        grid-column: 2/4;
    }
    
    nav ul{
        flex-flow: column nowrap;
        margin-left: 5%;
    }
    .div1 a{
        color: rgba(249,249,228,1);
    }
    .div4 h2{
        margin-left: 7%;
    }
    .div4 p{
        margin-left: 7%;
    }
    .seaguy{
        margin-left: 20%;
    }
    .div6 h3{
        margin-top: 2%;
    }
    .column {
        /* -ms-flex: 50%; */
        flex: 50%;
        max-width: 50%;
      }
      .div6monsters{
        padding-left: 1%;
      }
      .div4divedeeper{
        grid-row: 3/4;
        grid-column: 2/4;
        z-index: 2;
      }
      .div4divedeeper h2{
        margin-left: 7%;
      }
      .div6divedeeper{
        grid-row: 4/5;
        grid-column: 3/4;
        background-color: black;
      }
      .seaguydivedeeper{
        grid-row: 4/5;
        grid-column: 2/3;
      }
      .div7{
      grid-row: 6/7;
      grid-column: 2/4;
      
    }
}

@media screen and (max-width: 767px){
    /* .seaguy{
        display:none;
        
    } */
    
    .div6{
        /* comment this section out so I could fix it later  */
        /* grid-column: 2/4; */
        padding-left: 6%;
    }
    .div4monsters{
      padding-left: 6%;
    }
    .div6monsters{
      padding-left: 12%;
    }
    .div6 p{
        padding-left: 0.5%;
    }
    .showera{
        grid-row:3/4 ;
        grid-column:2/3 ;
    }
    .seaguytimeline{
      grid-row: 4/5;
      grid-column: auto;
    }
    .div6{
      grid-row: 5/6;
      grid-column: 2/4;
      background-color: black;
      padding-left: 6%;
    }
    .div7{
      grid-row: 6/7;
      grid-column: 2/4;
      
    }
    .column {
        /* -ms-flex: 100%; */
        flex: 100%;
        max-width: 100%;
      }
      .div6divedeeper{
        grid-row: 4/5;
        grid-column: 2/4;
        /* margin-left: 6%; */
        padding-left: 6%;
        background-color: black;
      }
     

/* movie page mobile section */
.movie-image-container {
  flex-direction: column;
}

.movie-image-container img {
  max-width: 100%;
}

.moviedescription {
  max-width: 100%;
}
}
