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

html {
  scroll-behavior: smooth;
}

body {
  background: #0d0d0d;
  color: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

/* ACCENT COLOR */
.accent {
  color: #c37bff;
}

/* CONTAINER */
.container {
  width: 85%;
  max-width: 1100px;
  margin: auto;
}

/* NAVIGATION */
header {
  width: 100%;
  padding: 20px 0;
  background: #0f0f0f;
  position: fixed;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #222;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 24px;
  color: white;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #d6d6d6;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c37bff;
}

/* MOBILE MENU ICON */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-text h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #cccccc;
}

/* BUTTONS */
.btn {
  padding: 12px 25px;
  background: #c37bff;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #e4b2ff;
}

.btn.small {
  padding: 8px 18px;
  font-size: 14px;
}

/* SECTIONS */
.section {
  padding: 120px 0;
}

.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #c37bff;
}

.about-text {
  line-height: 1.8;
  font-size: 17px;
  color: #dddddd;
}

/* PROJECT GRID */
.projects-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 30px;
}

.project-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #2c2c2c;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: #c37bff;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #0f0f0f;
  color: #777;
  margin-top: 40px;
}

/* EMAIL LINKS — match "Visit Project" button color */
.email-link {
  color: #c37bff;        /* same purple as buttons */
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.email-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* RESPONSIVE MENU */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    right: 20px;
    top: 80px;
    padding: 20px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
