
.standard-header {
  background-size: cover;
  background-position: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-content {
  display: flex;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 4px #000;
}

.header-logo {
  width: 100px;
  height: 100px;
  border-radius: 25%;
}

.header-text {
  margin-left: 10px;
}

.header-text h1 {
  margin: 0;
  font-weight: bold;
}

.header-text h3 {
  margin: 0;
  font-weight: bold;
}


.nav-btn {
  padding: 25px 55px;
  cursor: pointer;
  border-radius: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  color: white;
  font-weight: bold;
  font-size: 24px;
  backdrop-filter: brightness(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
}




.container {
  display: flex;
  justify-content: center;
  margin-top: 30px
}

.contact-card:nth-child(3),
.contact-card:nth-child(4) {
  width: 320px;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 20px;
  flex-wrap: wrap;
  max-width: 1200px; 
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  color: white;
  padding: 40px;
  width: 320px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
  margin-top: 0;
}

  .contact-btn,
  .discord-btn,
  .github-btn  {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.2s ease;
  }

.contact-btn {
  background: rgb(53, 143, 191);
  color: white;
}

.contact-btn:hover {
  background: rgb(40, 120, 170);
}

.discord-btn {
  background: #5865F2;
  color: white;
}

.discord-btn:hover {
  background: #4752C4;
}
.github-btn {
  background: #2dba4e;
  color: white;
}

.github-btn:hover {
  background: #2c974b;
}

.welcome-text { 
  font-weight: bold;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.index-card {
  color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  
}

.index-card h2 {
  margin-bottom: 15px;
}

.index-card p {
  margin-top: 0;
}

.home-text {
  display: flex;
  flex-direction: column; 
  font-weight: bold;
  justify-content: center;
  align-items: center;
  max-width: 800px; 
  padding: 0 20px; 
  font-size: 18px; 
  line-height: 1.6;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .standard-header {
    flex-direction: column;
    padding: 10px;
  }
  
  .standard-header nav {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}

.staff-card {
  margin-bottom: 20px;
  color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  width: 320px;  
  text-align: center;
  font-size: 18px; 
  line-height: 1.6;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.staff-card:hover {
  transform: translateY(-5px);
}

/* light and dark mode */
:root {
  --bg-color: #f4f6f9;
  --text-color: #333333;

  .darkcontact {
    color:#000;
  }

  .gradient {
     background: linear-gradient(90deg, rgb(68, 165, 207) 0%, rgb(53, 143, 191) 50%, rgb(120, 161, 215) 100%);
  }
  
}


body.dark-mode {
  --bg-color: #1a2332;

  .darkcontact {
     color: white;
  }
.gradient {
 background: linear-gradient(90deg, rgb(34, 79, 99) 0%, rgb(38, 102, 136) 50%, rgb(97, 130, 173) 100%);
}

  
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

  .library-picture img {
    border-radius: 15px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
