/* ---- Global Styles ---- */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  color: #f0f0f0;
  background: url('images/tile-texture.jpg') center/cover fixed no-repeat;
}

/* Optional dark overlay for better readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

header {
  background-color: rgba(46, 59, 78, 0.9);
  color: #f4f4f4;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #c9a33c;
}

header h1 {
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 600;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #f4f4f4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* ---- Hero Section ---- */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #c9a33c;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: #ddd;
}

.hero .btn {
  background: #c9a33c;
  color: #1e1e1e;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #b38e31;
}

/* ---- Highlights ---- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.highlights div {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 10px;
  border-top: 4px solid #c9a33c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlights div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.highlights h3 {
  margin-bottom: 0.5rem;
  color: #f4f4f4;
}

.highlights p {
  color: #ccc;
}

/* ---- Footer ---- */
footer {
  background: rgba(46, 59, 78, 0.9);
  color: #f4f4f4;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 2px solid #c9a33c;
}

footer p {
  margin: 0.3rem 0;
}
