/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  background-color: #fefae0;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #023047;
}

/* Navigation */
nav {
  text-align: center;
  background-color: #ffb703;
  padding: 12px 0;
  margin-bottom: 30px;
  border-radius: 8px;
}

nav a {
  color: #023047;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
#hero {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}


/* General Section Styles */
section {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

section h2 {
  margin-bottom: 10px;
  color: #023047;
}

/* Lists */
ul {
  padding-left: 20px;
  list-style-type: square;
}

/* Contact Section */
#contact a {
  color: #fb8500;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #666;
}
#resume button {
  padding: 10px 20px;
  background-color: #3949ab;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

#resume button:hover {
  background-color: #1a237e;
}
#hero img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

#hero img:hover {
  transform: scale(1.2); /* Zooms 120% on hover */
}

