/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #141414; /*  dark background */
    color: #ffffff;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background-color: #141414;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e50914; 
}

header nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #e50914;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-image: linear-gradient(to bottom, rgba(20, 20, 20, 0.7), #141414);
    background-color:grey;
    color: #ffffff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    padding: 10px 0px;

}

/* Team Section */
.team {
    padding: 50px;
    text-align: center;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    background: #1c1c1c;
    border-radius: 10px;
    width: 250px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.7);
}

.team-member img {
    border-radius: 50%;
    width: 190px;
    height: 190px;
    margin-bottom: 15px;
    border: 2px solid #e50914;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #e50914;
}

.team-member p {
    font-size: 0.9rem;
    color: #bbbbbb;
}

/* Footer */
footer {
    background-color: #1c1c1c;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

footer a {
    color: #e50914;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-btns {
    position: absolute;  /* /!!!!/ */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 170px;
    /* background: linear-gradient(149deg, #192247 0%, #210e17 96.86%); */
}

.about-btn, .signin-btn, .sup-btn, .home-btn, .get-btn {

    padding: 10px 30px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.about-btn {
    background-color: #e50914;
    color: white;
    text-decoration: none;
  }
  
  .about-btn:hover {
    background-color: #c11119;
  }
  
  .home-btn {
    background-color: #e50914;
    color: white;
    text-decoration: none;
  }
  
  .home-btn:hover {
   background-color: #c11119;
  }
  
  .sup-btn {
   
    background-color: #e50914;
    color: white;
    text-decoration: none;
  }
  
  .sup-btn:hover {
   background-color: #c11119;
  }
  
  .get-btn {
    background-color: #e50914;
    color: white;
    text-decoration: none;
  }
  
  .get-btn:hover {
    background-color: #c11119;
  }