/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Fonts */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding-bottom: 100px; /* for live chat spacing */
}

h1, h2 {
  color: #2a5d84;
  margin: 20px 0;
  text-align: center;
}

p {
  margin: 15px 0;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background-color: #2a5d84;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
  background-color: #18435e;
  gap: 1.5rem; /* added gap for better spacing */
  font-family: Arial, sans-serif;
}

.nav-menu li {
  /* Removed margin, gap handles spacing */
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.4em 0.8em;
  display: block;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
  text-decoration: underline;
  background-color: #1a3550;
  outline: none;
}

/* Main Content Sections */
main {
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.intro, .vote-section, .rules-section, .gallery-section, .category-section {
  margin-bottom: 40px;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Forms */
form {
  background: #f0f0f0;
  padding: 20px;
  margin: 20px auto;
  border-radius: 8px;
  max-width: 500px;
}

fieldset {
  border: none;
  padding: 10px;
}

legend {
  font-weight: bold;
  margin-bottom: 10px;
}

label {
  display: block;
  margin: 10px 0;
}

button {
  background-color: #2a5d84;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #18435e;
}

/* Share Buttons Section */
.share-buttons {
  text-align: center;
  margin-top: 40px;
}

.share-buttons h2 {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #2a5d84;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}

footer a {
  color: #c2e5ff;
  text-decoration: underline;
}

footer a:hover,
footer a:focus {
  text-decoration: none;
  color: #a1c9ff;
  outline: none;
}

/* Footer Navigation Styles */
#footer-nav {
  background-color: #1f4870; /* Slightly darker for contrast */
  padding: 1em 0;
  border-top: 1px solid #144060;
  width: 100%;
  box-sizing: border-box;
}

.footer-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 700px; /* widened to fit 7 links */
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.footer-nav-menu li a {
  text-decoration: none;
  color: #c2e5ff;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.3em 0.6em;
  border-radius: 4px;
}

.footer-nav-menu li a:hover,
.footer-nav-menu li a:focus {
  color: #81b3e6;
  outline: none;
  background-color: #163d65;
}

/* Chat Frame */
#chatango-container {
  margin-top: 40px;
}