/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #a00;
  --primary-dark: #800;
  --secondary: #ffb800;
  --dark: #a00;
  --light: #f9f9f9;
  --text: #333;
  --text-light: #666;
  --success: #10b981;
  --gradient: linear-gradient(45deg, #b00 0%, #900 100%);
  --light-gradient: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  --promo-banner-height: 48px;
  --nav-height: 68px;
  --header-total-height: calc(var(--promo-banner-height)  + var(--nav-height));
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
}

a {
  color: #a00;
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: #800;
  text-decoration: underline;
}

a:visited {
  color: #a00;
}

nav {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1000;
  background: #fffffffa;
  border-bottom: 1px solid #aa00001a;
  padding: 1rem 0;
  transition: all .3s;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
}

.logo {
  color: var(--primary);
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.nav-links {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.nav-links a {
  color: #a00;
  white-space: nowrap;
  text-decoration: none;
  transition: color .3s;
}

.nav-links a:hover {
  color: #800;
}

.nav-cta {
  background: var(--primary);
  text-align: center;
  border-radius: 50px;
  min-width: 80px;
  padding: .5rem 1.5rem;
  font-weight: 500;
  transition: all .3s;
  display: inline-block;
  color: #fff !important;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px #aa00004d;
  color: #fff !important;
  text-decoration: none !important;
}

.nav-cta:visited, .nav-cta:active {
  color: #fff !important;
  text-decoration: none !important;
}

.hamburger {
  cursor: pointer;
  z-index: 1002;
  width: 30px;
  height: 30px;
  display: none;
  position: relative;
}

.hamburger span {
  background: var(--text);
  border-radius: 2px;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  transition: all .3s;
  display: block;
}

.hamburger.active span:first-child {
  transform: rotate(45deg)translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg)translate(7px, -6px);
}

.mobile-menu {
  z-index: 3000;
  background: #fff;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  padding: 80px 2rem 2rem;
  transition: right .3s;
  position: fixed;
  top: 0;
  right: -100%;
  overflow-y: auto;
  box-shadow: -4px 0 20px #0000001a;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  background: #00000080;
  width: 100%;
  height: 100%;
  transition: all .3s;
  position: fixed;
  top: 0;
  left: 0;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: #a00;
  white-space: nowrap;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.mobile-menu a:hover {
  color: #800;
}

.mobile-menu-close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: var(--text);
  background: #0000000d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-menu-close:hover {
  background: #0000001a;
  transform: scale(1.1);
}

.promo-banner {
  color: #fff;
  text-align: center;
  z-index: 2000;
  background: #a00;
  width: 100%;
  padding: 12px 20px;
  font-weight: 600;
  transition: max-height .3s, opacity .3s, padding .3s;
  animation: 4s ease-in-out forwards colorFade;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px #aa00004d;
}

@keyframes colorFade {
  0% {
    background: #a00;
  }

  50% {
    background: #ff9d00;
  }

  100% {
    background: #a00;
  }
}

.promo-banner-content {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.promo-badge {
  text-transform: uppercase;
  letter-spacing: .5px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fff3;
  border: 1px solid #ffffff4d;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .875rem;
  font-weight: 700;
  animation: 2s ease-in-out infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.promo-text {
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  display: flex;
}

.promo-discount {
  text-shadow: 0 2px 4px #0000001a;
  font-size: 1.25rem;
  font-weight: 800;
}

.promo-cta {
  color: #ff9500;
  background: #fff;
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 2px 8px #0000001a;
}

.promo-cta:hover {
  color: #ff7a00;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #00000026;
}

.promo-close {
  color: #fff;
  cursor: pointer;
  background: #fff3;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.promo-close:hover {
  background: #ffffff4d;
  transform: translateY(-50%)rotate(90deg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

main {
  min-height: calc(100vh - 400px);
  padding: 2rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-container, .container {
    padding: 0 1rem;
  }

  main {
    padding: 2rem 1rem;
  }

  .promo-banner {
    padding: 10px 40px 10px 15px;
  }

  .promo-banner-content, .promo-text {
    font-size: .875rem;
  }

  .promo-discount {
    font-size: 1.125rem;
  }

  .promo-badge {
    padding: 3px 8px;
    font-size: .75rem;
  }

  .promo-cta {
    padding: 5px 12px;
    font-size: .875rem;
  }

  .promo-close {
    right: 10px;
  }
}

a.lbsBibleRef {
  text-decoration: none;
  transition: color .3s;
  color: #a00 !important;
}

a.lbsBibleRef:hover {
  text-decoration: underline;
  color: #800 !important;
}

a.lbsBibleRef:visited {
  color: #a00 !important;
}

.lbsContainer {
  touch-action: manipulation;
  z-index: 10001 !important;
  pointer-events: auto !important;
  position: absolute !important;
}

a.lbsBibleRef {
  touch-action: manipulation;
  -webkit-tap-highlight-color: #a003;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: auto !important;
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/