:root {
  --default-font: "Times New Roman", Times, serif;
  --heading-font: "Allura", "Montserrat", "Poppins", sans-serif;
  --nav-font: "Allura", "Montserrat", "Poppins", sans-serif;

  --background-color: #f7eef8;
  --default-color: #58135e;
  --heading-color: #58135e;
  --accent-color: #a023ab;
  --accent-color-dark: #58135e;

  --surface-color: #fff;
  --contrast-color: #fff;
  --card-shadow: 0 2px 16px rgba(88, 19, 94, 0.06);

  --border-radius: 1rem;

  --nav-bg: linear-gradient(
    180deg,
    var(--accent-color-dark) 10%,
    var(--accent-color) 90%
  );
  --nav-color: #ffeaea;
  --navbar-link-hover-bg: rgba(160, 35, 171, 0.5);
  --dropdown-shadow: 0 2px 16px rgba(88, 19, 94, 0.08);
}

/* #region BASE */
html,
body {
  height: 100%;
  min-height: 100%;
}

body {
  color: var(--default-color);
  background-image: url("../img/background.webp");
  background-size: cover;
  background-attachment: fixed;
  font-family: var(--default-font);
  font-size: 1.05rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

.keywords {
  color: rgba(0, 0, 0, 0); 
  font-size: 1px
}
/* #endregion */

/* #region PRELOADER */
#preloader {
  background: rgba(246, 248, 250, 0.92);
  z-index: 2000;
  transition: opacity 0.4s;
}
#preloader .spinner-border {
  color: var(--accent-color) !important;
  width: 3rem;
  height: 3rem;
  animation: spinner-grow 1s linear infinite;
}
@keyframes spinner-grow {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
/* #endregion */

/* #region NAV */
nav.navbar.py-2.border-bottom.w-100 {
  background: var(--nav-bg) !important;
  color: var(--nav-color) !important;
  font-family: var(--nav-font) !important;
  width: 100%;
  box-sizing: border-box;
  z-index: 1050;
}

nav.navbar .container-fluid {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

nav.navbar .navbar-brand {
  color: var(--nav-color) !important;
  font-family: var(--nav-font) !important;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.5rem;
  transition: color 0.18s;
}
nav.navbar .navbar-brand img {
  height: 32px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
nav.navbar .navbar-brand span {
  font-size: 2.25rem;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--nav-color);
}

nav.navbar .navbar-toggler {
  border: none;
  background: transparent;
  color: var(--nav-color) !important;
  font-size: 1.7rem;
  margin-left: auto;
  transition: color 0.18s;
}
nav.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
nav.navbar .navbar-toggler:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

nav.navbar .navbar-collapse {
  width: 100%;
}

nav.navbar .navbar-nav {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2rem;
}

nav.navbar .nav-link {
  color: var(--nav-color) !important;
  font-family: var(--nav-font) !important;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: color 0.18s, background 0.18s;
}
nav.navbar .nav-link.active,
nav.navbar .nav-link:focus,
nav.navbar .nav-link:hover {
  color: #fff !important;
  background: var(--navbar-link-hover-bg);
}

nav.navbar .dropdown-menu {
  background: var(--nav-bg);
  color: var(--nav-color) !important;
  border-radius: 0.75rem;
  box-shadow: var(--dropdown-shadow);
  border: none;
  margin-top: 0.3rem;
  min-width: 220px;
  padding: 0.5rem 0;
  right: 0;
  left: auto;
}
.custom-nested-dropdown > .dropdown-menu {
  right: 100% !important;
  left: auto !important;
}
nav.navbar .dropdown-divider {
  border-top: 2px solid var(--contrast-color);
  opacity: 0.35;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
nav.navbar .dropdown-item {
  color: var(--nav-color) !important;
  font-size: 1.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  transition: background 0.18s, color 0.18s;
}
nav.navbar .dropdown-item:hover,
nav.navbar .dropdown-item:focus {
  background: rgba(160, 35, 171, 0.08);
  color: var(--accent-color);
}

nav.navbar .badge {
  font-size: 1rem;
  vertical-align: middle;
  margin-left: 0.2rem;
}

nav.navbar .dropdown-menu .dropdown-item.active,
nav.navbar .dropdown-menu .dropdown-item.active:focus,
nav.navbar .dropdown-menu .dropdown-item.active:hover {
  color: #fff !important;
  background: var(--navbar-link-hover-bg) !important;
  font-weight: 600;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(153, 0, 0, 0.08);
}

/* Kiemelő menüpont */
.navbar-nav .nav-link.fw-bold {
  border: 1px solid rgba(160, 35, 171, 0.15);
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(160, 35, 171, 0.5);
  padding: 0.4rem 0.8rem;
}
.custom-archiv-dropdown > .dropdown-menu {
  padding: 0.7rem 0.2rem;
  border-radius: 1rem;
  min-width: 240px;
  background: var(--nav-bg);
  color: var(--nav-color) !important;
}

.custom-archiv-dropdown > .dropdown-menu > li > .dropdown-item {
  color: var(--nav-color) !important;
  font-size: 1.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  transition: background 0.18s, color 0.18s;
}

.custom-archiv-dropdown > .dropdown-menu > li > .dropdown-item:hover,
.custom-archiv-dropdown > .dropdown-menu > li > .dropdown-item:focus {
  background: rgba(160, 35, 171, 0.08);
  color: var(--accent-color);
}

.custom-nested-dropdown > .dropdown-toggle {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--default-color);
  background: none;
  border-radius: 0.5rem;
  padding-right: 2.2em;
  position: relative;
  border-top: none !important;
  box-shadow: none !important;
}

.custom-nested-dropdown > .dropdown-toggle::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1em;
  color: var(--accent-color);
  pointer-events: none;
  border-top: none !important;
  box-shadow: none !important;
}

.custom-nested-dropdown > .dropdown-toggle:hover,
.custom-nested-dropdown > .dropdown-toggle:focus {
  background: rgba(153, 0, 0, 0.08);
  color: var(--accent-color);
  border-top: none !important;
  box-shadow: none !important;
}

.custom-nested-dropdown > .dropdown-menu {
  left: auto !important;
  right: 100%;
  top: 0;
  margin-left: 0;
  margin-right: 0.2rem;
  min-width: 220px;
  border-radius: 0.75rem;
  box-shadow: var(--dropdown-shadow);
  background: var(--surface-color);
  display: none;
  z-index: 1051;
}

.custom-nested-dropdown:hover > .dropdown-menu,
.custom-nested-dropdown:focus-within > .dropdown-menu,
.custom-nested-dropdown.show > .dropdown-menu {
  display: block;
}

.custom-nested-dropdown > .dropdown-menu > li > .dropdown-item {
  color: var(--nav-color) !important;
  font-size: 1.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  transition: background 0.18s, color 0.18s;
}

.custom-nested-dropdown > .dropdown-menu > li > .dropdown-item:hover,
.custom-nested-dropdown > .dropdown-menu > li > .dropdown-item:focus {
  background: rgba(160, 35, 171, 0.08);
  color: var(--accent-color);
}

nav.navbar .dropdown-menu .nav-item.dropdown.active > .dropdown-toggle,
nav.navbar .dropdown-menu .nav-item.dropdown.active > .dropdown-toggle:focus,
nav.navbar .dropdown-menu .nav-item.dropdown.active > .dropdown-toggle:hover {
  color: #fff !important;
  background: var(--navbar-link-hover-bg) !important;
  font-weight: 600;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(153, 0, 0, 0.08);
}
.custom-nested-dropdown > .dropdown-menu > li.active > .dropdown-item,
.custom-nested-dropdown > .dropdown-menu > li.active > .dropdown-item:focus,
.custom-nested-dropdown > .dropdown-menu > li.active > .dropdown-item:hover {
  color: #fff !important;
  background: var(--navbar-link-hover-bg) !important;
  font-weight: 600;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(153, 0, 0, 0.08);
}

/* #endregion */
/* #region HEADER */
header {
  background: url("../img/header.webp") center/cover no-repeat;
  color: var(--contrast-color);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.header-image {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 70%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(153, 0, 0, 0.13);
  opacity: 0.92;
  z-index: 2;
}

.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(153, 0, 0, 0.45);
  z-index: 2;
  pointer-events: none;
}

header.header-quote {
  background: url("../img/header.webp") center/cover no-repeat;
  color: var(--contrast-color);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

header.header-quote .blockquote {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 3rem;
  text-shadow: 0 2px 8px rgba(88, 19, 94, 0.15);
  font-weight: 900;
}

header.header-quote .blockquote-footer {
  color: #fff;
  opacity: 0.85;
  font-size: 1.1rem;
  position: absolute;
  right: 5%;
  bottom: 5%;
  text-align: right;
  z-index: 2;
}

header.header-quote .header-quote-content {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
}
/* #endregion */

/* #region MAIN */
main {
  flex: 1 0 auto;
  width: 100%;
  background: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}

main .container {
  flex: 1 0 auto;
  background: rgba(255, 255, 255, 0.68);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 32px rgba(153, 0, 0, 0.07);
  padding: 2.2rem 1.2rem 2.2rem 1.2rem;
  margin-top: 2.2rem;
  margin-bottom: 2.2rem;
  max-width: 90vw 1100px;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.01em;
}

main p {
  margin-bottom: 1.25rem;
  color: var(--default-color);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: justify;
}

main .lead {
  font-size: 1.75rem;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  letter-spacing: 0.01em;
}

main .blockquote {
  background: rgba(255, 245, 245, 0.82);
  border-radius: 0.75rem;
  padding: 1.2rem 1.5rem;
  font-style: italic;
  box-shadow: 0 2px 12px rgba(153, 0, 0, 0.06);
  border-left: 0.35rem solid var(--accent-color);
  margin-bottom: 2rem;
}

main .list-group-item {
  background: transparent;
  border: none;
  font-size: 1.05rem;
  color: var(--default-color);
}

main .text-danger {
  color: var(--accent-color) !important;
}

main .fw-bold {
  font-weight: 700 !important;
}

main .fw-semibold {
  font-weight: 600 !important;
}

main .h4 {
  font-size: 2rem;
  font-family: var(--heading-font);
  color: var(--accent-color);
  margin-bottom: 1rem;
}

main .display-5 {
  font-size: 5rem;
}

main #now {
  text-align: center;
  color: rgb(204, 0, 0);
  font-weight: bold;
  font-size: 1.5rem;
  margin: 2vw 1vw;
}
main .now-divider {
  border: none;
  border-top: 2.5px solid rgb(204, 0, 0);
  width: 85%;
  margin: 2vw auto 2vw auto;
  opacity: 0.15;
  border-radius: 2px;
}

main .quote-section {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px rgba(88, 19, 94, 0.1);
  padding: 2.2rem 2rem 1.5rem 2rem;
  margin-bottom: 2.5rem;
  border: 1.5px solid rgba(160, 35, 171, 0.08);
  transition: box-shadow 0.18s;
}
main .quote-section:hover {
  box-shadow: 0 4px 32px rgba(88, 19, 94, 0.83);
}
main .quote-title {
  font-size: 2rem;
  font-family: var(--heading-font);
  color: var(--accent-color-dark);
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
main .quote-block {
  background: linear-gradient(
    90deg,
    rgba(247, 238, 248, 0.95) 80%,
    rgba(160, 35, 171, 0.07) 100%
  );
  border-radius: 0.85rem;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  font-style: italic;
  box-shadow: 0 2px 12px rgba(88, 19, 94, 0.06);
  border-left: 0.4rem solid var(--accent-color);
  margin-bottom: 2rem;
  color: var(--default-color);
  font-size: 1.18rem;
  line-height: 1.8;
}
main .quote-block p {
  margin-bottom: 1.1rem;
  color: inherit;
  font-size: inherit;
  text-align: justify;
}
main .quote-author {
  text-align: right;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
main .text-end p {
  margin-top: 0.5rem;
  color: var(--default-color);
  line-height: 1.6;
  text-align: right;
  font-weight: bold;
}
/* #endregion */

/* #region HERO */
.hero-section {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 32px rgba(88, 19, 94, 0.1);
  padding: 2.5rem 2rem 2.5rem 2rem !important;
  margin-top: 2.2rem;
  margin-bottom: 2.2rem;
  border: 1.5px solid rgba(160, 35, 171, 0.1);
  transition: box-shadow 0.18s;
  position: relative;
  text-align: center;
}
.hero-section:hover {
  box-shadow: 0 6px 36px rgba(88, 19, 94, 0.18);
}
.hero-section h1 {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 3rem !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}
.hero-section .hero-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  max-width: 800px;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(88, 19, 94, 0.8) !important;
}
/* #endregion */

/* #region FEATURE CARDS */
.feature-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
  height: 100%;
}
.feature-link:focus,
.feature-link:hover {
  text-decoration: none !important;
  color: inherit !important;
}
.card {
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  border: none;
  background: var(--surface-color);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card-cover {
  background-size: cover;
  background-position: center;
  min-height: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#custom-cards h3 {
  color: #fff !important;
  font-size: 2rem !important;
  letter-spacing: 0.04em !important;
  line-height: 1.25 !important;
}
.custom-feature-card {
  border-radius: 2rem !important;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(34, 46, 58, 0.15) !important;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.custom-feature-card:hover {
  box-shadow: 0 12px 36px rgba(34, 46, 58, 0.22) !important;
  transform: translateY(-4px) scale(1.03);
}
.feature-film {
  background-image: url("../img/features-film.webp");
}
.feature-date {
  background-image: url("../img/features-date.webp");
}
.feature-facebook {
  background-image: url("../img/features-facebook.webp");
}
.card-overlay {
  background: linear-gradient(
    120deg,
    rgba(88, 19, 94, 0.85) 60%,
    rgba(160, 35, 171, 0.65) 100%
  );
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 95%;
}

.card-content h3 {
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: left;
  margin: 0 0 0.5rem 0;
  width: 100%;
  word-break: break-word;
}
.card-content p,
.card-content .text-light {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: left;
  margin: 0;
  width: 100%;
  word-break: break-word;
}
/* #endregion */

/* #region ABOUT SECTION */
.about-section .about-img {
  max-width: 420px;
  width: 95%;
  margin: 0 auto;
  display: block;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: none;
  border: none;
}

.about-section .about-left {
  background: var(--background-color);
  border-radius: 1.25rem;
  box-shadow: 0 4px 18px rgba(88, 19, 94, 0.07);
  padding: 1.6rem 1.2rem;
  margin-bottom: 1.2rem;
}
.about-section .list-group {
  margin-top: 1rem;
  gap: 0.375rem;
  padding: 0;
}
.about-section .list-group .list-group-item {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(160, 35, 171, 0.06);
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--default-color);
  font-size: 0.98rem;
}
.about-section .list-group .list-group-item a {
  color: var(--accent-color-dark) !important;
  text-decoration: none;
}
.about-section .list-group .list-group-item a:hover,
.about-section .list-group .list-group-item a:focus {
  color: var(--accent-color);
  text-decoration: underline;
  text-decoration-color: var(--accent-color) !important;
  font-weight: bold;
}
.about-section .col-lg-6:last-of-type {
  background: rgba(255, 255, 255, 0.98);
  padding: 1.6rem;
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(34, 46, 58, 0.06);
}
.about-section h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}
.about-section .lead {
  margin-bottom: 1rem;
  color: #495057;
  font-weight: bold;
}
.about-section .text-muted p {
  margin-bottom: 0.5rem;
  color: #495057;
  line-height: 1.6;
  text-align: justify;
}
.about-section .list-group-item {
  background: transparent;
  border: none;
  color: var(--default-color);
  font-size: 1rem;
}
.about-section .list-group-item i {
  font-size: 1.2rem;
  vertical-align: middle;
}
/* #endregion */

/* #region FOTOALBUM */
main .album-section,
main .album-section .container {
  background: none !important;
}

main .album-card {
  border-radius: 1.1rem;
  border: none;
  background: #fff;
  box-shadow: 0 2px 16px rgba(153, 0, 0, 0.08);
  transition: box-shadow 0.18s, transform 0.18s;
}
main .album-card:hover {
  box-shadow: 0 6px 32px rgba(153, 0, 0, 0.18);
  transform: translateY(-4px) scale(1.02);
}
main .album-card .card-img-top {
  /* border-radius: 1.1rem 1.1rem 0 0; */
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  min-height: 300px;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: 1.1rem;
  background: #fff5f5;
  box-shadow: 0 2px 12px rgba(153, 0, 0, 0.09);
  display: block;
}
/* main .album-card .card-body {
  padding: 1.1rem 1rem 0.9rem 1rem;
}
main .album-card .card-text {
  color: var(--default-color);
  font-size: 1.08rem;
  text-align: center;
  font-family: var(--default-font);
  font-weight: 500;
  margin-bottom: 0;
} */

.modal-content.bg-transparent {
  background: rgba(30, 0, 40, 0.92) !important;
  border-radius: 1.2rem;
  box-shadow: 0 8px 48px rgba(153, 0, 0, 0.18);
  padding: 1.5rem 0 1rem 0;
}
/* #endregion */

/* #region FOOTER */
.footer {
  position: relative;
  background: url("../img/footer.webp") center/cover no-repeat;
  color: var(--nav-color);
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;

  font-family: var(--default-font) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;

  flex-shrink: 0;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--nav-bg);
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer * {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.footer h5,
.footer .fs-5.fw-bold {
  color: #fff !important;
  font-family: var(--heading-font) !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
}
.footer a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.16s ease, opacity 0.16s ease;
}
.footer a:hover,
.footer a:focus {
  color: #fff;
  opacity: 0.9;
  text-decoration: underline;
}
.footer .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.05rem;
  transition: background 0.18s, transform 0.12s;
}
.footer .social:hover,
.footer .social:focus {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}
.footer .company-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.1;
}
.footer .company-info .company-name {
  font-weight: 600;
  letter-spacing: 0.2px;
}
.footer .company-info .tax-number {
  color: rgba(255, 255, 255, 0.75);
}
.footer .company-info span + span::before {
  content: "•";
  display: inline-block;
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.22);
}
.footer .border-top {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  margin-top: 0.1rem;
  padding-top: 0.1rem;
}
.footer small,
.footer .small {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}
/* #endregion */

/* #region SCROLL TOP BUTTON */
#scroll-top {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 110, 216, 0.12);
  border: none;
  transition: background 0.2s, transform 0.2s;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}
#scroll-top:hover {
  background: var(--accent-color-dark);
  color: #fff;
  transform: translateY(-4px) scale(1.08);
  opacity: 1;
}
#scroll-top:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
/* #endregion */

/* #region ACCESSIBILITY */
[tabindex="0"]:focus,
nav.navbar .navbar-toggler:focus,
nav.navbar .navbar-brand:focus,
nav.navbar .nav-link:focus-visible,
.card a:focus-visible,
.custom-feature-card:focus-within,
.custom-feature-card a:focus-visible,
#custom-cards a:focus-visible,
#scroll-top:focus,
#scroll-top:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

.about-section a:focus-visible,
.about-section .list-group .list-group-item:focus-within,
.about-section .list-group .list-group-item a:focus-visible {
  outline: 3px solid rgba(160, 35, 171, 0.18);
  outline-offset: 3px;
}

.footer a:focus-visible,
.footer .social:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.12);
  outline-offset: 3px;
}
/* #endregion */

/* #region MEDIA */
/* <= SM (575px) */
@media (max-width: 575px) {
  :root {
    --border-radius: 1rem;
    --card-shadow: 0 1px 8px rgba(88, 19, 94, 0.08);
  }

  body {
    font-size: 0.98rem;
    line-height: 1.55;
    padding: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.7rem;
  }

  #preloader .spinner-border {
    width: 2.2rem;
    height: 2.2rem;
  }

  nav.navbar.py-2.border-bottom.w-100 {
    width: 100vw !important;
  }
  nav.navbar .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }
  nav.navbar .navbar-brand {
    font-size: 2.5rem !important;
    margin: auto 0;
  }
  nav.navbar .nav-link {
    font-size: 1.2rem !important;
    padding: 0.7rem 1rem !important;
  }
  nav.navbar .dropdown-item {
    font-size: 1.15rem !important;
  }
  nav.navbar .badge {
    font-size: 1.1rem !important;
  }

  nav.navbar .dropdown-menu {
    max-height: 60vh;
    overflow-y: auto;
  }

  .custom-nested-dropdown > .dropdown-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-right: 0;
    margin-top: 0.2rem;
    box-shadow: none;
    min-width: 180px;
    max-height: 60vh;
    overflow-y: auto;
  }

  header.header-quote {
    min-height: 140px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0 0 1rem 1rem;
    padding: 1rem 0;
    box-sizing: border-box;
  }
  header.header-quote .blockquote {
    font-size: 2rem;
    text-align: center;
    padding: 0.2rem 0.1rem;
  }
  header.header-quote .blockquote-footer {
    font-size: 0.75rem;
  }

  main .container {
    padding: 5vw !important;
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
    width: 90vw;
  }
  main .lead {
    font-size: 2rem;
  }
  main .h4 {
    font-size: 2.5rem;
  }
  main .blockquote {
    padding: 0.7rem 0.7rem;
    font-size: 0.97rem;
  }
  main .display-5 {
    font-size: 3.5rem;
  }
  main .testimonial-card-title {
    font-size: 1.5rem;
  }
  main .quote-section {
    width: 95vw !important;
    margin: auto;
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
    margin-bottom: 1.2rem;
  }
  main .quote-title {
    font-size: 2rem;
  }
  main .quote-block {
    font-size: 0.98rem;
    padding: 0.7rem 0.2rem 0.7rem 0.7rem;
  }
  main .quote-block p {
    padding: 1vw !important;
  }
  main .quote-author {
    font-size: 1.3rem;
  }

  .card-cover,
  .custom-feature-card {
    min-height: 180px;
    border-radius: 1rem !important;
    width: 85vw !important;
    max-width: 85vw !important;
    margin: auto;
  }
  .card-content {
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    max-width: 100%;
  }
  .card-content h3 {
    font-size: 0.45rem;
    margin-bottom: 0.3rem;
  }
  .card-content p,
  .card-content .text-light {
    font-size: 0.95rem;
  }

  .about-section .about-img {
    max-width: 65vw !important;
  }
  .about-section .about-left,
  .about-section .col-lg-6:last-of-type {
    width: 95vw !important;
    margin: auto;
    background: var(--background-color);
    border-radius: 1.25rem;
    box-shadow: 0 4px 18px rgba(88, 19, 94, 0.07);
    padding: 1.6rem 1.2rem;
    margin-bottom: 1.2rem;
  }
  .about-section .about-right {
    width: 95vw !important;
    margin: auto;
  }
  .about-section h2 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }
  .about-section .lead {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    text-align: left !important;
  }
  .about-section .text-muted p {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 0.3rem;
    text-align: justify;
  }
  .about-section .text-end p {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 0.3rem;
    text-align: right;
  }
  .about-section .list-group {
    gap: 0.2rem;
  }
  .about-section .list-group .list-group-item {
    font-size: 0.95rem;
    padding: 0.4rem 0.5rem;
    border-radius: 0.5rem;
  }

  .footer {
    font-size: 0.85rem !important;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    background-size: cover;
  }
  .footer h5,
  .footer .fs-5.fw-bold {
    font-size: 1.3rem !important;
    margin-bottom: auto;
    text-align: left !important;
  }
  .footer .company-info {
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 0.8rem;
  }
  .footer .social {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .footer .border-top {
    margin-top: 0.05rem;
    padding-top: 0.05rem;
  }
  .footer small,
  .footer .small {
    font-size: 0.75rem;
  }

  #scroll-top {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    right: 8px;
    bottom: 8px;
  }
}

/* >= SM (576) and <= LG (991.98px) */
@media (min-width: 576px) and (max-width: 991.98px) {
  :root {
    --border-radius: 1rem;
    --card-shadow: 0 2px 12px rgba(88, 19, 94, 0.08);
  }

  body {
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  }

  #preloader {
    background: rgba(246, 248, 250, 0.94);
    z-index: 2000;
  }
  #preloader .spinner-border {
    width: 2.5rem;
    height: 2.5rem;
  }

  nav.navbar.py-2.border-bottom.w-100 {
    width: 100vw !important;
  }
  nav.navbar .navbar-brand {
    font-size: 2.2rem;
    padding: 0.3rem 0.4rem;
  }
  nav.navbar .navbar-brand img {
    height: 48px;
    width: auto;
  }
  nav.navbar .navbar-brand span {
    font-size: 2rem;
  }
  nav.navbar .navbar-toggler {
    font-size: 2rem;
  }
  nav.navbar .navbar-nav {
    flex-direction: column;
    gap: 0.2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    width: 100%;
  }
  nav.navbar .nav-link {
    font-size: 2rem;
    padding: 0.5rem 0.7rem;
    text-align: left;
  }
  nav.navbar .dropdown-item {
    font-size: 1rem;
  }
  nav.navbar .badge {
    font-size: 1rem;
  }
  .custom-nested-dropdown > .dropdown-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-right: 0;
    margin-top: 0.2rem;
    box-shadow: none;
    min-width: 180px;
  }

  header.header-quote {
    min-height: 170px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0 0 1rem 1rem;
    padding: 1.2rem 0;
    box-sizing: border-box;
  }
  header.header-quote .blockquote {
    font-size: 2.3rem;
    text-align: center;
    padding: 0.3rem 0.2rem;
  }
  header.header-quote .blockquote-footer {
    font-size: 0.95rem;
  }

  main .container {
    padding: 5vw !important;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    width: 85vw !important;
  }
  main .lead {
    font-size: 3rem;
  }
  main .h4 {
    font-size: 3rem;
  }
  main .blockquote {
    padding: 1rem 1rem;
    font-size: 1.1rem;
  }
  main .quote-section {
    padding: 1.2rem 0.7rem 1.1rem 0.7rem;
  }
  main .quote-title {
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }
  main .quote-block {
    font-size: 1.01rem;
    padding: 1rem 0.7rem 1rem 0.7rem;
  }
  main .quote-author {
    font-size: 1.75rem;
  }

  .card,
  .custom-feature-card {
    border-radius: 1.2rem !important;
    box-shadow: var(--card-shadow);
    min-height: 220px;
    width: 85vw !important;
    max-width: 85vw !important;
    margin: auto;
  }
  main .album-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
  }
  .card-content {
    padding: 1rem 1rem 1rem 1rem;
    max-width: 100%;
  }
  .card-content h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  .card-content p,
  .card-content .text-light {
    font-size: 1rem;
  }

  .about-section .about-img {
    max-width: 55vw !important;
  }
  .about-section .about-left,
  .about-section .col-lg-6:last-of-type {
    width: 85vw !important;
    margin: auto;
    background: var(--background-color);
    border-radius: 1.25rem;
    box-shadow: 0 4px 18px rgba(88, 19, 94, 0.07);
    padding: 1.6rem 1.2rem;
    margin-bottom: 1.2rem;
  }
  .about-section .about-right {
    width: 85vw !important;
    margin: auto;
    margin-bottom: 2rem !important;
  }
  .about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }
  .about-section .lead {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    text-align: left !important;
  }
  .about-section .text-muted p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
    text-align: justify;
  }
  .about-section .text-end p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
    text-align: right;
  }
  .about-section .list-group {
    gap: 0.25rem;
  }
  .about-section .list-group .list-group-item {
    font-size: 1rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0.6rem;
  }

  .footer {
    font-size: 0.92rem !important;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background-size: cover;
  }
  .footer h5,
  .footer .fs-5.fw-bold {
    font-size: 1.15rem !important;
    margin-bottom: 0.5rem;
    text-align: left !important;
  }
  .footer .company-info {
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 0.85rem;
  }
  .footer .social {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .footer .border-top {
    margin-top: 0.07rem;
    padding-top: 0.07rem;
  }
  .footer small,
  .footer .small {
    font-size: 0.8rem;
  }
}

/* >= LG (992px) and <= XL (1199.98px) */
@media (min-width: 992px) {
  nav.navbar .navbar-brand.d-lg-none {
    display: none !important;
  }
  nav.navbar .navbar-nav {
    flex-direction: row;
    gap: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  nav.navbar .nav-link {
    font-size: 1.65rem;
    padding: 0.5rem 1rem;
    text-align: left;
  }

  main .container {
    padding: 2.2rem 1.2rem 2.2rem 1.2rem;
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
    max-width: 1100px;
    width: 80vw;
  }
  .about-section .about-img {
    max-width: 25vw !important;
  }

  main .container {
    padding: 2.2rem 1.2rem 2.2rem 1.2rem;
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
    max-width: 1100px;
    width: 80vw;
  }
  main .lead {
    font-size: 1.75rem;
  }
  main .h4 {
    font-size: 2rem;
  }
  main .blockquote {
    padding: 1.2rem 1.5rem;
    font-size: 1.15rem;
  }
}
/* #endregion */
