:root {
  --primary-color: #963127;
  --secondary-color: #af625c;
  --text-color: #ffffff;
  --bs-btn-color: #fff !important;
  --bs-btn-border-color: #fff !important;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-border-color: #fff !important;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-offcanvas-bg: rgba(0, 0, 0, 0.8);
  --bs-offcanvas-width: 250px;
}

body {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  background-image: url("main_bg.jpg");
  background-size: cover;
  background-position: center;
}

header {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 80%);
  padding: 10px;
  position: sticky;
  top:0px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 50px;
  max-height: 50px;
}

.offcanvas {
  width: 250px;
  background-color: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.btn-outline-primary {
  color: #fff !important;
  border-color: #fff !important;
  background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:visited {
  color: #fff !important;
  border-color: #fff !important;
  background-color: rgba(255,255,255,0.1) !important;
  box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.5) !important;
}

.offcanvas-body {
  background-color: rgba(0, 0, 0, 0.49);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1rem;
}

.offcanvas-link {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.3s;
  display: block;
}

.offcanvas-link:hover {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 80%);
  color: #fff;
}

.offcanvas-header {
  background-color: rgba(150, 49, 39, 0.8);
  color: #fff;
}

.main-content {
  margin-top: 20px;
  text-align: center;
  scroll-margin-top: calc(2rem + 60px);
}

.webinar-img {
  border: 2px solid var(--primary-color);
}

footer {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 80%);
  padding: 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin: 0;
  text-align: center;
  color: #fff;
}