@charset "UTF-8";
.fs-r75 {
  font-size: 0.75rem !important;
}

.fs-75 {
  font-size: 0.75em !important;
}

.fs-50 {
  font-size: 0.5em !important;
}

.bg-dark {
  background-color: #202024 !important;
}

.bg-1 {
  background-color: #841686 !important;
}

.bg-2 {
  background-color: #466e27 !important;
}

.bg-3 {
  background-color: #e6ba3f !important;
}

.bg-4 {
  background-color: #1d3043 !important;
}

.bg-5 {
  background-color: #f5f7fa !important;
}

.bg-6 {
  background-color: #bababa !important;
}

.bg-7 {
  background-color: #7a9b6e !important;
}

.bg-8 {
  background-color: #2A8C82 !important;
}

.color-1 {
  color: #841686 !important;
}

.color-2 {
  color: #466e27 !important;
}

.color-3 {
  color: #e6ba3f !important;
}

.color-4 {
  color: #1d3043 !important;
}

.color-5 {
  color: #f5f7fa !important;
}

.color-6 {
  color: #bababa !important;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
}

h1, h2 {
  font-family: "Montserrat", sans-serif;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.category-btn {
  height: 120px;
  border: 0;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.3rem;
}
.category-btn:hover {
  scale: 1.03;
  border-color: #1d3043;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.category-btn h5 {
  font-size: 1.3rem;
}

.event-card {
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.event-card .pic-container {
  width: 100%;
  aspect-ratio: 1.8018018018;
  overflow: hidden;
  border-bottom: 1px solid #fffff5;
}
.event-card .pic-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.event-card .pic-container:hover img {
  transform: scale(1.05);
}

.multidate .pic-container::after {
  content: "Több időpontban is!";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e6ba3f;
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
}

.event-image {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo {
  max-height: 60px;
}

footer {
  background-color: #202024;
  color: white;
}
footer .footer-logo {
  max-height: 50px;
}
footer .copy,
footer a {
  font-size: 0.9rem;
  color: #bababa;
  text-decoration: none;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: white !important;
}

.navbar-light {
  background: #fffcf2 !important;
}

.navbar-dark {
  background: #1d3043 !important;
}
.navbar-dark a {
  color: white;
}
.navbar-dark a:hover {
  color: #e6ba3f;
}
.navbar-dark::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #841686, #e6ba3f, #466e27);
}

.hero-motto {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero-motto {
    font-size: 1.8rem;
  }
  .category-btn {
    height: 100px;
    margin-bottom: 15px;
  }
}
.my-day-btn {
  display: block;
  font-size: 1.2rem;
  padding: 5px 10px;
  text-decoration: none;
  background: #bababa;
  margin-bottom: 1rem;
  color: black;
  text-align: center;
}
.my-day-btn span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
}
.my-day-btn:hover {
  background: #e6ba3f;
  color: black;
  text-decoration: none;
}

.btn-outline-primary {
  color: #1d3043;
}
.btn-outline-primary:disabled {
  color: #1d3043;
}

.calendar-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-bottom: 1rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar-header h4 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #1d3043;
}
.calendar-header button {
  border: none;
  background: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calendar-header button:hover:not(:disabled) {
  background-color: #1d3043;
  color: white;
}
.calendar-header button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}
.calendar-header button:disabled:hover {
  background-color: transparent;
  color: inherit;
}

.calendar-grid {
  width: 100%;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 0.5rem;
}
.calendar-weekdays .weekday {
  text-align: center;
  font-weight: 600;
  padding: 0.5rem 0;
  color: #202024;
  font-size: 0.9rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
.calendar-days .calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  position: relative;
}
.calendar-days .calendar-day:hover {
  background-color: #fffff5;
  transform: scale(1.05);
}
.calendar-days .calendar-day.empty {
  background-color: transparent;
  cursor: default;
}
.calendar-days .calendar-day.empty:hover {
  transform: none;
  background-color: transparent;
}
.calendar-days .calendar-day.today {
  background-color: #1d3043;
  color: white;
  font-weight: bold;
}
.calendar-days .calendar-day.today:hover {
  background-color: rgb(13.59375, 22.5, 31.40625);
}
.calendar-days .calendar-day.has-event {
  background-color: #466e27;
  color: white;
  font-weight: 600;
}
.calendar-days .calendar-day.has-event a {
  color: white;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-days .calendar-day.has-event:hover {
  background-color: rgb(46.0402684564, 72.3489932886, 25.6510067114);
}
.calendar-days .calendar-day.has-event::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  background-color: #841686;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .calendar-container {
    padding: 0.5rem;
  }
  .calendar-header h4 {
    font-size: 1.2rem;
  }
  .calendar-header button {
    font-size: 1rem;
  }
  .calendar-weekdays .weekday {
    font-size: 0.8rem;
    padding: 0.3rem 0;
  }
  .calendar-days .calendar-day {
    font-size: 0.9rem;
  }
}
.nav-link {
  color: #1d3043;
}
.nav-link:hover {
  color: #841686;
}

.decorative-banner {
  background: linear-gradient(135deg, #1d3043 0%, #466e27 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.decorative-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #841686, #e6ba3f, #466e27);
}
.decorative-banner h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.decorative-banner .lead {
  font-size: 1.3rem;
  opacity: 0.9;
}

.value-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.value-card .value-icon i {
  font-size: 3rem;
}
.value-card h4 {
  font-family: "Montserrat", sans-serif;
  color: #202024;
  margin-bottom: 1rem;
}

.about-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-member .member-photo img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #fffff5;
  transition: all 0.3s ease;
}
.team-member .member-photo:hover img {
  border-color: #1d3043;
  transform: scale(1.05);
}
.team-member h5 {
  font-family: "Montserrat", sans-serif;
  color: #202024;
  margin-bottom: 0.5rem;
}
.team-member .text-muted {
  font-weight: 600;
  color: #1d3043 !important;
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, #f5f7fa 0%, white 100%);
  border-radius: 12px;
  border: 2px solid #fffff5;
}
.cta-section h3 {
  font-family: "Montserrat", sans-serif;
  color: #202024;
}
.cta-section .btn-primary {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.cta-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(13, 110, 253, 0.3);
}

@media (max-width: 768px) {
  .decorative-banner {
    padding: 2.5rem 0;
  }
  .decorative-banner h1 {
    font-size: 2.2rem;
  }
  .decorative-banner .lead {
    font-size: 1.1rem;
  }
  .about-image img {
    height: 250px;
    margin-top: 2rem;
  }
  .team-member .member-photo img {
    width: 120px;
    height: 120px;
  }
}
.btn {
  border: none;
  border-radius: 0;
  font-weight: 500;
}

.admin-section {
  position: relative;
  z-index: 1;
}
.admin-section .btn {
  border-radius: 5px;
}

.btn-primary {
  background: #e6ba3f;
  color: black;
}

.btn-secondary {
  background: #1d3043;
  color: white;
}

.event-item {
  border-bottom: 1px solid #fffff5;
  padding: 30px 0;
}
.event-item:last-child {
  border-bottom: none;
}
.event-item .organization {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #841686;
  opacity: 0.9;
}

.full-info {
  padding: 30px;
  border: 1px solid #fffff5;
  background: #efefef;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.full-info p strong {
  display: block;
  font-size: 1.2rem;
}

.block-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #202024;
  margin-bottom: 1.5rem;
}

.block-sub-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #202024;
}

.search-icon {
  font-size: 1.5rem;
  margin-top: -20%;
}

.modal-content {
  border-radius: 0;
}
.modal-content .form-control {
  border-radius: 0;
  border: 1px solid #bababa;
}
.modal-content .form-control:focus {
  box-shadow: none;
  border-color: #e6ba3f;
}

label.btn {
  border-radius: 0px;
  padding: 4px 6px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  background: #f5f7fa;
  border: 1px solid #bababa;
}

label.btn:hover {
  border-color: #466e27 !important;
  background: #f5f7fa;
}

.btn-check:checked + .btn {
  background-color: #466e27; /* Bootstrap primary */
  color: white;
  border-color: #466e27;
}

.icon-control {
  font-size: 1.3rem;
  margin-right: 3px;
  vertical-align: middle;
  position: relative;
}
.icon-control:hover {
  text-decoration: none;
}
.icon-control {
  padding: 0;
}
.icon-control .bi {
  padding: 0;
}

.toast-container {
  position: fixed;
  bottom: 20px;
  z-index: 1055;
}

.icon-btn {
  background: none;
  border: none;
}

.badge-xs {
  font-size: 0.75rem;
  padding: 0.25em 0.4em;
  font-weight: normal;
}

#faqAccordion .accordion-button {
  font-weight: bold;
}

.pagination {
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.pagination .page-item .page-link {
  border: none;
  background: none;
  color: #1d3043;
}
.pagination .page-item.active .page-link {
  color: #841686;
}

.contact-data a {
  color: #841686;
}/*# sourceMappingURL=site.css.map */