
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f9f9f9;
  color: #2e2e2e;
  padding-top: 70px;
}


nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: #7a7a7a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #8c8c8c;
}


#hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: #f0f0f0;
  background: linear-gradient(135deg, #d3d3d3, #f0f0f0);
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #ccc;
}

#hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.button-row {
  display: flex;
  justify-content: center;
}

.btn {
  background: #d3d3d3;
  color: #2e2e2e;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn:hover {
  background: #bdbdbd;
  transform: scale(1.03);
}


#portfolio {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

#portfolio h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #444;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.project-card {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.project-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2e2e2e;
}

.project-card p {
  font-size: 0.95rem;
  color: #555;
}

.project-card a {
    text-decoration: none;
}

#about {
  padding: 80px 20px;
  background: #fafafa;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: auto;
  gap: 2rem;
}

.about-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.about-text {
  max-width: 600px;
  text-align: center;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

#contact {
  padding: 60px 20px;
  text-align: center;
  background: #f0f0f0;
  border-radius: 40px 40px 0 0;
}

#contact h2 {
  font-size: 1.8rem;
  color: #333;
}

#contact p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: #555;
}

#contact a {
  color: #444;
  text-decoration: underline;
}

#moodboard {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

#moodboard h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-inline: auto;
}

.mood-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}

.mood-item:hover {
  transform: scale(1.05);
}

.mood-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

#description-box {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #444;
  min-height: 1.5rem;
  transition: opacity 0.3s ease;
}