/* assets/style.css */

/* Reset + font global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* Linkuri */
a {
  color: #d4af37;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* NAVBAR */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #111;
  border-bottom: 1px solid #222;
}

.nav .logo {
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
}

.nav a {
  margin-left: 15px;
  color: #ccc;
  font-weight: 500;
}

.nav a.active,
.nav a:hover {
  color: #d4af37;
}

/* CONTAINERE + CARDURI */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #d4af37;
}

.card {
  background: #111;
  border: 1px solid #222;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.card h2 {
  color: #d4af37;
  margin-bottom: 15px;
}

.card p,
.card li {
  color: #ccc;
}

/* BUTOANE */
.btn {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn.secondary {
  background: #444;
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
}

/* TABELE */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.table th,
.table td {
  padding: 10px;
  border: 1px solid #333;
  text-align: left;
}

.table th {
  background: #222;
  color: #d4af37;
}

.table tr:nth-child(even) {
  background: #151515;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #222;
  color: #777;
  margin-top: 50px;
  font-size: 14px;
}