/* Global Styles */
body {
  font-family: 'Pixelify Sans', 'Prompt', sans-serif;
  color: #5b4636;
  background-color: #f7f7f7; /* Changed to a light grey */
}

/* Navbar Styles */
.navbar {
  background-color: #d9bfa4;
}
.navbar-brand {
  font-weight: bold;
  color: #5b4636;
}
.nav-link {
  color: #5b4636;
}
.nav-link:hover {
  color: #a67c52;
}



/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #d9bfa4 0px, #d9bfa4 150px, #f7f7f7 100%); /* Gradient starts at 150px */
  color: #5b4636;
  padding: 50px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  color: #a67c52;
  text-shadow: 0 0 4px rgba(166, 124, 82, 0.2); /* Reduced shadow width and opacity */
  margin-bottom: 0.3em;
}
.hero p {
  font-size: 1.2em;
  color: #7d5a44;
  max-width: 500px;
  margin: 0 auto;
}

/* Button Styles */
.btn-primary {
  background-color: #a67c52;
  border: none;
  transition: background-color 0.2s;
}
.btn-primary:hover {
  background-color: #8c6239;
}

/* Section Titles */
.section-title {
  font-size: 2.5em;
  color: #5b4636;
  margin-bottom: 30px;
}

/* Card Styles */
.card {
  background-color: #e9d8c0;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Reduced shadow width and opacity */
  transition: transform 0.2s;
  max-width: 300px;
}
.card:hover {
  transform: translateY(-5px);
}
.card-custom {
  background: linear-gradient(135deg, #f4e4d4, #eadac6);
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Reduced shadow width and opacity */
  width: 100%;
  max-width: 100%;
}

/* Image Styling */
.featured-game img, .about-image {
  width: 100%;
  border-radius: 10px;

}

/* Testimonial Section */
.testimonial {
  margin: 30px 0;
  font-style: italic;
  color: #7d5a44;
}

/* Footer */
footer {
  background: #d9bfa4;
  padding: 20px;
  text-align: center;
  color: #5b4636;
}

/* About Section Specifics */
.about-heading {
  font-size: 1.8em;
  color: #a67c52;
  margin-bottom: 15px;
}
.about-text {
  font-size: 1.1em;
  color: #5b4636;
  line-height: 1.6;
  margin-top: 30px;
}
