/* CSS */
@font-face {
	font-family: "Sanacyjka";
	src: url('https://orletaplonsk.pl/assets/fonts/sanacyjka.ttf');
	font-weight: normal;
	font-style: normal;
}

:root {
	--primary-color: #6c7041;
	--primary-color-rgb: 108, 112, 65;
	--secondary-color: #373823;
	--background-color: #f0f0f0;
	--accent-color: #ffbc1f;
	--link-color: #00f;
	--text-color: #222;
	--highlight-color: #a3a34d;
	--success-color: #3c5c15;
	--danger-color: #841e08;
	--warning-color: #bea607;
	--info-color: #1a6673;
	
	--ls-footer-min-height: 3rem;
	--ls-footer-background-color: #6c7041;
	--ls-footer-color: #ddd;

	--ls-nav-bg-color: #6c7041;
	--ls-nav-menu-bg-color: #6c7041;

	--ls-nav-top-space: 1rem;
	--ls-nav-bottom-space: 1rem;
	--ls-nav-horizontal-space: 1rem;
	--ls-nav-link-color: #eee;
	--ls-nav-link-hover-color: #aaa;

  --ls-transition-duration: var(--local-transition-long);

  --local-transition-short: .2s;
  --local-transition-medium: .3s;
  --local-transition-long: .5s;
}

:root {
  --my-transition-duration: .5s;

  --my-icon-hover-scale: 1.25;

	--local-pastels-red: #ef9a9a;
  --local-pastels-red-50: #ffebee;
	--local-pastels-blue: #90caf9;
  --local-pastels-blue-50: #e3f2fd;
	--local-pastels-green: #81c784;
  --local-pastels-green-50: #e8f5e9;
	--local-pastels-yellow: #fff59d;
  --local-pastels-yellow-50: #fffde7;
	--local-pastels-purple: #c9a1d0;
  --local-pastels-purple-50: #f3e5f5;
	--local-pastels-orange: #e2a242;
  --local-pastels-orange-50: #fff3e0;
  --local-pastels-pink: #f48fb1;
  --local-pastels-pink-50: #fce4ec;
  --local-pastels-gray: #bdbdbd;
  --local-pastels-gray-50: #f5f5f5;
  --local-pastels-brown: #b08968;
  --local-pastels-brown-50: #efebe9;
  --local-pastels-teal: #80cbc4;
  --local-pastels-teal-50: #e0f2f1;
  --local-pastels-lime: #cddc39;
  --local-pastels-lime-50: #f9fbe7;
  --local-pastels-indigo: #9fa8da;
  --local-pastels-indigo-50: #ede7f6;
  --local-pastels-mint: #81c784;
  --local-pastels-mint-50: #e8f5e9;
  --local-pastels-coral: #ffab91;
  --local-pastels-coral-50: #ffecb3;
  --local-pastels-navy: #2196f3;
  --local-pastels-navy-50: #e3f2fd;
  --local-pastels-gold: #ffd700;
  --local-pastels-gold-50: #fff8e1;
  

  --bs-primary: #6c7041;
  --bs-primary-rgb: 108, 112, 65;
	--bs-secondary: #373823;
	--bs-background: #f0f0f0;
	--bs-accent: #ffbc1f;
	--bs-link: #00f;
	--bs-dark: #222;
	--bs-light: #a3a34d;
	--bs-success: #3c5c15;
	--bs-danger: #841e08;
	--bs-warning: #bea607;
	--bs-info: #1a6673;

  --bs-primary-scrolled: rgba(108, 112, 65, 0.75);
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #5c5f3a;
  --bs-btn-hover-border-color: var(--bs-primary);
  transition: all var(--my-transition-duration) ease !important;
}

.navbar-dark {
  background-color: #6c7041;
}

.navbar-brand img {
  height: 3rem;
}

.form-check-input, .form-select { border: solid 1px #777; }
.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.form-check-input:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(108, 112, 65, 0.25);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.social-icons a {
  font-size: 1rem;
  display: inline-flex;
  color: #a3a34d;
  text-decoration: none;
  transform: scale(1);
  transition: all var(--my-transition-duration) ease !important;
}
.social-icons a:hover {
  color: #fff;
  transform: scale(var(--my-icon-hover-scale));
}

.nav-link {
  color: #bdb;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: all var(--my-transition-duration) ease !important;
}
.nav-link:hover {
  color: #fff;
}

.main-container {
	position: relative;
	width: 100%;
}
.main-logo {
	position: absolute;
	top: calc(50% - 17.5vh);
	right: 50px;
	padding-right: 10rem;
	z-index: 30;
}
.main-logo-img {
	height: 30vh;
	filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
}
.main-description {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: italic;
	position: absolute;
	bottom: 50px;
	right: 50px;
	background: rgba(0, 0, 0, 0);
	color: #eee;
	padding: 0.5rem 1.5rem;
	font-size: 3rem;
	border-radius: 4px;
	text-align: right;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.65);
	z-index: 30;
}
.polish-white {
	color: #e9e8e7;
}
.polish-red {
	color: #d4213d;
}

h1 {
	font-family: "Black Ops One", system-ui;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	font-size: 3.25rem;
}

h2 {
	font-family: "Black Ops One", system-ui;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	font-size: 4.5rem;
}

h4 {
	font-size: 1.25rem;
	text-transform: uppercase;
}

p {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	text-indent: 1rem;
	text-align: justify;
}

.cite {
	font-family: "Sanacyjka";
	text-indent: 0;
	text-align: center;
	font-size: 1.5rem;
}

.img-auto {
	width: auto;
	height: 12rem;
	border-radius: 5px;
	box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.35);
}

.scroll-down-link {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 2s;
	opacity: 1;
	visibility: visible;
}

.scroll-down-link[hidden] {
	transition: all 2s;
	opacity: 0;
	visibility: hidden;
}

.scroll-down-link:not([hidden]) {
	transition: all 2s;
	opacity: 1;
	visibility: visible;
}

.scroll-down-arrow span {
	display: block;
	width: 1rem;
	height: 1rem;
	border: 2px solid transparent;
	border-right-color: #aaa;
	border-bottom-color: #aaa;
	transform: rotate(45deg);
	animation: arrow-animate 1var(--local-transition-long) linear infinite;
}

@keyframes arrow-animate {
	0% {
		opacity: 0;
	}
	25% {
		opacity: 0.25;
	}
	50% {
		opacity: 0.5;
	}
	75% {
		opacity: 0.75;
	}
	100% {
		opacity: 1;
	}
}

.section-spacer {
	height: 5rem;
}

.pastel-red {
	background-color: var(--local-pastels-red);
}

.pastel-blue {
	background-color: var(--local-pastels-blue);
}

.pastel-green {
	background-color: var(--local-pastels-green);
}

.pastel-yellow {
	background-color: var(--local-pastels-yellow);
}

.pastel-purple {
	background-color: var(--local-pastels-purple);
}

.pastel-orange {
	background-color: var(--local-pastels-orange);
}

.pastel-pink {
	background-color: var(--local-pastels-pink);
}

.pastel-gray {
	background-color: var(--local-pastels-gray);
}

.pastel-brown {
	background-color: var(--local-pastels-brown);
}

#activitiesSection .col {
	padding: 1rem;
}

#calendar {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

#calendar th {
  background-color: #d32f2f;
  color: #fff;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  min-width: 120px;
}

#calendar td {
  padding: 15px;
  border-bottom: 1px solid #fff;
  vertical-align: top;
}

#calendar tr:last-child td {
  border-bottom: none;
}

#calendar tr:hover {
  background-color: #f9f9f9;
}

.schedule-day {
  display: inline-block;
  background-color: #d32f2f;
  color: #ffffff;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 5px;
}

#calendar caption {
  padding: 10px;
  font-weight: bold;
  font-size: 1.2em;
  background-color: #f5f5f5;
  border-bottom: 2px solid #d32f2f;
}



.schedule-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.month-card {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.month-card h3 {
  background-color: #d32f2f;
  color: #fff;
  margin: 0;
  padding: 15px;
  text-align: center;
}

.event-card {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #fff;
}

.event-card:last-child {
  border-bottom: none;
}

.event-date {
  background-color: #d32f2f;
  color: #fff;
  font-weight: bold;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.event-details {
  flex: 1;
}

.event-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.event-location {
  color: #666;
  font-style: italic;
  margin-top: 5px;
}

.calendar-container {
  margin: 30px 0;
}

.month {
  margin-bottom: 30px;
}

.month h3 {
  border-bottom: 2px solid #d32f2f;
  padding-bottom: 10px;
  border-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 2.5rem;
}

.month h3 i {
  margin-right: 10px;
}

.calendar-events {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.calendar-event {
  display: flex;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  width: calc(33.333% - 14px);
  min-width: 280px;
}

.event-icon {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.event-content {
  padding: 15px;
  flex: 1;
}

.event-day {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
}

.event-name {
  font-weight: bold;
  margin: 5px 0;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #666;
  font-size: 0.9em;
}

.event-info span i {
  width: 20px;
  text-align: center;
  margin-right: 5px;
}

.event-link {
  color: var(--info-color);
  text-decoration: none !important;
  border-bottom: 0;
  transition: all var(--ls-transition-duration);
}
.event-link:hover {
  border-bottom: 1px solid var(--highlight-color);
  color: var(--highlight-color);
}

.join-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
  position: relative;
}

.join-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 4px;
  background-color: var(--primary-color);
  z-index: 0;
}

.join-step {
  display: flex;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  min-height: 120px;
}

.step-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 10px;
}

.step-number {
  background-color: var(--secondary-color);
  color: #fff;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  border: 3px solid #fff;
}

.step-icon {
  background-color: var(--primary-color);
  color: #fff;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  min-width: 100px;
}

.step-content {
  padding: 20px;
  flex: 1;
}

.step-title {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-description {
  margin: 0;
  text-indent: 0;
  color: #555;
  line-height: 1.5;
}

.step-link {
  color: var(--primary-color);
  text-decoration: none !important;
  font-weight: 500;
  border-bottom: 1px solid var(--highlight-color);
  transition: all var(--ls-transition-duration);
}

.step-link:hover {
  color: var(--highlight-color);
}

@media (max-width: 768px) {
  .join-steps::before {
    left: 30px;
  }
  
  .step-info {
    gap: 10px;
  }
  
  .step-number {
    width: 25px;
    height: 25px;
    min-width: 25px;
    font-size: 14px;
  }
}


.contact-form-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-control {
  width: 100%;
  padding: 10px 15px !important;
  border: 1px solid #999 !important;
  border-radius: 4px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  transition: border-color var(--ls-transition-duration) !important;
}

.form-control:focus {
  border-color: var(--primary-color) !important;
  outline: none !important;
}

.contact-submit {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ls-transition-duration);
}

.contact-submit:hover {
	color: var(--highlight-color);
	background-color: var(--secondary-color);
}

.contact-info {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  padding: 25px;
  height: 100%;
}

.contact-methods {
  margin-top: 20px;
}

.contact-method {
  display: flex;
  align-items: top;
  margin-top: 10px;
}

.contact-icon {
  background-color: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

.contact-details {
  flex: 1;
}

.contact-details h5 {
  margin: 0 0 5px 0;
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-details p {
  margin: 0;
  text-indent: 0;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: all var(--ls-transition-duration);
}

.contact-details a:hover {
  color: var(--highlight-color);
  border-bottom-color: var(--highlight-color);
}

.contact-address h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-address p {
  margin: 0;
  text-indent: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-info {
    margin-top: 30px;
  }
}


footer {
  margin-top: 50px;
}

.footer-main {
  background-color: #6c7041;
  color: #eee;
  padding-top: 2.5rem;
}

.footer-bottom {
  background-color: #373823;
  color: #aaa;
  padding: 15px 0;
  font-size: 0.9em;
}

.footer-logo-img {
  height: 100px;
  margin: 15px 0;
}

.footer-description {
  text-indent: 5px;
  text-align: left;
  color: #bbb;
  font-size: 0.9em;
  line-height: 1.5;
  padding-right: .5rem;
}

.footer-description-remarks {
  text-indent: 0;
  text-align: left;
  color: #aaa;
  font-size: 0.8em;
  line-height: 1.25;
  padding-right: .5rem;
}
.footer-heading {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid #6c7041;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #6c7041;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: all var(--my-transition-duration);
  display: block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact-icons {
  display: flex;
  justify-content: end;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all var(--my-transition-duration);
  text-decoration: none;
}

.footer-contact-icons a:hover {
  background-color: #6c7041;
  transform: translateY(-3px);
}

.footer-address {
  color: #bbb;
  font-style: normal;
  line-height: 1.5;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .footer-main .col-md-4:not(:first-child) {
    margin-top: 30px;
  }
  
  .footer-bottom .text-right {
    text-align: left;
    margin-top: 10px;
  }
}

.avatar-sm {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsywne menu boczne */
@media (max-width: 767.98px) {
  #sidebar {
      width: 4.5rem;
  }
}

/* Aktywna pozycja menu */
.nav-link.active {
  background-color: var(--bs-primary) !important;
}

/* Style dla kalendarza */
.calendar-table {
    table-layout: fixed;
}

.calendar-table th {
    text-align: center;
    background-color: #f8f9fa;
}

.calendar-day {
    height: 80px;
    vertical-align: top;
    padding: 5px;
    cursor: pointer;
    position: relative;
}

.calendar-day:hover {
    background-color: #f8f9fa;
}

.empty-day {
    background-color: #f9f9f9;
}

.day-content {
    font-weight: bold;
    margin-bottom: 5px;
}

.today {
    background-color: #e8f4ff;
}

.selected {
    background-color: #e2e6ea;
}

.has-events {
    position: relative;
}

.event-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 3px;
}

.event-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #007bff;
}

.more-events {
    font-size: 10px;
    color: #6c757d;
}

#eventsList {
    max-height: 300px;
    overflow-y: auto;
}

.indent-0 { text-indent: 0; }

.badge {
  display: inline !important;
}

.badge-icon {
  max-width: 125px;
  max-height: 125px;
}

.badge-detail-icon {
  max-width: 30vh;
  max-height: 30vh;
}

.grayscale {
  filter: grayscale(100%);
  opacity: 0.6;
}

.badge-card {
  cursor: pointer;
  transition: transform 0.2s;
}

.badge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

