@font-face {
  font-family: "Casette";
  src:
    local("alphabetized casette tapes"),
    url("/assets/fonts/alphabetized-cassette-tapes-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* avoids FOIT */
}

@font-face {
  font-family: "CascadiaCode";
  src:
    local("Cascadia Code"),
    url("/assets/CascadiaCode-VariableFont_wght.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* avoids FOIT */
}

@font-face {
  font-family: "DarkShadow";
  src:
    local("Dark Shadow"),
    url("/assets/Dark\ Shadow.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* avoids FOIT */
}


:root{
    --accent: #EB5A33;
    --main: #5C59A3;
    --secondary: #B9B1D8; 
    --back: #FDFDED;
}

html{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    background-color: var(--back);
    font-family: 'CascadiaCode', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

main{
  height: 100vh;
  max-width: 900px;
  padding: 2rem;
}

footer{
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-container{
  height: 25%;
  text-align: center;
}

.tape{
  height: 100%;
}

.concert-title{
    font-family: 'DarkShadow', Roboto, sans-serif;
    font-weight: 100;
    font-size: 3rem;
    color: var(--accent);
    margin: 0 auto;
}

.button-container{
  display: flex;
  justify-content: space-around;
}

.tape-btn{
  font-family: 'CascadiaCode', Roboto, sans-serif;
  font-size: 1.5rem;
  border-radius: 3px;
  padding: .5rem .5rem;
  background-color:var(--main);
  color: var(--secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .55em;     
  -webkit-box-shadow: 5px 5px 2px 0px #000000; 
  box-shadow: 5px 5px 2px 0px #000000;
  
}

.tickets::before{
  content: "";
  display: inline-block;
  inline-size: 0;            /* border-triangle trick */
  block-size: 0;
  border-style: solid;
  border-width: .48em 0 .48em .80em;     /* top right bottom left */
  border-color: transparent transparent transparent currentColor;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.25)); /* tiny bevel */
  transform: translateX(1px);            /* tiny nudge like real buttons */
}

.location::before{
  content: "";
  display: inline-block;
  width: .8em;               /* size relative to text */
  height: .8em;
  background: currentColor;  /* matches text color */
  border-radius: 2px;        /* tiny rounding like plastic buttons */
  box-shadow: 0 1px 0 rgba(255,255,255,.25); /* subtle bevel */
  transform: translateY(1px); /* tiny optical nudge */
}

.tape-btn:active::before{ transform: translateX(2px); }

.date{
  font-size: 1.8rem;
  color: var(--main);
  margin: 0;
}

.info{
  color: var(--secondary);
  font-size: 1.5rem;
  margin: 0.5rem;
}

.dates-container{
  margin-top: 1rem;
  text-align: center;
}

.logo-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around; 
  gap: 2rem;
  flex-wrap: nowrap;              
  overflow: hidden;       
  margin-bottom: 2rem;        
}

.logo{
  height: clamp(24px, 6vw, 56px); /* scales down on small screens */
  width: auto;                    /* keep aspect ratio */
  flex: 0 0 auto;                 /* don’t grow/shrink oddly */
  object-fit: contain;
}

#kt-zg{
  min-height: 80px;
}
@media screen and (min-width: 470px) {
  .title-container{
    height: 35%;
    text-align: center;
  }

  .tape-btn{
    font-size: 1.8rem;
  }

}

@media screen and (min-width: 700px) {
  .title-container{
    height: 40%;
    text-align: center;
  }

  .date{
  font-size: 2rem;
  color: var(--main);
  margin: 0;
}

.info{
  color: var(--secondary);
  font-size: 1.8rem;
  margin: 0.5rem;
}

.dates-container{
  margin-top: 1rem;
  text-align: center;
}

}