
/* Fonts and Colors */

:root { 
  --redBrown: #A05941;
  --greenBlack: #133032;
  --lightGray: #EDEDEE;
  --white: #fff;
  --black: #000000;
  --font: 'Roboto, sans-serif'
}

/* Body */
body { 
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    color: var(--white);
    background-color: var(--black);
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
} 


/* Header */

section {
  height: 50px;
}

.input__wrap {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  padding-left: 3rem;
}

input {
  height: 40px;
  background: transparent;
  border: 0.5px solid #fff;
  border-radius: 5px;
  
  color: var(--white);
}

input::placeholder {
  
  color: var(--white);
}

select {
  height: 40px;
  background: transparent;
  color: var(--white);
  border-radius: 5px;
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 2rem;
  column-gap: 1rem;
}

.episode__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  border-radius: 15px;
}

.episode__info {
  margin-top: 1rem;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.episode__info p {
  margin-top: 1rem;
}

.episode__info img:hover {
  opacity: 0.7;
  transition: opacity 0.5s ease-in-out;
}

img {
  height: fit-content;
  border-radius: 5px;
  cursor: pointer;
}

h1 {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}

h2 {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

h1:hover,
h2:hover {
  color: var(--color-red);
}

#read-more-button {
  cursor: pointer;
  width: fit-content;
}

#read-more-button:hover {
  color: var(--color-red)
}

.props {
  border: 1px solid grey;
  width: 70%;
  height: 70%;
  padding: 1rem;
}

.pagination .page-link.active {
  background-color: var(--color-red);
  color: #fff;
}

.pagination .page-link {
  color: #000;
  border: unset;
}


 .container__ForShow {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.each__show {
  padding: 2rem;
} 


.show__wrap {
  display: grid;
  grid-template-columns: 70% 30%;
  column-gap: 4rem;
}

.content__wrap {
  display: flex;
  column-gap: 1rem;
}

.hidden {
  display: none;
}

.navbar {
  display: flex;
  justify-content: center;
}

.pagination__pages {
  display: flex;
}

.page-link:hover {
  opacity: 0.9;
}



/* Carousel style */
.carousel { 
  margin: 2rem;
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.container__carousel {
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
  transition: transform 0.5s ease-in-out;
  margin-left: 4rem;
  max-width: 1100px;
}


.container__carousel img {
  width: 200px;
  height: auto;
  margin: 0 10px;
}

.container__carousel img:hover {
  opacity: 0.7;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  padding: 10px;
}

.prev-btn:hover,
.next-btn:hover {
  color: var(--greenBlack);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

header { 
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--greenBlack);
  margin-bottom: 50px;
} 



img {
  width: auto;
  border-radius: 10px;
}

.image-shows {
  width: 200px;
}

button {
  width: 250px;
  height: 50px; 
  color: var(--white);
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

button:hover {
  
  background: var(--lightGray);
}

input { 
  width: 300px;
  height: 50px; 
  color: var(--white);
  padding: 10px;
  font-size: 20px;
}

span {
  color: var(--white);
  font-family: 'Secular One',
    sans-serif;
}

input::placeholder {
  color: var(--white);
  padding-left: 10px;
}

select {
  width: 300px;
  height: 50px; 
  color: var(--white);
  padding: 10px;
  font-size: 20px;
}


.contact { 
  
  background-color: var(--greenBlack);
  color: var(--white);
  height: 700px;
}

.contactX {
  display: flex;
  flex-direction: row;
  justify-content: center;
  
  justify-content: space-evenly;
}

.address {
  padding-right: 30px;
}

.open {
  padding-right: 30px;
}

.email {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 50px;
  background-color: var(--greenBlack);
  color: var(--white);
}

input [type="email"] {
  display: flex;
  flex-direction: row;
  width: 10%;
  height: 50px;
  border: var(--white);
  padding: 15px;
  color: var(--greenBlack);
  background-color: var(--greenBlack);
}

.submit {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

input[type="submit"] {
  display: flex;
  flex-direction: row;
  width: 10%;
  height: 50px;
  text-align: center;
  color: var(--greenBlack);
  background-color: var(--lightGray);
  border: 1px solid var(--white);
  margin-bottom: 50px;
}

.google-maps {
  display: flex;
  justify-content: center;
  background-color: var(--greenBlack);
  color: var(--redBrown);
  padding-top: 170px;
}


.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  justify-content: center;
  height: 150px;
  max-width: 1600px;
  width: 100%;
  border-top: #b2b2b2 solid 1px;
  padding-top: 15px;
  row-gap: 20px;
  background-color: var(--white);
  color: var(--greenBlack);
}

.footer__img {
  max-width: 10%;
  max-height: 320px;
  object-fit: cover;
  background: var(--white);
}

.footer__img:hover {
  opacity: 0.7;
}

a {
  color: var(--greenBlack);
  text-decoration: none;
}

.codeinfo {
  display: flex;
  flex-direction: row;
}

.github:hover {
  color: var (--redBrown);

}

.coder {
padding-right: 15px;
}

.githublink {
padding-right: 15px;
}

.cyflink {
padding-right: 15px;
}

.soc-med {
  color: var(--white);
}



#chatOption :first-child {
  background: var(--redBrown);
  color: var(--white);
  position: fixed;
  padding: 20px 70px;
  bottom: 1rem;
  right: 1rem;
  font-size: 17px;
  font-weight: lighter;
}