/* contactus.css */
@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 Styles */
header {
  background-color: #2c2c2c;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.discord-link{
  color: #8f8dec;
}

.logo img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}

.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;
}

/* 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;
}

/* Contact Section */
.contact {
  padding: 100px 20px;
  background-color: #1e1e1e;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 8px;
}

.contact h2 {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.contact p {
  font-size: 18px;
  color: #cfcfcf;
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #242323;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7289da;
}

.form-group textarea {
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #636363;
}

.btn {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  background-color: #485fb3;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #5865f2;
}

/* 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);
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  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;
  }
}