/* --- Base Styles --- */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --- Content Container --- */
#content {
  flex: 1 0 auto;
}

/* --- Header --- */
.site-header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.075);
  z-index: 1030;
}

/* --- Navbar --- */
.navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.navbar-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d6efd;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand img {
  max-height: 32px;
  height: auto;
  width: auto;
}

/* Toggler */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  z-index: 1031;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: none;
}

/* Nav Links */
/* Nav Links */
.navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 600; /* Set a consistent font-weight */
  color: #6c757d;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  font-weight: 600; /* Keep the same font-weight on hover/focus */
  color: #adb5bd;
  outline: none;
  text-decoration: none;
}



/* Dropdown (Desktop) */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-menu .dropdown-item {
    text-align: center;
    font-weight: 600;
    color: #6c757d;
  }

  .dropdown-menu .dropdown-item:hover {
    color: #adb5bd;
    background-color: rgba(108, 117, 125, 0.1);
  }
}

/* Dropdown (Mobile) */
@media (max-width: 991.98px) {
  .navbar-nav .nav-item + .nav-item {
    margin-top: 0.5rem;
  }

  .offcanvas .navbar-nav .dropdown-menu .dropdown-item {
    text-align: center;
    font-weight: 600;
    color: #6c757d;
  }

  .offcanvas .navbar-nav .dropdown-menu .dropdown-item:hover {
    color: #adb5bd;
    background-color: rgba(108, 117, 125, 0.1);
  }
}

/* Offcanvas */
.offcanvas {
  width: 280px;
  background-color: #f8f9fa;
  box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.15);
  z-index: 1020;
}

.offcanvas-body {
  padding: 1rem;
  overflow-y: auto;
}

.offcanvas .navbar-nav .nav-link {
  display: flex; /* added */
  text-align: center;
  justify-content: center;
}

/* Footer */
.site-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
  flex-shrink: 0;
}

/* TikTok Embed */
.tiktok-embed-wrapper {
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100%;
}

.tiktok-embed-wrapper blockquote.tiktok-embed {
  width: 100% !important;
  margin: 0 !important;
  max-width: none !important;
}

.tiktok-embed-wrapper blockquote.tiktok-embed iframe {
  width: 100% !important;
  height: auto !important;
  min-height: 500px;
}
