* {
    font-family: Oswald, sans-serif;
    font-weight: medium;
    font-size: 18px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: oswald;
  src: url(../fonts/Oswald-Medium.ttf);
}
@font-face {
  font-family: ptMono;
  src: url(../fonts/PTMono-Regular.ttf);
}
@font-face {
  font-family: oswaldLight;
  src: url(../fonts/Oswald-Light.ttf);
}
/* ------------------------ WRAPPER ------------------------ */
#wrapper {
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;

      /* primary grid */
  display: grid;
  grid-template-areas:
    "banner" "menu"
    "content"
    "footer";

  grid-template-columns: 1fr;
  grid-template-rows: 150px 60px minmax(650px, auto) minmax(100px, auto);
}

.blackW  {
    background-color: #000;
    color: #ffff    ;
}
.blackB{
    background-color: #000;
    color: #33C5F2;
}

.red {
    background-color: #BE1E2D;
    color: #ffff;
}
.error {
  background-color: #33C5F2;
}
/* ------------------------ HEADER ------------------------ */
header {
    grid-area: banner;
    width: 100%;
    height: 100px;
    /* background-color: pink; */
    display: grid;
    grid-template-areas: 
    "logo menu"
    "tag menu";
  }
.bigLogo{
  grid-area: logo;
  margin: 1em 1em 0;
}
.tag {
  grid-area: tag;
  margin: 1em;
}
  /* ------------------------ NAVIGATION ------------------------ */
nav {
    grid-area: menu;
    width: 100%;
    height: 50px;
    padding: 4em 0 2em;
  }
  .blackM {
    color: black;
    /* background-color: #000; */
  }
  .redM {
    color: white;
    background-color: #BE1E2D;
  }
  nav ul {
    width: 100%;
    list-style: none;
  
    /* flex box */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
  }
  nav a {
    text-decoration: none;
    display: block;
    padding: 1em;
    color: #fff;
  }
  
  /* ------------------------ MAIN ------------------------ */
main{
    /* grid-area: content; */
    background-color: #33C5F2;
}
/*  ----------------------------home page --- */
#home {
    grid-area: content;
    display: grid;
    grid-template-areas: 
    "banner"
    "review"
    "episode"
    "blog";
    grid-template-columns: 1fr;
    grid-template-rows: minmax(500px, auto) minmax(300px, auto) minmax(200px, auto) minmax(300px, auto);
}
/* ---------- Releases ----------- */
#hpBanner{
    grid-area: banner;
    width: 100%;
    background-color: #33C5F2;
    display: grid;
    grid-template-areas: 
    "title"
    "releaseImages";
}
/* --- release title --- */
#releaseTitle{
  grid-area:title;
  margin: 2em 2em 0;
}
/* --- release images --- */
.hpBanner{
  grid-area: releaseImages;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 5em;
  align-items: center;
  justify-content: center;
  margin: 1em 0 3em;
}
/* ---------- Review ----------- */
#hpReview{
    grid-area: review;
    background-color: #fff;
    display: grid;
    grid-template-areas: 
    "hpTitle"
    "hpTease ";
    /* grid-template-columns: 1fr 1fr; */
    /* grid-template-rows: 1fr 1fr; */
}
/* --- Review  Title --- */
#hpReviewTitle{
  grid-area: hpTitle;
  margin:2em;
  color: #000;
  /* background-color: blueviolet; */
}
/* --- Review  Teaser --- */
#hpReviewTeaser{
  grid-area: hpTease;
  width: 80%;
  margin: 2em;
  gap: 5em;
  padding: 0;
  /* background-color: greenyellow; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
/* --- Review  Image --- */
/* #hpReviewImage {
} */
/* --- Review  text --- */
#teaserTex{
  gap: 2em;
  margin: 0;
  text-align: center;
}
#hpReviewTeaser p {
  font-family: oswaldLight;
}
/* ---------- Podcast ----------- */
#hpEpisode{
    grid-area: episode;
    background-color: #000;
}

/* ---------- Latest news ----------- */
#hpBlog{
    grid-area: blog;
    background-color: #BE1E2D;

    display: grid;
    grid-template-areas: 
    "heading"
    "news";
  
}

/* --- News  text --- */
#newsHeading{
  grid-area: heading;
  margin: 2em;
  color: white;
}
/* --- news  teaser section --- */
#latestNews{
  grid-area: news;
  /* width: 80%; */
  gap: 5em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 2em;
  color: #fff;
}
#newsHeading{
  margin: 2em 2em 0;
}
/* --- news image --- */
#latestNewsImage{
  margin: 1em 3em 0em;
}
/* --- news  text --- */
#latestNewsTeaser{
  margin: auto;
  gap: 2em;
  /* margin: 0; */
  text-align: center;
}

/*  ----------------------------playlist page --- */
#playlists{
  grid-area: content;
  grid-template-areas: 
  "playHeader"
  "mainPlaylists"
  "subPlaylists";
  grid-template-columns: 1fr;
}
#playHeader{
  grid-area: playHeader;
 color: #33C5F2;

  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 1em;
}
#playHeader h1{
  font-size: 5em;
}

#mainPlay{
  grid-area: mainPlaylists;
  display: flex;
  flex-direction: row;
  margin: 5em 3em 3em;
  
  gap: 5%;
  justify-content: center;

}
#mainPlay h2{
  font-size: 3em;
}
#subPlaylists{
  grid-area: subPlaylists;
  margin: 1em;
  font-size: 60px;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2.5%;
}
#subPlaylists section{
height: 300px;
margin: 1em;
justify-content: center;
text-align: center;
gap: 1em;
}
#subPlaylists section h3{
font-size: 2em;
}

#playlistLinks{
  display: flex;
  flex-direction: row;
  margin: 2em;
}

/*  ----------------------------review page --- */
#reviews{
  grid-area: content;
  background-color: #ffff;
  padding: 3em;
  display: grid;
  grid-template-areas:
  "rHeader"
  "new-review"
  "old-reviews";
}
#revHeader{
  grid-area: rHeader;
  margin-bottom: 2em;
}
/* top review/banner review */

#mainReview{
  grid-area: new-review;

  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 1em;
}
#mainReview img{
  border:5px solid #33C5F2;
  border-radius: 20px;
}
#newReview{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#newReview img{
  border: none;
}
/* older reviews */
#reviewContainer{
  grid-area: old-reviews;
  padding-top: 5em;
  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  outline: 1px solid red;
  
}

.responsive {
  flex: 1 1 45%;
  max-width: 45%;
  box-sizing: border-box;
  margin:0 1em 0;

}

/*  ----------------------------Personal blog page --- */
#blog {
  grid-area: content;
  /* background-color: yellow; */

  display: grid;
  grid-template-areas: 
  "hero"
  "posts";
  grid-template-columns: 1fr;
  grid-template-rows: minmax(700px, auto) minmax(400px, auto);
}

#heroBanner{
  grid-area: hero;
  background-image: url(../img/blog/banner3.jpg);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1em;
  /* background-image: ; */
  color: #33C5F2;
}

#blogPosts {
  grid-area: posts;
  margin: 2em;
  background-color: orange;
padding: 2em;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2em;
}
.blogPost {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(0,0,0,0.1);
}

.blogReverse {
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 1em;
  /* max-width: 70%; */
  margin-left: auto;
}
.blogText {
  flex: 1;
  text-align: left;
}

.blogTextR {
margin-right: 2em;
}

/*  ----------------------------contact page --- */
#contactPage {
  grid-area: content;
  background-color: #BE1E2D;
  margin: 2em;
  grid-template-areas: 
  "cta"
  "form"
  "socials";
  grid-template-columns: 1fr;
  grid-template-rows: minmax(1fr, auto), minmax(2fr, auto), minmax(1fr, auto);
}
/* ---top cta--- */
#topCta {
  grid-area: cta;
  font-family: oswald;
  padding: 2em;
  text-align: center;
  line-height: 1.6;
}
#topCta h2{
  font-size: 50px;
}

/* ---contact form--- */
#contactUs {
  grid-area: form;
  color: #000814;
  width: 100%;
}

#contact h2 {
  padding: 2em;
  
}
.contactMe {
  padding-left: 3em;
  display: grid;
 grid-template-columns: 1fr;
  gap: 2em;
}


/* form labels */
.contactLabels {
  display: none;
  margin: 0.25em 0;
  padding-left: 8em;
  text-align: left;
  font-weight: bold;
}
/*  user form input */
#fullName,
#email,
#emailContent {
  display: block;
  margin: 0.25em auto;
  padding: 0.5em 3em;
  border-color: #003566;
  border-radius: 6px;
  width: 70%;
}
input::placeholder {
  font-weight: bold;
  color: #003566;
}
textarea::placeholder{
  font-weight: bold;
  color: #003566;
}
/* subscribe to substack */
.substack {
  margin: 1em auto;
  font-weight: bold;
}
/* submit form  */
#submitForm {
  margin: 1em auto;
  padding: 0.5em 2em;
  border: none;
}

#submit {
  padding: 0 2em;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  color: #001d3d;
}
/* --- socials --- */
#bottomCta {
  grid-area: socials;
  padding: 2em;
  text-align: center;

  /* display: grid;
  grid-template-areas: "bCta bCta bCta"
  "insta spoti sound"; */
}

/* --------------------------- Error 404 ----------------------- */
#errorPage {
  color: #fff;
  background-image: url(img/errors/404.png/);
}
/* ------------------------ FOOTER ------------------------ */
footer{
  grid-area: footer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 2em;
  gap: 5em;
  color: #000;
}
#footerSocials{
  margin: 2em;
  gap: 2em
}
#footerMenu {
  display: flex;
  flex-direction: column;
}
#footerMenu a{
  color: #000;
}