/* || General styles */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: "Taviraj", Garamond, serif;
}
main {
  flex-grow: 1;
  overflow-y: auto;
}

h1,
h2,
h3,
h4 {
  all: unset;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  text-align: left;
}
/*Header-Title*/
h1 {
  font-family: "Baskerville Old Face", Garamond, serif;
  text-align: center;
  font-size: 32px;
}
/*Normal-Title*/
h2 {
  font-size: 19px;
}

/*Subtitle*/
h3 {
  color: #888;
  font-size: 15px;
  font-weight: 400;
}
/**/
h4 {
  color: #888;
  font-size: 13px;
  font-weight: 300;
}
p {
  all: unset;
  font-size: 17px;
  text-align: left;
}
span {
}
strong {
}
a {
  text-decoration: none;
  color: inherit;
}
a svg {
  vertical-align: middle;
}
ul {
}

/* || Colors */
.black {
  color: black;
}
.grey {
  color: #ccc;
}
.darkgrey {
  color: #444444;
}
.white {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}

/* || Typography */
/* || Header   */
header.standard {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 16px;
  border-bottom: 1px solid #ccc;
}

/* Card*/

.card {
  margin: 8px;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
}
.card .image {
  border-radius: 20px 0 0 20px;
  background-size: cover;
  background-color: #9d8276;
  background-repeat: no-repeat;
  background-position: center;
  min-width: 25%;
  overflow: clip;
}
.basic-info {
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.basic-info div {
  display: flex;
  align-items: center;
}
/*card for Spielzeiten*/
.card .image .colored-layer {
  width: 100%;
  height: 100%;
  background-color: rgba(157, 130, 118, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#day {
  font-size: 32px;
  font-weight: 900;
  line-height: 100%;
}

#month,
#time {
  font-size: 17px;
  font-weight: 300;
}
/**/
/* chip */
.seen-state {
  color: #4b6a60;
  background: #cee5dd;
}

.interested-state {
  color: #9747ff;
  background: #d7b7ff;
}

.not-interested-state {
  color: #b95130;
  background: #fb949d;
}

.unsure-state {
  color: #43473f;
  background: #ffecc7;
}

.miss-out-state {
  color: #755bec;
  background: #b7bbf7;
}

.none-state {
  color: #5b6056;
  background: #f1f0ed;
}

.bought-state {
  color: #ff6f00;
  background: #ffddb3;
}
.planned-state {
  color: #0096ff;
  background: #b3e0ff;
}

#chip {
  font-size: 11px;
  border-radius: 20px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 2px 8px 2px 8px;
  flex-shrink: 0;
  align-self: center;
}

button#chip {
  border: none;
}

button {
  background: white;
  border-color: #9747ff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  color: #9747ff;
  border-radius: 20px;
  padding: 8px;
  margin: 4px;
  cursor: pointer;
  outline: none;
  border-width: 1px;
}
button:hover {
  background: #d7b9ff;
  border: #d7b9ff;
  /*color: #9747ff;*/
}

.login {
  display: flex;
  flex-direction: column;
}
/* || Input */
input {
  align-self: stretch;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #888;
  font-size: 14px;
  box-sizing: border-box;
  margin: 8px;
}

input:focus {
  outline: none;
  border-color: #9747ff;
}
label {
  margin: 8px;
}
/* || Bottom Navigation */
nav {
  background-color: #fff;
  min-height: 30px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  padding-top: 8px;
}

footer nav {
  flex-shrink: 0;
  border-radius: 3px;
  border-top: 1px solid #ccc;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

nav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 25px;
  align-items: center;
}

nav a .icon {
  fill: #ccc;
}

nav a .dot {
  padding: 5px;
}

footer nav a.active svg {
  fill: #9d8276;
}
#unset {
  all: unset;
  cursor: pointer;
  height: 22px;
}

/* Show More - Stücke & Spielzeiten */
.showMore {
  margin: 8px;
  display: flex;
  border-radius: 20px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
  justify-content: center;
  align-items: stretch;
  align-self: stretch;
}
.showMore button {
  width: 100%;
  height: 100%;
}

/* Social Login Buttons */
.social-login-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #888;
}

.social-login-separator::before,
.social-login-separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.social-login-separator span {
  padding: 0 15px;
  font-size: 14px;
}

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-login-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.social-login-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-login-btn.google {
  border-color: #4285f4;
}

.social-login-btn.google:hover {
  background: #f8f9fa;
}

.social-login-btn.apple {
  background: #000;
  color: white;
  border-color: #000;
}

.social-login-btn.apple:hover {
  background: #222;
}

.social-login-btn svg {
  flex-shrink: 0;
}
