@import url("./main.css");

:root {
  --primary: #0da540;
  --dark-green: #1a4d2e;
  --gold: #d4af37;
  --bg-light: #f6f8f6;
  --white: #ffffff;
  --text-main: #0d1b12;
  --text-muted: #4b5563;
  --border-color: rgba(13, 165, 64, 0.1);
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (min-width: 768px) {
  header {
    padding: 1rem 5rem;
  }
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  color: var(--primary);
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--primary);
}
.btn-login {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(13, 165, 64, 0.2);
  transition: var(--transition);
}
.btn-login:hover {
  background-color: var(--dark-green);
}
.menu-mobile-icon {
  display: block;
}
@media (min-width: 768px) {
  .menu-mobile-icon {
    display: none;
  }
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  position: relative;
  text-align: center;
}
.islamic-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(var(--primary) 0.5px, transparent 0.5px),
    radial-gradient(var(--primary) 0.5px, var(--bg-light) 0.5px);
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
  opacity: 0.05;
  z-index: 0;
}
.content-container {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  width: 100%;
}
.illustration-box {
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.back-glow {
  position: absolute;
  top: -3rem;
  opacity: 0.2;
  color: var(--gold);
}
.icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.divider {
  height: 1px;
  width: 3rem;
  background-color: rgba(212, 175, 55, 0.3);
}
.error-code {
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
@media (min-width: 768px) {
  .error-code {
    font-size: 11.25rem;
  }
}
.error-code .material-symbols-outlined {
  color: var(--gold);
  font-size: 6rem;
  margin: 0 0.5rem;
}
@media (min-width: 768px) {
  .error-code .material-symbols-outlined {
    font-size: 8.75rem;
  }
}
.error-title {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
}
@media (min-width: 768px) {
  .error-title {
    font-size: 2.25rem;
  }
}
.error-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  .actions {
    flex-direction: row;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  min-width: 220px;
  cursor: pointer;
}
.btn-primary {
  background-color: var(--dark-green);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 20px -5px rgba(26, 77, 46, 0.2);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -5px rgba(26, 77, 46, 0.3);
}
.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid rgba(13, 165, 64, 0.2);
}
.btn-secondary:hover {
  background-color: rgba(13, 165, 64, 0.05);
}
.bottom-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  opacity: 0.2;
  pointer-events: none;
}
.bottom-decoration span {
  color: var(--primary);
}
footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  background: transparent;
  z-index: 10;
}
