/* Import czcionek */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500&display=swap');

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Ustawienie domyślnej czcionki dla całej strony */
body {
  font-family: 'Cormorant Garamond', serif; /* Elegancka, szeryfowa czcionka dla tekstów */
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 60px;
  line-height: 1.6;
}

/* Nagłówki - bardziej wyraziste */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif; /* Nowoczesna, bezszeryfowa dla nagłówków */
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Przyciski */
.btn {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-radius: 0; /* Bardziej kanciaste, eleganckie przyciski */
  padding: 10px 25px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}