/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid #222;
}

.navbar h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.navbar p {
  color: #aaa;
  margin-top: 5px;
}

/* Layout */
.container {
  max-width: 900px;
  margin: 2rem auto;
  display: grid;
  gap: 20px;
  padding: 0 1rem;
}

/* Cards */
.card {
  background: #111;
  padding: 1.5rem;
  border-radius: 14px;
  border: 2px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

/* Text */
.card h2 {
  margin-bottom: 10px;
}

.card p,
.card li {
  color: #ccc;
  line-height: 1.6;
}

.card ul {
  list-style: none;
}

/* Links */
a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Contact Button */
.contact-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  transition: 0.2s;
}

.contact-btn:hover {
  opacity: 0.8;
}

/* My Work Links */
.work-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
