* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f5f7fa;
  color: #1a1a1a;
}

/* Header */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: white;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #1DB954;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #1DB954;
}

.btn {
  background: #1DB954;
  color: white !important;
  padding: 8px 18px;
  border-radius: 20px;
}

.btn:hover {
  background: #169c46;
}

/* Hero */

.hero {
  text-align: center;
  padding: 100px 20px 80px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.hero button {
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  background: #1DB954;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #169c46;
}

/* Features */

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 10%;
  flex-wrap: wrap;
}

.feature-card {
  background: white;
  padding: 30px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

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

.feature-card h3 {
  margin-bottom: 15px;
  color: #1DB954;
}

.feature-card p {
  color: #555;
}

/* Footer */

footer {
  text-align: center;
  padding: 30px;
  background: white;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
}
/* Projects Page */

.projects-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.projects-hero h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.projects-hero p {
  color: #666;
}

.projects-grid {
  padding: 40px 10%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.project-card-large {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

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

.project-card-large h2 {
  margin-bottom: 15px;
  color: #1DB954;
}

.project-card-large p {
  margin-bottom: 20px;
  color: #555;
}

.project-card-large button {
  padding: 10px 22px;
  border: none;
  border-radius: 20px;
  background: #1DB954;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.project-card-large button:hover {
  background: #169c46;
}
.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 25px;
  background: #1DB954;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #169c46;
}
.project-btn {
  display: inline-block;
  padding: 10px 22px;
  border: none;
  border-radius: 20px;
  background: #1DB954;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.project-btn:hover {
  background: #169c46;
}
