button {
  all: unset;
  display: inline-flex;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
}
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

:root {
  font-family: "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #14171c;
  color: #eef0f3;
  line-height: 1.6;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.animated-bg {
  --mx: 50%;
  --my: 30%;
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(600px circle at var(--mx) var(--my), rgba(201, 162, 75, 0.12), transparent 60%), radial-gradient(circle at 20% 20%, rgba(201, 162, 75, 0.06), transparent 40%), radial-gradient(circle at 80% 70%, rgba(201, 162, 75, 0.05), transparent 45%), #14171c;
  transition: background 0.15s ease-out;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  background: rgba(20, 23, 28, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #262c36;
}
.navbar .logo {
  height: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e3c98a;
  text-decoration: none;
  cursor: pointer;
}

.nav-container ul {
  display: flex;
  list-style: none;
  gap: 28px;
}
.nav-container a {
  color: #c7cdd6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}
.nav-container a:hover {
  color: #e3c98a;
}
.nav-container a:hover::after {
  width: 100%;
}
.nav-container a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #c9a24b;
  transition: width 0.25s;
}
.nav-container.open {
  transform: translateX(0);
}

.nav-highlight {
  color: #e3c98a !important;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: #e3c98a;
  display: block;
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

.hero-tag {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #c9a24b;
  margin-bottom: 18px;
}

.home-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  background: linear-gradient(120deg, #eef0f3, #e3c98a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.home-txt {
  color: #c7cdd6;
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(120deg, #c9a24b, #e3c98a);
  color: #14171c;
}
.btn-outline {
  border: 1px solid #3a4250;
  color: #eef0f3;
}

.video-container {
  margin-top: 56px;
  width: min(900px, 90vw);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #262c36;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.video-container video {
  width: 100%;
  display: block;
}

section.block {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 20px;
}

.section-tag {
  color: #c9a24b;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 28px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-card {
  background: #1c2129;
  border: 1px solid #262c36;
  border-radius: 14px;
  padding: 32px;
}
.about-card h3 {
  color: #e3c98a;
  margin-bottom: 14px;
  font-size: 1rem;
}
.about-card h3:not(:first-child) {
  margin-top: 20px;
}
.about-card p {
  color: #c7cdd6;
  margin-bottom: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.tag {
  background: #262c36;
  color: #e3c98a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.verse-card {
  background: #1c2129;
  border: 1px solid #262c36;
  border-radius: 14px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.verse-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at 90% -10%, rgba(201, 162, 75, 0.08), transparent 60%);
  pointer-events: none;
}

.verse-text {
  font-size: 1.3rem;
  font-style: italic;
  color: #e3c98a;
  line-height: 1.6;
  border-left: 2px solid #c9a24b;
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
}

.verse-ref {
  color: #3a4250;
  font-size: 0.85rem;
  margin-bottom: 28px;
  position: relative;
}

.verse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
}
.verse-grid h3 {
  color: #e3c98a;
  margin-bottom: 10px;
  font-size: 1rem;
}
.verse-grid p {
  color: #c7cdd6;
  font-size: 0.94rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #1c2129;
  border: 1px solid #262c36;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover {
  border-color: #c9a24b;
  transform: translateY(-4px);
}
.blog-card.open .blog-icon {
  transform: rotate(45deg);
}
.blog-card.open .blog-body {
  max-height: 300px;
  padding: 0 26px 26px;
}

.blog-toggle {
  width: 100%;
  color: #eef0f3;
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}
.blog-toggle h3 {
  color: #e3c98a;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.blog-icon {
  color: #c9a24b;
  transition: transform 0.25s;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.blog-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 26px;
}
.blog-body p {
  color: #c7cdd6;
  font-size: 0.94rem;
}

.blog-date {
  font-size: 0.78rem;
  color: #3a4250;
  display: block;
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid #262c36;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-question {
  width: 100%;
  color: #eef0f3;
  text-align: left;
  padding: 20px 4px;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  color: #e3c98a;
}

.faq-icon {
  color: #c9a24b;
  transition: transform 0.25s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #c7cdd6;
  font-size: 0.94rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info p {
  color: #c7cdd6;
  margin-bottom: 14px;
}
.contact-info a {
  color: #e3c98a;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
textarea {
  background: #1c2129;
  border: 1px solid #262c36;
  color: #eef0f3;
  padding: 13px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #c9a24b;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

footer.label {
  border-top: 1px solid #262c36;
  padding: 40px 5%;
  text-align: center;
  color: #3a4250;
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #c7cdd6;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-nav a:hover {
  color: #e3c98a;
}

.easter-egg {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 23, 28, 0.85);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.easter-egg.show {
  opacity: 1;
}

.easter-egg-box {
  text-align: center;
  padding: 40px;
  border: 1px solid #c9a24b;
  border-radius: 14px;
  background: #1c2129;
  box-shadow: 0 0 60px rgba(201, 162, 75, 0.25);
}
.easter-egg-box p {
  font-size: 1.6rem;
  color: #e3c98a;
  font-weight: 700;
  margin-bottom: 10px;
}
.easter-egg-box span {
  color: #c7cdd6;
  font-size: 0.9rem;
}

.not-found {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 4px;
}

.not-found-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(120deg, #eef0f3, #e3c98a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.not-found-txt {
  color: #c7cdd6;
  max-width: 480px;
  margin-bottom: 32px;
}

.not-found-terminal {
  width: min(560px, 90vw);
  background: #1c2129;
  border: 1px solid #262c36;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  margin-bottom: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #262c36;
}
.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a4250;
}
.terminal-bar span:first-child {
  background: #d97757;
}
.terminal-bar span:nth-child(2) {
  background: #c9a24b;
}
.terminal-bar span:nth-child(3) {
  background: #6fae6f;
}

.terminal-body {
  padding: 18px 20px;
  font-family: "Courier New", monospace;
  font-size: 0.88rem;
  color: #c7cdd6;
}
.terminal-body p {
  margin-bottom: 8px;
}
.terminal-body .prompt {
  color: #e3c98a;
}
.terminal-body .terminal-error {
  color: #e2716b;
}
.terminal-body .cursor {
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.not-found-verse {
  color: #3a4250;
  font-size: 0.85rem;
  font-style: italic;
  max-width: 420px;
}

@media (max-width: 820px) {
  .nav-container {
    position: fixed;
    top: 70px;
    right: 0;
    height: calc(100vh - 70px);
    width: min(260px, 70vw);
    background: #1c2129;
    border-left: 1px solid #262c36;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .nav-container ul {
    flex-direction: column;
    padding: 30px;
    gap: 24px;
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .contact-grid,
  .verse-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */