body{
    font-family: 'roboto´', sans-serif;
    margin: 0;
    overflow-x:hidden;
}

h1{font-size: 2.4em;}
h2{ font-size: 2.7em;}

.container{
    max-width: 1400px;
    margin: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #212425;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  color: #f9f9f9;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ff0000;
  font-weight: bold;
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

#hero{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 100vh;
    color: #f9f9f9;
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    )
        ,url(IMG/tt.jpeg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
}

button{
    font-size: 1em;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: rgb(0, 146, 0);
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

button:hover{
    background-color: rgb(0, 193, 0);
}

#nuestras-redes {
    text-align: center;
    padding: 40px 5px;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

#nuestras-redes h2 {
    margin-bottom: 30px;
    font-size: 26px;
    color: #333;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}

.social-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 12px;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(33, 33, 33, 0.15);
}

/* Icon size */
.social-buttons a i {
    font-size: 20px;
}

/* Colores base */
a.discord { background-color: #5865F2; }
a.instagram { background-color: #E1306C; }
a.steam { background-color: #171A21; }
a.facebook { background-color: #1877F2; }
a.tiktok { background-color: #000000; }

/* Hover con brillo */
.social-buttons a:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    filter: brightness(1.1);
}

/* Efecto al hacer clic */
.social-buttons a:active {
    transform: scale(0.96);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer {
  background: black;
  padding: 15px 0;
  text-align: center;
  color: gray;
  font-size: 0.8em;
}

.footer .row {
  margin: 10px 0;
}

.footer .row a {
  text-decoration: none;
  color: gray;
  transition: 0.5s;
}

.footer .row a:hover {
  color: white;
}

.footer .row ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .row ul li {
  display: inline-block;
  margin: 0 15px;
}

.footer .row a i {
  font-size: 1.5em;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    background-color: #212425;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }

  .navbar.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .footer .row ul li {
    display: block;
    margin: 10px 0;
  }
}