/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #381918;
  color: #ffdfa2;
  overflow-x: hidden;
}

a {
  color: #ffdfa2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Banner Image */
.banner img {
  width: 100%;
  height: auto;
  max-height: 312px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.banner {
  width: 100%;
  overflow: hidden;
  background-color: #381918;
}

/* Navigation Bar (below banner) */
nav {
  display: flex;
  justify-content: center;
  background-color: #240e0e;
  padding: 1rem;
  gap: 2rem;
}

nav a {
  font-size: 1rem;
  font-weight: 600;
  color: #ffdfa2;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffdfa2;
}

/* Hero Section */
.hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1rem;
  color: #ffdfa2;
}

/* Featured Game Section */
.featured h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.featured p {
  font-size: 1rem;
}

.featured strong {
  font-weight: 700;
}

.featured-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.featured-text{
  flex: 0 0 auto;
  max-width: 250px;
  margin: 0;
}

.featured-image {
  flex: 1;
  max-width: 250px;
  text-align: right;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.social-banner {
  width: 100%;
  background-color: #240e0e;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #f3bf4d;
  border-bottom: 1px solid #f3bf4d;
  margin-top: 2rem;
}

.social-nav {
  display: flex;
  gap: 1.5rem;
}

.social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.social-nav a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.social-nav a:hover img {
  transform: scale(1.2);
  filter: brightness(1.2) drop-shadow(0 0 5px #ffdfa2);
}

.button {
  display: inline-block;
  background-color: #f3bf4d;
  color: #381918;
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #f3bf4d;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #f3bf4d;
  border-top: 1px solid #240e0e;
  margin-top: 2rem;
}
