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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f0f4f8;
  color: #333;
  padding: 20px;
}

header, nav, section, footer {
  max-width: 960px;
  margin: auto;
  margin-bottom: 40px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* Header */
header h1 {
  font-size: 2.2rem;
  color: #00796b;
}

header p {
  font-size: 1.1rem;
  color: #555;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-around;
  background: #00796b;
  padding: 12px 0;
  border-radius: 12px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

/* Sections */
section h2 {
  color: #00796b;
  margin-bottom: 16px;
  font-size: 1.8rem;
}

/* Image Grid */
#meet div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

#meet img {
  width: 150px;
  height: 195px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* CV Link */
#meet a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 16px;
  background-color: #00796b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

#meet a:hover {
  background-color: #005b4f;
}

/* List in Interests */
#interests ul {
  list-style: disc inside;
  padding-left: 0;
}

#interests li {
  margin-bottom: 10px;
}

/* Contact Form */
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form input[type="submit"] {
  background: #00796b;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

form input[type="submit"]:hover {
  background: #005b4f;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #666;
}

/* Responsive */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #meet div {
    flex-direction: column;
    align-items: center;
  }

  header, nav, section, footer {
    padding: 16px;
  }
}
