/* Neutral Redesign CSS for Lurline's Portfolio */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #f5f5dc; /* Beige background */
  color: #2c2c2c;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
}

.dark-mode {
  background-color: #1f1f1f;
  color: #e0e0e0;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
}

.profile-pic {
  width: 139px;
  height: 139px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin: 1rem auto 0;
}


header .container > div {
  max-width: 600px;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
  color: #555;
  text-align: center;
  margin-top: 2rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

button,
.btn {
  background-color: #2e2e2e;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

button:hover,
.btn:hover {
  background-color: #1f1f1f;
}

main {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.skill-card {
  background-color: #eeeeee;
  padding: 0.75rem;
  text-align: center;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.skill-card:hover {
  background-color: #dddddd;
}

.dark-mode .card,
.dark-mode .skill-card,
.dark-mode .project-card {
  background-color: #2c2c2c;
  color: #f0f0f0;
}

.dark-mode .skill-card:hover {
  background-color: #4a4a4a;
}

footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.8rem;
  color: #777;
  background-color: #f9f9f9;
}

.dark-mode footer {
  background-color: #1a1a1a;
  color: #ccc;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
}

.dark-mode input,
.dark-mode textarea {
  background-color: #2a2a2a;
  color: #eee;
  border-color: #444;
}
.decor-line {
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: #cccccc;
  top: 20px;
  left: 20px;
}

.decor-box {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #cccccc;
  top: 100px;
  right: 40px;
}

.decor-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#ccc 1px, transparent 1px);
  background-size: 10px 10px;
  top: 180px;
  left: 60px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .profile-pic {
    margin: 1rem auto 0;
  }
}

 
