/* Stronger Visual Grid Background */
body {
  background-color: #480594;
  background-image:
    linear-gradient(rgba(236, 8, 58, 0.781) 1px, transparent 100px),
    linear-gradient(90deg, rgba(241, 238, 57, 0.08) 1px, transparent 10px);
  background-size: 160px 160px;
  background-attachment: fixed;
}



header h1 {
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #d4ff12;
  font-weight: bold;
}

nav a:hover {
  color: #00ff0d;
}

section {
  background: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.gallery-category {
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery-category h3 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.gallery img {
    width: 250px;        
    height: 250px;      
    object-fit: cover;   
    border-radius: 5px;  
}

.winner-category img,
.winner-image img {
    width: 300px;  
    height: 300px;     
    object-fit: cover; 
    border-radius: 6px;
    display: block;
    margin: 0 auto;   
}

a[href^="mailto:"] {
  color: #0077cc;
  font-weight: bold;
}

.vote-option img {
  width: 250px;     
  height: 180px;     
  object-fit: cover; 
  border-radius: 6px;
}

#footer-nav {
  text-align: center;
  margin-top: 10px;
}

#footer-nav a {
  color: #d4ff12; /* same color as your header nav */
  font-weight: bold;
  text-decoration: none;
  margin: 0 6px;
}

#footer-nav a:hover {
  color: #00ff0d;
}