body {
  background-color: var(--ee-bg-black);
  color: var(--ee-white);
}
/* Color palette */
:root {
  --ee-blue: #00c8ff;
  --ee-purple: #9600ff;
  --ee-dark-blue: #0c0849;
  --ee-dark-purple: #400c74;
  --ee-deep-purple: #23073b;
  --ee-bg-black: #000;
  --ee-white: #fff;
}

/* Lava lamp background canvas */
.lava-lamp-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Custom background and text color */
/* Bootstrap utility classes replace custom navbar styles for responsiveness */
/* Use .navbar, .navbar-expand-lg, .navbar-dark, .bg-dark, .navbar-brand, .navbar-nav, .nav-link, .btn, .btn-primary, .container-fluid, .shadow, .rounded, .mx-1, .ms-auto, .text-end, .bg-gradient, .py-3, .px-3 for layout and style */

/* Custom navbar styles */
.navbar-custom {
  min-height: 144px;
  height: 144px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  background: linear-gradient(175deg, var(--ee-dark-purple), var(--ee-blue));
  box-shadow: 0 2px 24px var(--ee-blue)
}

.navbar-custom .navbar-brand #navbarNav {
  font-size: 4rem;
  color: var(--ee-white);
  transition: font-size 0.2s;
}

.navbar-custom .navbar-nav .nav-link {
  color: var(--ee-white);
  transition: color 0.2s;
  column-gap: 10px;
}
.navbar-custom .navbar-nav .nav-link.btn {
  background-color: var(--ee-dark-blue);
  border: 1px solid var(--ee-purple);
  transition: background-color 0.2s, border-color 0.2s;
  box-shadow: 0 0 8px var(--ee-blue);
}
.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link:focus {
  background-color: var(--ee-dark-purple);
  border-color: var(--ee-blue);
  box-shadow: 0 0 10px var(--ee-blue);
  font-size: large;
  font-weight: bold;
}
/* Shrink effect on scroll */
.navbar-custom.scrolled {
  min-height: 75px;
  height: 75px;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
/* Time Prophets hover effect */
.tp-hover-card {
  position: relative;
  display: inline-block;
}
.tp-hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.2rem;
  padding: 1rem;
  text-align: center;
  pointer-events: none;
  z-index: 2;
}
.tp-hover-card:hover .tp-hover-text {
  opacity: 1;
  pointer-events: auto;
}
.navbar-custom.scrolled .navbar-brand {
  font-size: 1.2rem;
}
.navbar-custom.scrolled img {
  width: 32px;
  height: 32px;
}

/* Responsive header font sizes */
.responsive-header {
  font-size: 2rem; /* overridden by media queries below */
}
@media (max-width: 1200px) {
  .responsive-header {
    font-size: 1.75rem; /* overrides .responsive-header font-size above */
  }
}
@media (max-width: 992px) {
  .responsive-header {
    font-size: 1.5rem; /* overrides previous font-size */
  }
}
@media (max-width: 768px) {
  .responsive-header {
    font-size: 1.25rem; /* overrides previous font-size */
  }
  #about {
    max-width: 650px; /* constrain width on medium screens */
    margin: 0 auto; /* center the section */
}
@media (max-width: 576px) {
  .responsive-header {
    font-size: 1rem; /* overrides previous font-size, but see next block for !important */
  }
}

/* Custom styles for small screens */
@media (max-width: 576px) {
  .responsive-header {
    font-size: 1.3rem !important; /* overrides previous font-size for .responsive-header */
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important; /* align text left for small screens */
  }
  .navbar-brand img {
    width: 55px !important; /* overrides default width */
    height: 55px !important; /* overrides default height */
  }
  .navbar-nav .nav-link {
    font-size: 1rem !important; /* overrides .navbar-nav .nav-link font-size above */
    padding: 0.4rem 0.7rem !important; /* overrides default padding */
    justify-content: right
  }
  section.vh-100 {
    min-height: 60vh !important; /* overrides default min-height */
    margin-top: 60px !important; /* overrides default margin-top */
  }
  .card-img-top {
    max-width: 80px !important; /* overrides default max-width */
    height: auto !important; /* overrides default height */
  }
  .container,
  .container-fluid {
    padding-left: 8px !important; /* overrides default padding */
    padding-right: 8px !important; /* overrides default padding */
  }
  /* Add more overrides as needed for your custom classes */
}

/* Logo image size and transition */
.navbar-brand img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  transition: width 0.3s cubic-bezier(.4,0,.2,1), height 0.3s cubic-bezier(.4,0,.2,1); /* smooth transition */
}

/* Shrink logo for navbar expand breakpoints */
@media (max-width: 1200px) { /* xl */
  .navbar-brand img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 992px) { /* lg */
  .navbar-brand img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 768px) { /* md */
  .navbar-brand img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) { /* sm */
  .navbar-brand img {
    width: 40px !important;
    height: 40px !important;
  }
}