/* General body styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif; /* Modern font for a professional look */
  background-color: #0f172a; /* Deep dark background */
  color: #e2e8f0; /* Light text for contrast */
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

/* Header styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #1e293b; /* Subtle divider */
  padding-bottom: 20px;
}

header {
  background-color: #1e293b; /* Dark background for the header */
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #334155; /* Subtle divider */
}

header h1 {
  color: #38bdf8; /* Accent color for the title */
  font-size: 2.5em;
  margin: 0;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

header nav ul li a {
  color: #e2e8f0; /* Light text for links */
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #60a5fa; /* Lighter hover color */
}

/* Intro section styling */
.intro h1 {
  font-size: 3em;
  margin: 0;
  color: #38bdf8; /* Cool accent color */
}

.intro p {
  margin-top: 10px;
  color: #94a3b8; /* Muted text for secondary information */
}

.photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #38bdf8; /* Accent border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

/* Contact section styling */
.contact-section {
  background-color: #1e293b; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Elevated look */
}

.contact-section h2 {
  margin-bottom: 20px;
  color: #38bdf8; /* Accent color for headings */
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background-color: #334155; /* Dark input background */
  color: #e2e8f0; /* Light text */
  font-size: 1em;
}

form input::placeholder, form textarea::placeholder {
  color: #94a3b8; /* Muted placeholder text */
}

form button {
  padding: 12px 25px;
  background-color: #2563eb; /* Primary button color */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

form button:hover {
  background-color: #3b82f6; /* Lighter hover color */
  transform: scale(1.05); /* Slight zoom effect */
}

.response-message {
  margin-top: 10px;
  color: #10b981; /* Success message color */
}

/* Main content styling */
main {
  padding: 40px 20px;
  max-width: 960px;
  margin: auto;
  color: #e2e8f0; /* Light text for readability */
}

main h2 {
  color: #38bdf8; /* Accent color for section headings */
  font-size: 2em;
  margin-bottom: 10px;
}

main p {
  color: #94a3b8; /* Muted text for paragraphs */
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Footer styling */
.footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;
  color: #94a3b8; /* Muted footer text */
  border-top: 2px solid #1e293b; /* Subtle divider */
}

footer {
  background-color: #1e293b; /* Dark footer background */
  text-align: center;
  padding: 20px;
  color: #94a3b8; /* Muted footer text */
  border-top: 2px solid #334155; /* Subtle divider */
}

footer p {
  margin: 0;
  font-size: 0.9em;
}

/* Social links styling */
.social-links a {
  margin: 0 10px;
  color: #38bdf8; /* Accent color for links */
  text-decoration: none;
  font-size: 1.2em;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: #60a5fa; /* Lighter hover color */
  transform: translateY(-3px); /* Subtle lift effect */
}

a {
  color: #38bdf8; /* Accent color for general links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #60a5fa; /* Lighter hover color */
}
