@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
    background-color: black;
}
/* navigation links including logo*/
nav ul {
    list-style: none;
    background-color: black;
    text-align: center;
    padding: 0;
    margin: 0;
}
nav li {
    font-size: 1.2em;
    letter-spacing: 5px;
    line-height: 20px;
    height: 30px;
    display: inline-block;
    margin: 2.5%;
    text-transform: uppercase;
}
nav a {
    text-decoration: none;
    color: #fff;
    display: block;
}
nav a:hover {
    background-color: black;
    color: #ff0000;
    text-shadow: 5px 5px 5px #ffffff;
}
/* css styling for page indication for the user*/
.active {
    border-bottom: 1px solid #ff0000;
}
/*header logo image styling*/
.logo-image img{
    width: 60%;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -6px;
    margin-left: 20%;
    animation-name: hero-zoom;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}
/* Creates the level of zoom for header logo image, idea came from code institute love running project*/
@keyframes hero-zoom {
    from {
        transform: scale(1);
   }
    to{
        transform: scale(1.1);
   }
}
/*for page styling across all pages*/
hr {
    border-top: rgb(88, 88, 88) 0.2px solid;
    margin-left: 40px;
    margin-right: 40px;
}
/*styling for text across all pages*/
section {
    color: #ffffff;
    text-align: center;
}
/*styling for first text on home page*/
.intro-text {
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
    font-weight: 300;
    letter-spacing: 1px;
}
/*youtube links for home page*/
.youtube {
    display: inline;
    width: 400px;
    height: 300px;
}
iframe {
    border: none;
}
/*styling for old Hyperion artwork*/
.nibiru {
    width: 50%;
    margin-top: 10px;
    height: auto;
    margin: 0 auto;
}
/*styling for new Hyperion artwork/logo*/
.new-artwork {
    width: 80%;
    margin-top: 10px;
    margin-bottom: 10px;
}
/*styling for header across all pages*/
h1 {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    color: lightgrey;
    text-align: center;
    letter-spacing: 5px;
    text-decoration-line: underline;
}
h2 {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    color: lightgrey;
    text-align: center;
    letter-spacing: 4px;
}
/*social links in footer*/
.social-links {
    text-align: center;
}
.social-links li {
    display: inline;
}
.social-links i {
    font-size: 250%;
    margin: 1%;
    padding-left: 5%;
    padding-right: 5%;
    color: #ffffff;
}
.social-links a:hover {
    background-color: black;
    color: #ff0000;
}
/* code for styling the gallery photos*/
.gallery-photos {
    clear:both;
    width:40%;
    display: inline-block;
    position: relative;
}
.gallery-photos img {
    width: 100%;
}
/*image for tours section*/
.container {
    background-repeat: no-repeat;
    position: relative;
    max-width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
}
.container img {
    max-width: 90%;
}
/*text for tour sections*/
.text-block {
    position: absolute;
    width: 80%;
    top: 5%;
    bottom: 5%;
    right: 22%;
    left: 12%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    line-height: 50px;
}
/* all styling for booking information page*/
.booking-section {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    align-content: center;
    margin-left: 10%;
    margin-top: 10%;
    max-width: 80%;
    max-width: 80%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 1px;
}
.booking-form {
    color: #fff;
    position: relative;
}
/*to allow the form to be spread horizontally to minimise scrolling*/
.column {
    padding-top: 20px;
    padding-bottom: 20px;
    column-count: 2;
}
/*booking form components*/
label, input {
    display: grid;
    margin-bottom: 5px;
}
label {
    width: 200px;
    padding-left: 5%;
}
input {
    background-color: white;
    color: black;
    width: 125px;
}
/*styling for book button including a hover feature with a color change*/
.book-button{
    margin-left: 0px;
    border-radius: 2px;
    padding: 15px 32px 15px 32px;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 100%;
    background-color: #000000;
    color: white;
    display: block;
}
.book-button:hover {
    background-color: #ffffff;
    color: #ff0000;
}
/*styling for merch page and it's images*/
.merch {
    display: inline-block;
    position: relative;
    margin: 15px;
}
/*Fall of the city states page*/
.tracks{
    text-align: center;
}
/*for new hyperion artwork*/
.toxic {
    width: 80%;
    background-repeat: no-repeat;
    margin-top: 5%;
    margin-left: 10%;
}
/*this section is all for media queries to make each page responsive to different devices*/
/* For large to medium screens sizes from 1200px wide and down */
@media screen and (max-width: 1200px) {
    .img-fluid {
        width: 65%;
        height: 200px;
        margin: 0 auto;
   }
    .nibiru {
        width: 80%;
        height: auto;
        margin: 0 auto;
   }
    .new-artwork {
        width: 70%;
   }
    .gallery-photos {
        width: 80%;
        height: auto;
   }
    .booking-section .column {
        width: 80%;
   }
}
/* For large to medium screens sizes from 950px wide and down */
@media screen and (max-width: 950px) {
   /*for home page artwork*/
    .img-fluid {
        width: 65%;
        height: 200px;
        margin: 0 auto;
   }
    .nibiru {
        width: 80%;
        height: auto;
        margin: 0 auto;
   }
    .new-artwork {
        width: 70%;
   }
   /*for gallery section*/
    .gallery-photos {
        max-width: 80%;
        margin-left: 1%;
        margin-right: 1%;
   }
   /*for booking section*/
    .booking-section .column {
        width: 80%;
        margin-left: 1%;
        margin-right: 1%;
   }
}
/*For large to medium screens sizes from 600px wide and down */
@media screen and (max-width: 600px) {
   /*text for tour sections*/
    .text-block {
        font-size: x-small;
        font-weight: 300;
        line-height: 25px;
   }
    .column {
        column-count: 1;
   }
    label {
        width: 100px;
   }
    input {
        width: 150px;
   }
}
/* For small screens sizes from 360px wide and down */
@media screen and (max-width: 360px) {
   /*home page responsive styling*/
    .img-fluid {
        width: 65%;
        margin: 0 auto;
        height: auto;
   }
   /*nibiru cataclysm artwork styling*/
    .nibiru {
        width: 80%;
        height: auto;
        margin: 0 auto;
   }
   /*any new hyperion style artwork*/
    .new-artwork {
        width: 70%;
        height: auto;
   }
   /*for tours page picture*/
    .container {
        width: 100%;
        position: relative;
   }
    .container img {
        max-width: 100%;
   }
   /*text for tour sections*/
    .text-block {
        font-size: x-small;
        font-weight: 300;
        line-height: 20px;
   }
    .tour-text {
        line-height: 20px;
        margin: 20px;
   }
   /*for gallery section photos*/
    .gallery-photos {
        max-width: 300px;
        margin-left: 1%;
        margin-right: 1%;
   }
   /*for booking section*/
    .booking-section .column{
        width: 65%;
        margin-left: 1%;
        margin-right: 1%;
   }
    .column {
        column-count: 1;
   }
    label {
        width: 100px;
   }
    input {
        width: 150px;
   }
}
