/* ================================
   SEDNBAD Temporary Page Styles
   ================================ */

:root {
  --primary: #B89463;
  --secondary: #131D33;
  --text-light: #f9f9f9;
  --text-dark: #222;
  --bg-light: #f4f4f4;
}

body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 90%;
  max-width: 480px;
}

/* Logo */
.logo {
  width: 500px;
  height: 140px;
  margin-bottom: 1.5rem;
}

/* Headings & Text */
h1 {
  color: var(--secondary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease-in-out;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #a58253;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: #0f1627;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #888;
}
