@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --primary: #e74c3c;
  --secondary: #f39c12;
  --accent: #27ae60;
  --bg: #fffaf3;
  --text: #2c3e50;
}

html {
  font-size: 14px;
}

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

.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%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  margin-bottom: 60px;
  font-optical-sizing: auto;
  font-style: normal;
}

.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;
}

.navbar{
  background-color: var(--primary);
}

.footer {
  padding: 5px 0;
  min-height: 35px;
  background-color: var(--secondary);
}

.footer .container {
  padding-top: 0;
  padding-bottom: 0;
}

h1, h2 {
  color: var(--primary);
  font-weight: bold;
  font-family: "Playfair Display", serif;
}

p {
  color: var(--text);
  font-family: "Oswald", serif;
}

button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  background: #c0392b;
}

table {
  width: 100%;
  background: white;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
}

th {
  background: #e74c3c;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

th, td {
  padding: 14px;
}

tbody tr:hover {
  background: #fff0ed;
}



