/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Karla', sans-serif;
  background: white;
  /* background: 
    linear-gradient(to right, transparent, white 25%, white 75%, transparent),
    #ffffff url(img/grunge-white.jpg);
  background-size: 100%; */
  color: #000;
  line-height: 1.6;
  font-size: 1rem;
}



/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Cooper Black', sans-serif;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease-in;
  border-bottom: 1px solid #e9e9e9;
}

a:hover {
  color: #000;
  text-decoration: none;
  border-color: #000;
}

ol{
  padding-left: 0;
  margin: 1rem 0 1rem 1.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* Top Bar */

.top-bar{
  background:
    url(img/grunge-black.jpg);
  background-size: 50%;
  background-position: center bottom;
  clip-path: polygon(0 0, 100% 0, 100% 99%, 0 99%);
  mix-blend-mode: multiply;
  color: white;
  
  position: relative;
  padding: 1rem 0;
  font-family: "Cooper Black", sans-serif;
  height: 5.5rem;

  a{
    color: white;
  }

  .logo{
    height: 3rem;
    width: auto;
    display: block;
  }
}

.top-bar.home{
  background-size: 100% 120%;
  padding: 5rem 5rem 10rem;
  height: auto;

  .container{
    display: block;
  }

  .logo-container{
    background: white;
    padding: 3em;
    border-radius: 50%;
    mix-blend-mode: exclusion;
  }

  .logo{
    width: auto;
    display: block;
    height: 12rem;
    filter:brightness(0);
  }

  a{
    color: white;
  }


  
}

.top-logos{
  display: grid;
  place-content: center;
  margin-bottom: 5rem;
}


.intro{
    color: white;
    text-align: center;
    font-size: 4rem;
    line-height: 1;
    mix-blend-mode: exclusion;
    max-width: 1200px;
    margin: 0 auto;
    p{
      margin: 0;
      padding: 0;
    }

    p{
      margin: 0;
      text-wrap: balanced;
    }
  }

.nav{
  list-style: none;
  display: flex;
  gap: 1rem;
  
  li{
    text-box: trim-both cap alphabetic;
  }
}

/* @media (max-width: 960px){
  .header .intro {
    left: 12rem;
    width: auto;
  }
} */

.header .container

.header p {
  margin: 0;
}

.header a, .header a:hover{
  border: none;
}

/* Content Area */
.content {
  min-height: 60vh;
  padding-top: 5rem;
}

/* Single */

.content.single{
  .page-title{
    font-size: 6rem;
    text-wrap: balance;
    margin: 0 auto 5rem;
  }
  h2:not(:first-child){
    margin-top: 2.5rem;
  }
}

/* Entries Grid */
.entries {
  display: flex;
  flex-direction: column;
}

.entry {
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: 10rem auto;
    grid-gap: 2rem;
}

.content.single .entry{
  display: block;
  padding: 0;
  
  .entry-content{
    border: none;
    padding: 0;
  }
}

.entry-header{
  margin-bottom: 1.5rem;

  &>*{
    margin-bottom: 1rem;
    text-box: trim-both cap alphabetic;
  }
}

.album-wrap{
  margin-bottom: 1rem;
}
.entry-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}

.entry-blurb p {
  margin-bottom: 1rem;
}

.entry-content{
  grid-column: 2 / -1;
  grid-row: 1;
  padding-left: 2rem;
  border-left: 1px solid #e9e9e9;

  :last-child{
    margin-bottom: 0;
  }
}

.entry-meta{
  text-align: right;
  grid-column: 1 / 2;
  grid-row: 1;
}

.entry-date {
  margin-bottom: 1rem;
  opacity: .75;
}

.listen{
  margin: 0;
  font-weight: bold;
}

/* Streaming Links */
.streaming-links {
  list-style: none;
}


.streaming-link {
  display: inline-block;
  color: black;
  border-bottom: none;
}

.streaming-link:hover {
  text-decoration: none;
  color: currentColor;
}

/* Song Album Info */
.song-album {
  font-weight: bold;
}

/* Post Body */
.post-body {
  line-height: 1.8;
  color: #333;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body strong {
  font-weight: 600;
}

.post-body em {
  font-style: italic;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #e5e5e5;
  gap: 2rem;
}

.pagination-link {
}

.pagination-link:hover {
}

.pagination-info {
  color: #666;
  font-size: 0.9375rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: #666;
}

.empty-state p {
  margin-bottom: 0;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 600;
  color: #333;
  font-size: 0.9375rem;
}

input[type="text"],
input[type="date"],
input[type="url"],
textarea,
select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  padding: 0.75rem 1.5rem;
  background-color: #0066cc;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start;
}

button:hover {
  background-color: #0052a3;
}

button:active {
  transform: scale(0.98);
}

button.secondary {
  background-color: #f0f0f0;
  color: #0066cc;
}

button.secondary:hover {
  background-color: #e0e0e0;
}

button.danger {
  background-color: #dc3545;
}

button.danger:hover {
  background-color: #c82333;
}

/* Responsive */
@media (max-width: 999px) {
  .intro{
    font-size: 3rem;
  }
}

@media (max-width: 850px) {
  .top-bar.home{
    padding-bottom: 5rem;
  }
  .intro{
    font-size: 2rem;
  }
  .container{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .top-bar.home .logo{
    height: 6rem;
  }
}

@media (max-width: 650px) {
  .top-bar.home{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .intro{
    font-size: 1.5rem;
  }
  .entry{
    display: block;
    
    .entry-content{
      padding: 0;
      border: none;
      margin-bottom: 1rem;
    }

    .entry-meta{
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
      text-align: left;
      margin: 0;

      >*{
        white-space: nowrap;
      }
    }

    .album-wrap{
      margin: 0;
    }
    
    .entry-image{
      width: 8rem;
      margin: 0;
    }

    .entry-date{
      margin-top: 0;
    }

  }
}

@media (max-width: 400px){
  .intro{
    font-size: 1.25rem;
  }
  .entry{
    .entry-image{
      width: 6rem;
    }

    .entry-meta{
      align-items: flex-start;
    }
  }
}