/* EuroArt Landing — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #0f0f1a;
  color: #e8d5b0;
  min-height: 100vh;
}

/* ── Nav ──────────────────────────────────────── */
.nav {
  height: 64px;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  position: relative;
  z-index: 100;
}

.nav-brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #e8d5b0;
  text-decoration: none;
}

.btn-login {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.5);
  color: #c9a96e;
  padding: 0.45rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-login:hover {
  background: rgba(201,169,110,0.1);
  border-color: #c9a96e;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  background-image: url('/admin/raphael-school-of-athens.jpg');
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,20,0.62);
}

.hero-card {
  position: relative;
  z-index: 1;
  background: rgba(15,15,30,0.88);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 4px;
  padding: 3rem 3.5rem;
  max-width: 540px;
  width: calc(100% - 2rem);
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #f0e8d4;
  margin-bottom: 1.25rem;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #c8b990;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: #8b6914;
  color: #f0e8d4;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.btn-primary:hover { background: #a07c1e; }

/* ── Login modal ──────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: rgba(15,15,30,0.97);
  border: 1px solid rgba(232,213,176,0.25);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: #b8a882;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.modal-close:hover { color: #e8d5b0; }

.modal-title {
  color: #e8d5b0;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
  text-align: center;
  letter-spacing: 0.06em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  color: #b8a882;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.form-group input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,213,176,0.3);
  border-radius: 3px;
  padding: 0.6rem 0.8rem;
  color: #f0e8d4;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
.form-group input:focus { border-color: rgba(201,169,110,0.6); }

.form-error {
  color: #f87171;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  background: rgba(248,113,113,0.12);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 3px;
  margin-bottom: 0.75rem;
}
.form-error[hidden] { display: none; }

.btn-submit {
  width: 100%;
  background: #8b6914;
  color: #f0e8d4;
  border: none;
  border-radius: 3px;
  padding: 0.7rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  margin-top: 0.25rem;
}
.btn-submit:hover { background: #a07c1e; }
.btn-submit:disabled { background: #4a3f2a; cursor: not-allowed; }

/* ── Pricing page ─────────────────────────────── */
.pricing-main {
  padding: 4rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pricing-header h1 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #f0e8d4;
  margin-bottom: 0.75rem;
}
.pricing-header p {
  font-size: 1.05rem;
  color: #b8a882;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
}
.plan-card--featured {
  border-color: rgba(201,169,110,0.5);
  background: rgba(201,169,110,0.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b6914;
  color: #f0e8d4;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 400;
  color: #f0e8d4;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}
.plan-price span { font-size: 1rem; color: #b8a882; }

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.plan-features li {
  font-size: 0.95rem;
  color: #c8b990;
  line-height: 1.5;
}

.btn-plan {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.7rem;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.07);
  color: #e8d5b0;
  border: 1px solid rgba(201,169,110,0.3);
  transition: background 0.2s;
}
.btn-plan:hover { background: rgba(255,255,255,0.12); }
.btn-plan--gold { background: #8b6914; border-color: #8b6914; color: #f0e8d4; }
.btn-plan--gold:hover { background: #a07c1e; border-color: #a07c1e; }

.pricing-footer {
  text-align: center;
  color: #b8a882;
  font-size: 0.95rem;
  border-top: 1px solid rgba(201,169,110,0.15);
  padding-top: 2rem;
}
.pricing-footer a { color: #c9a96e; text-decoration: none; }
.pricing-footer a:hover { text-decoration: underline; }

.site-footer-legal {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  z-index: 1;
}
.site-footer-legal a { color: #c9a96e; text-decoration: none; }
.site-footer-legal a:hover { text-decoration: underline; }
