/* General Reset and Typography */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Dosis', sans-serif;
    margin: 0;
    padding: 0;
    color: #333; /* Primary text color */
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0, 0, 0, 0.29) 100%), url(https://cdn.wanshow.bingo/resources/images/slots/contributors_background.jpg);
    background-size: 'cover';
    background-position: 'center';
    transition: 'background-image 1s ease-in-out';
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: #333;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.nav-logo img {
  height: 40px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 18px;
}

.nav-login a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Utility Classes */
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #333; /* Adjust to match your site's header */
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Sections */
section {
    margin: 20px 0;
}

h2 {
    font-size: 2em;
    color: #fff; /* Section title color */
    margin-bottom: 10px;
    margin-left: 10px;
}

/* Contributor Cards */
.contributor {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: calc(50% - 20px); /* Adjust for smaller size */
    float: left; /* Align side by side */
    margin-right: 10px;
    margin-left: 10px;
}

.contributor .social-links {
  margin-top: 10px;
}

.contributor .social-links a {
  color: #555;
  text-decoration: none;
  margin-right: 10px;
  font-size: 18px;
}

.contributor .social-links a:hover {
  color: #ff6600;
}

.contributor img {
    width: 60px; /* Smaller size */
    height: 60px;
    border-radius: 50%;
    margin-right: 15px; /* Space between image and text */
}

.contributor h3 {
    margin-top: 0;
    margin-bottom: 5px; /* Less space around the name */
}

.contributor p {
    margin: 0; /* Remove margin for compact layout */
    font-size: 0.9em; /* Smaller font size */
}

/* Stylized Website Cards */
.website-card {
    background-color: #eee; /* Light background for contrast */
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    padding-right: -20px;
    padding-left: -20px;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.website-card img {
    /* width: 50px; /* Logo size */
    height: 50px;
    margin-right: 15px;
}

.website-card button {
    background-color: #5865F2; /* Discord-like button color */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
}

.website-card button:hover {
    background-color: #4852a3; /* Darker on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contributor {
        flex-direction: column; /* Stack image and text on small screens */
        align-items: start;
    }

    .contributor img {
        margin-bottom: 10px;
    }

    .website-card {
        margin-left: 0; /* Full width on mobile */
        margin-right: 0;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contributor, .website-card {
        width: 100%; /* Full width on small screens */
        margin-right: 0;
    }
}

/* Discord Banner */
.discord-banner {
    display: flex;
    align-items: center;
    background-color: #5865F2;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.discord-icon {
    margin-right: 10px;
}

.footer {
    padding: 1rem 0;
    width: 100%;
    /* position: absolute; */
    bottom: 0;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-links {
    display: flex;
    align-items: center;
  }
  
  .footer-links a {
    color: #f2f2f2;
    text-decoration: none;
    margin-right: 1rem;
  }
  
  .footer-links a:hover {
    color: #e0e0e0;
  }
  
  /* Remove underline from footer & a href */
  .footer-links a:hover {
    text-decoration: none;
  }
  
  .footer-copyright {
    color: #f2f2f2;
    font-size: 0.9rem;
  }
  
  a {
    color: white;
  }
  
  a:hover {
    color: #ff6600;
  }

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contributor, .container {
        width: 100%;
    }

    header h1, h2 {
        font-size: 1.8em;
    }
}
