/* css/category-gospel.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

header {
  background-color: #111;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-top: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}


.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff6600;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff6600;
}


.nominees-container {
  padding: 2rem;
  text-align: center;
}

.nominees-container h2 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.nominees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.nominee-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}

.nominee-card img {
  width: 100%;
  height: auto;
  display: block;
}

.nominee-card h3 {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.vote-btn {
  display: inline-block;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}

.vote-btn:hover {
  background-color: #e65c00;
}

footer {
  background-color: #eee;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nominees-grid {
    grid-template-columns: 1fr;
  }

  .nominee-card h3 {
    font-size: 1rem;
  }
}
