/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}
  
header {
    text-align: center;
    padding: 40px 20px 20px;
}
  
.logo h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

.logo h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

.gradient-text {
    display: inline-block; /* isso aqui é essencial pra animar */
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
    animation: float 3s ease-in-out infinite;
  }
  
  
.logo .social a {
    display: inline-block; /* <- isso aqui faz a mágica acontecer */
    color: #fff;
    font-size: 2em;
    margin: 0 15px;
    transition: color 0.3s ease;
    animation: float 3s ease-in-out infinite;
  }
  
.logo .social a:hover {
    color: #1DA1F2; /* Light Twitter Blue */
}

/* Gallery styles (not used currently but kept for future use) */
.gallery {
    column-count: 3;
    column-gap: 20px;
    padding: 20px;
}
  
.photo {
    margin-bottom: 20px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
  
.photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
  
.photo:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}
  
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
  
@media (max-width: 1024px) {
    .gallery {
      column-count: 2;
    }
}
  
@media (max-width: 600px) {
    .gallery {
      column-count: 1;
    }
    .logo .social a {
      font-size: 1.5em;
    }
}

/* Footer styling */
footer {
  text-align: center;
  padding: 20px;
}
