@import '../fonts/fonts.css';

.front-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #e8d5b7;
  font-family: 'ScheherazadeRW', 'Noto Naskh Arabic', serif;
  position: relative;
  overflow: hidden;
}

.front-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232, 213, 183, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232, 213, 183, 0.03) 0%, transparent 50%);
}

.front-page .border-frame {
  position: absolute;
  inset: 3rem;
  border: 1px solid rgba(232, 213, 183, 0.15);
  pointer-events: none;
}

.front-page .border-frame::before,
.front-page .border-frame::after {
  content: '';
  position: absolute;
  width: 6rem;
  height: 6rem;
  border-color: #c5a56b;
  border-style: solid;
}

.front-page .border-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.front-page .border-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.front-page .border-frame .corner-br,
.front-page .border-frame .corner-tl {
  position: absolute;
  width: 6rem;
  height: 6rem;
  border-color: #c5a56b;
  border-style: solid;
}

.front-page .border-frame .corner-br {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.front-page .border-frame .corner-tl {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.front-page h1 {
  font-size: 6rem;
  font-weight: 700;
  margin: 0 0 2rem;
  color: #d4af37;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.front-page .divider {
  width: 10rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c5a56b, transparent);
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.front-page .divider::before,
.front-page .divider::after {
  content: '◆';
  position: absolute;
  color: #c5a56b;
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.front-page .divider::before {
  left: -2rem;
}

.front-page .divider::after {
  right: -2rem;
}

.front-page .author {
  font-size: 3rem;
  color: #e8d5b7;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.front-page .author-label {
  font-size: 1.6rem;
  color: #a08060;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}
