/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Font */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #1e1e2f;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Header Styles */
header {
  background-color: #2a2a40;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

header h1 {
  font-size: 2.5em;
  color: #ffffff;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #f0f0f0;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffa500;
}

/* Intro Section */
.intro {
  padding: 60px 20px;
  text-align: center;
}

.intro h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #ffa500;
}

.intro p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
}

/* Skill Sections */
.sections {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
}

.section-card {
  background-color: #2f2f47;
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
}

.section-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-card p {
  font-size: 1em;
  color: #cccccc;
}

.section-card audio {
  display: block;
  margin: 15px auto;
  width: 100%; 
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #2a2a40;
  font-size: 0.9em;
  color: #bbbbbb;
}
