/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #fff;
}

/* Header */
header {
    background-color: #2c2c2c;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Navigation */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo img {
    width: 40px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Adjust the right margin as needed */
  }
  
  .logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .logo i {
    margin-right: 8px;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #7289da;
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
  }

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(to bottom, #7289da, #5865f2);
    padding: 100px 20px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 40px;
  }

/* About Section */
.about {
    padding: 80px 20px;
}

.about h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #d1d1d1;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    gap: 40px;
}

.team-member {
    text-align: center;
    margin: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 16px;
    margin-bottom: 10px;
}

.discord-link {
    display: inline-block;
    background-color: #7289da;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.discord-link:hover {
    background-color: #5865f2;
}

.btn {
    display: inline-block;
    background-color: #7289da;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #5865f2;
}

/* Icon Styles */
.open-in-new-tab-icon {
  margin-left: 5px;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url('../img/open-new-tab.png');
  background-size: cover;
  vertical-align: middle;
}

/* Footer Styles */
footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 40px 20px 5px; /* Reduced bottom padding */
  }

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex-basis: auto;
}

.footer-left h3,
.footer-right h3,
.footer-social h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-left p {
  color: #d1d1d1;
}

.footer-right ul,
.footer-social ul {
  list-style-type: none;
  padding: 0;
}

.footer-right ul li,
.footer-social ul li {
  margin-bottom: 5px;
}

.footer-right a,
.footer-social a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover,
.footer-social a:hover {
  color: #7289da;
}

.footer-social a i {
  font-size: 20px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  nav li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    color: #fff;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}