@font-face {
  font-family: "Pacifico";
  src: url("Pacifico-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
/* body start */
body {
  display: flex;
  flex-direction: column;
  font-family: "Arial", sans-serif;
  background-color: #f9dbbd;
  color: hsl(252, 74%, 9%);
}
/* body end */

/* header start */
.header-container {
  background-color: #0d0628;
  color: #f9dbbd;
  text-align: center;
  font-size: 1.1em;
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
  margin: 0px auto;
}

.site-logo {
  font-family: "Pacifico", cursive;
  color: #f9dbbd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-logo h1 {
  margin: 12px 0px;
}

.site-logo:hover {
  color: #fca17d;
}

/* burger button */
.menu-toggle {
  display: none;
  padding: 5px 10px;
  border-radius: 10px;
  background: none;
  border: none;
  color: #f9dbbd;
  cursor: pointer;
}

.menu-toggle:hover {
  background-color: #f9dbbd;
  color: #0d0628;
}

.menu-toggle .icon {
  width: 28px;
  height: 28px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
}

.nav-links li {
  display: flex;
}

.nav-link {
  display: inline-block;
  font-family: "Pacifico", cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #f9dbbd;
  background: transparent;
  padding: 8px 16px;
  border: 2px solid #f9dbbd;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: #f9dbbd;
  color: #0d0628;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #0d0628;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    padding: 15px 0;
    z-index: 1000;
  }
  .nav-menu.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 18px;
    font-family: "Pacifico", cursive;
    color: #f9dbbd;
    background: transparent;
    border: none;
    border-radius: 0;
    text-decoration: none;
    text-align: right;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .header-content {
    width: 95%;
  }

  .site-logo h1 {
    font-size: 25px;
  }
}
/* header end */

/* main start */
.main {
  flex: 1;
  width: 70%;
  margin: 0px auto;
  background-color: #fdecd7;
}

@media (max-width: 768px) {
  .main {
    width: 90%;
  }
}

/* main end */

/* footer start */
.footer-container {
  background-color: #0d0628;
  color: #f9dbbd;
  text-align: center;
  font-size: 1.1em;
  width: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
}

.footer-copy {
  margin: 0px 0px 15px 0px;
}

.footer-link-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-link-list li a {
  font-size: 1rem;
  color: #f9dbbd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link-list li a:hover {
  color: #fca17d;
}

@media (max-width: 768px) {
  .footer-copy {
    font-size: 15px;
    margin: 0px 0px 10px 0px;
  }
  .footer-link-list li a {
    font-size: 15px;
  }
}
/* footer end */

/* <<<<< index template >>>>>*/

.hero {
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  gap: 20px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.hero-image {
  max-height: 168px;
  height: auto;
}

.logo-wrapper h1 {
  font-family: "Pacifico", cursive;
  font-size: clamp(2.5rem, 6vw, 6rem);
  color: white;
  text-shadow: -3px -3px 2px black, 3px -3px 2px black, -3px 3px 2px black,
    3px 3px 2px black;
  margin: 0;
}

.transpose-container,
.index-container {
  padding: 20px 40px;
}

/* input start */
.search-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
}

#search-input {
  width: 100%;
  max-width: 500px;
  height: 30px;
  padding: 10px 20px;
  border: 2px solid black;
  border-radius: 10px;
  background-color: white;
  font-size: 16px;
  color: black;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  caret-color: black;
  margin: 0;
}

#search-input:focus {
  outline: none;
  border-color: black;
}

@media (max-width: 768px) {
  .hero {
    min-height: 40vh;
  }

  .hero-image {
    max-height: 90px;
  }

  .logo-wrapper h1 {
    font-size: 50px;
  }

  #search-input {
    font-size: 14px;
  }
  .search-container {
    width: 80%;
  }
}

/* song list */
#song-list {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  right: 0;
  display: none;
  max-height: 300px;
  width: 100%;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
}

#song-list li {
  padding: 12px 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#song-list li:hover {
  background-color: #fdecd7;
}

#song-list li a {
  display: block;
  color: #0d0628;
  text-decoration: none;
  font-size: 15px;
}

#song-list li:last-child {
  border-bottom: none;
}

#song-list .song-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

#song-list .song-link:hover {
  background: #f7f7f7;
}

#song-list .no-results {
  padding: 12px 18px;
  color: #666;
  font-style: italic;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 8px;
  margin-left: -1px;
  height: 98%;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  margin: 3px 2px 3px 0px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* scrollbar end */

/* input end */

/* song list start */
.song-link {
  display: block;
  background-color: #fdecd7;
  border: 1px solid #fca17d;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 10px;
  color: #0d0628;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-link a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
}

.song-link a:hover {
  text-decoration: underline;
  font-weight: lighter;
}

.song-link:hover {
  background-color: #f9dbbd;
  color: #000;
  transform: translateY(-1px);
}
/* song list end */

/* tags and songs start */

/* container */
.songs-container {
  width: 75%;
  background: #fdecd7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 20px auto;
}

.multi-container {
  width: 75%;
  margin: 20px auto;
}
.songs-section {
  width: 93%;
  height: 93%;
  padding: 3.5%;
}

.tags-section {
  width: 90%;
  padding: 5%;
  background: #fdecd7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.latest-section {
  width: 90%;
  padding: 5%;
  background: #fdecd7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.75rem;
}

.subscribe-section,
.tags-section,
.latest-section {
  flex: 1;
}
.main-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 15px;
  width: 100%;

  align-items: flex-start;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

.subscribe-section {
  width: 90%;
  padding: 5%;
  background: #fdecd7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
}
.subscribe-button {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.subscribe-button:hover {
  background-color: #cc0000;
}

@media (max-width: 900px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  .left-column {
    order: 2;
  }
  .right-column {
    order: 1;
  }
  .multi-container,
  .songs-container {
    width: 90%;
    margin: 10px auto;
  }
  .songs-section {
    width: 90%;
    padding: 5%;
  }
}

/* tiles grid */
.tags-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}

.section-title-wrapper::before,
.section-title-wrapper::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #fca17d;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0d0628;
  margin: 0;
  white-space: nowrap;
}

.tag-song-tile a::first-letter {
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .tags-grid,
  .songs-grid {
    grid-template-columns: 1fr;
  }
  .section-title-wrapper {
    gap: 20px;
  }
  .section-title {
    font-size: 20px;
  }
}

/* tags end  */
/* <<<<< index template end >>>>>*/

/* <<<<< song template >>>>>*/

#belong-to-songbook {
  display: none;
  background: transparent;
  color: #7a5c4b;
  font-size: 0.9rem;
  font-style: italic;
  margin: 15px 0px 0px 0px;
}

#belong-to-songbook a {
  color: #e76f51;
  font-weight: 500;
  text-decoration: none;
  margin-left: 4px;
}

#belong-to-songbook a:hover {
  text-decoration: underline;
}

/* << toolbar start >> */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px 8px 0px;
}

/* actions start */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
/* actions end  */

/* fullscreen start */
#presentation-container {
  display: none;
}

#presentation-container:fullscreen {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: black;
  color: white;
  height: 100%;
  box-sizing: border-box;
  padding: 32px 24px 0;
}

.slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 95vw;
}

.fs-line {
  white-space: normal;
  text-align: center;
  max-width: 95vw;
  line-height: 1.15;
  text-wrap: balance;
  hyphens: auto;
}

.slide {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  width: 100vw;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.slide.active {
  display: flex;
}

/* stopka */
.slide-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 2rem;
  color: #bbb;
  pointer-events: none;
}

.slide-title {
  flex: 1;
  text-align: center;
  font-style: italic;
}

.slide-counter {
  position: absolute;
  right: 20px;
  font-size: 2rem;
}

/* iframe do druku */
.hidden-iframe {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border: 0;
}
/* fullscreen end */

/* settings start */
.settings-container {
  display: flex;
  position: relative;
  justify-content: flex-end;
  padding: 8px;
}

.settings-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #a23c00;
  font-weight: 600;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  margin: 10px 0px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.1s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.settings-button:hover,
.settings-button.active {
  background-color: #da627d;
  transform: translateY(-1px);
}

.optionDropDown {
  display: none;
  position: absolute;
  right: 8px;
  top: 60px;
  width: 250px;
  background-color: white;
  border: 1px solid #a23c00;
  color: #a23c00;
  box-shadow: 0 6px 24px rgba(64, 89, 173, 0.25);
  border-radius: 5px;
  z-index: 100;
}

.optionDropDown.visible {
  display: block;
}

.settings-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.settings-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  transition: background-color 0.25s ease, transform 0.1s ease;
}

.settings-list-item:hover {
  background-color: #fdecd7;
}

.settings-list-item.first,
.settings-list-item.first:hover {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.settings-list-item.last,
.settings-list-item.last:hover {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.setting-label {
  flex: 1;
}

.setting-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ctrl-btn {
  border: 1px solid #ccc;
  color: #a23c00;
  background: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  transition: background-color 0.25s ease, transform 0.1s ease;
}

.ctrl-display {
  display: inline-block;
  min-width: 24px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px 4px;
}

.ctrl-btn:hover {
  background: #a23c00;
  color: #ffffff;
}

.settings-list-item {
  cursor: default;
}
@media (max-width: 600px) {
  #belong-to-songbook {
    font-size: 0.8em;
  }
  .toolbar {
    padding: 8px 0px;
  }
  .settings-button {
    padding: 6px 12px;
    font-size: 14px;
  }
}
/* settings end */

/* << toolbar end >> */

/* song lyrics start */
.song-container {
  padding: 20px 40px;
}
.song-lyrics {
  margin-bottom: 40px;
}
.line {
  display: flex;
  align-items: flex-end;
  height: 3em;
}
.smaller-line {
  height: 2em !important;
}
.chord-lyric {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.chord {
  position: absolute;
  top: -1.2em;
  left: 0;
  font-weight: bold;
}
/* song lyrics end */

/* song header start */
.song-author {
  margin: 8px 0px;
}
/* song header end */

/* tags */
.song-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: auto;
}

.tag {
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 6px;
  background-color: #fdecd7;
  border: 1px solid #a23c00;
  font-weight: bold;
  white-space: nowrap;
  color: #a23c00;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tag:hover {
  background-color: #a23c00;
  color: #fdecd7;
}

/* tags end */

.on-mobile {
  display: none;
}
.recommended {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 0px;
}

.iframe-video {
  position: relative;
  width: 560px;
  max-width: 100%;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.video-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: red;
  border-radius: 14% / 24%;
}

.play-button::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 12px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}

@media (max-width: 600px) {
  .song-lyrics {
    font-size: 13px;
  }
  .song-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .no-mobile {
    display: none;
  }
  .on-mobile {
    display: block;
  }
  .recommended {
    grid-template-columns: 1fr;
  }
}

/* <<<<< song template end >>>>>*/

.hidden {
  display: none !important;
}

/* <<<<< songbook template start >>>>> */
.moj-spiewnik-container {
  padding: 20px 40px;
}

.songbook-header {
  color: black;
}

.songbook-buttons-container {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

/* lista piosenek */
.songbook-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* wiersz */
.songbook-item {
  position: relative;
}

/* link */
.songbook-link {
  display: block;
  background-color: #fdecd7;
  border: 1px solid #fca17d;
  border-radius: 6px;
  padding: 10px 44px 10px 14px;
  color: #0d0628;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
  padding-right: 100px;
}

.songbook-link:hover {
  background-color: #f9dbbd;
  color: #000;
  transform: translateY(-1px);
}

/* kontener na przyciski */
.song-controls {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
  align-items: center;
}

/* przyciski */
.song-move-up,
.song-move-down,
.song-remove {
  position: static;
  transform: none;
}

/* ikony w przyciskach */
.song-remove svg,
.song-move-up svg,
.song-move-down svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* kosz */
.song-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  color: #dc3545;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.song-remove:hover,
.song-remove:focus {
  color: #fdecd7;
  background-color: #dc3545;
}

/* strzalki */
.song-move-up,
.song-move-down {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  color: #a23c00;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.song-move-up:hover,
.song-move-down:hover,
.song-move-up:focus,
.song-move-down:focus {
  color: #fdecd7;
  background-color: #a23c00;
}

@media (max-width: 768px) {
  .moj-spiewnik-container {
    padding: 10px 20px;
  }

  .songbook-header {
    font-size: 28px;
  }

  .settings-button {
    margin: 0px;
  }
  .settings-container {
    margin-top: 10px;
  }
}

@media (max-width: 500px) {
  .songbook-buttons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .songbook-buttons-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
/* modal */
#songbook-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* formularz */
#songbook-form {
  background: #fdecd7;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* dane wejsciowe */
#songbook-form input,
#songbook-form textarea {
  padding: 10px 12px;
  border: 1px solid #a23c00;
  border-radius: 6px;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  resize: vertical;
  outline: none;
}

#songbook-form input:focus,
#songbook-form textarea:focus {
  border: 2px solid #a23c00;
  padding: 9px 11px;
}

/* przyciski */
#songbook-form .actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
/* <<<<< songbook template end >>>>> */

/* transpose template start */
.transpose-container {
  padding: 20px 40px;
}

.chord-transposer {
  width: 90%;
  margin: 48px auto;
  background: #f9dbbd;
  border-radius: 10px;
  box-shadow: 0 2px 18px 0 rgba(44, 62, 80, 0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.chord-section-title {
  font-size: 1.22rem;
  color: #0d0628;
  margin-bottom: 10px;
  margin-top: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.chord-textarea {
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  margin: 0 auto;
  width: 95%;
  border-radius: 9px;
  border: 1.4px solid #fca17d;
  padding: 12px 13px;
  font-size: 1.07rem;
  resize: vertical;
  background: #f8fafb;
  min-height: 50px;
}

.chord-textarea:focus {
  outline: none;
  background: #fff;
}

.chord-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.chord-label {
  font-size: 1.04rem;
  color: #0d0628;
  font-weight: 500;
  margin-bottom: 2px;
}

.chord-transpose-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0px auto;
}

.chord-btn {
  background: #fdecd7;
  color: #0d0628;
  border: none;
  border-radius: 7.5px;
  padding: 7px 16px;
  font-size: 1.01rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 0.5px 2.5px rgba(44, 62, 80, 0.03);
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}

.chord-btn:hover,
.chord-btn:focus {
  background: #fdbca3;
  color: #0d0628;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  outline: none;
}

.chord-btn.active {
  background: #fca17d;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(44, 62, 80, 0.09);
}

.chord-output-section {
  margin-top: 20px;
  border-top: 2px dashed #fca17d;
  padding-top: 20px;
}

.chord-output {
  white-space: pre-wrap;
  font-size: 1.09rem;
  color: #133249;
  font-family: "Fira Mono", "Consolas", monospace;
  min-height: 34px;
  margin: 0;
}

@media (max-width: 680px) {
  .chord-transposer {
    padding: 19px 4vw 17px 4vw;
    max-width: 98vw;
  }
  .chord-textarea,
  .chord-output {
    font-size: 1rem;
  }
  .chord-btn {
    padding: 6px 12px;
    font-size: 0.97rem;
  }
  .transpose-container {
    padding: 20px;
  }
  .transpose-container h1 {
    font-size: 28px;
  }
  .chord-section-title {
    font-size: 18px;
  }
  .chord-textarea {
    width: 90%;
  }
  .actions {
    margin-top: 10px;
  }
}

/* transpose template end */

/* <<<<< contact template start >>>>> */
.contact-container {
  padding: 20px 40px;
}

.contact-box {
  width: 90%;
  max-width: 700px;
  margin: 48px auto;
  background: #f9dbbd;
  border-radius: 10px;
  box-shadow: 0 2px 18px 0 rgba(44, 62, 80, 0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.contact-container h1 {
  font-size: 1.7rem;
  color: #0d0628;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.contact-box p {
  font-size: 1.08rem;
  color: #0d0628;
  font-weight: 500;
  margin: 0;
}

.contact-email {
  font-size: 1.1rem;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 9px;
  border: 1.4px solid #fca17d;
  background: #fdecd7;
  color: #c15000;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.contact-email:hover,
.contact-email:focus {
  background: #fdbca3;
  color: #0d0628;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  outline: none;
}

@media (max-width: 680px) {
  .contact-container {
    padding: 20px;
  }

  .contact-box {
    padding: 20px 5vw;
    gap: 20px;
  }

  .contact-container h1 {
    font-size: 1.4rem;
  }

  .contact-box p {
    font-size: 1rem;
  }

  .contact-email {
    font-size: 1rem;
    padding: 9px 16px;
  }
}

/* <<<<< contact template end >>>>> */

/* <<<<< tag template start >>>>> */
.hero.tags {
  height: 25vh;
  min-height: 200px;
}

.hero.tags .overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-title {
  font-family: "Pacifico", cursive;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: white;
  text-shadow: -3px -3px 2px black, 3px -3px 2px black, -3px 3px 2px black,
    3px 3px 2px black;
  margin: 0;
}

.tag-songs {
  width: 70%;
  margin: 0px auto;
  padding: 20px 40px;
  background: #fdecd7;
  min-height: 60vh;
}

/* <<<<< tag template end >>>>> */

.help-section {
  min-height: 60vh;
  background: #f9dbbd;
  padding: 15px 0px;
}

.help-section.index {
  min-height: 40vh;
  padding: 20px 0px;
}

.row-addition {
  font-weight: bold;
  margin-left: 10px;
}

/* Kategorie */
.category-tile {
  display: block;
  background: #f9dbbd;
  border: 1px solid #fca17d;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  color: #0d0628;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.category-tile:hover {
  background: #fca17d;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}


/* Piosenki */
.song-tile {
  display: block;
  background: #fdecd7;
  border: 1px solid #fca17d;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  color: #0d0628;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.song-tile:hover {
  background: #f9dbbd;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}