@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    width: 100%;
    max-width: 1200px;
}

.ad-left, .ad-right {
    width: 160px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 5px;
}

.photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.photo img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    border: 5px solid #ff0064;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
    display: block;
}

.photo img:hover {
    transform: scale(1.05);
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px auto;
    max-width: 720px;
}

.thumbnail {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.thumbnail:hover {
    transform: scale(1.2);
    box-shadow: 0 0 8px #ff0064;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.btn {
    padding: 12px 25px;
    background: #ff0064;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: #e6005c;
    transform: scale(1.05);
}

.ad-banner {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
    background: #222;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.footer {
    width: 100%;
    background: #111;
    color: #aaa;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer p {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.live-webcam-btn {
    padding: 12px 25px;
    background: #ff0064;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.live-webcam-btn:hover {
    background: #e6005c;
    transform: scale(1.05);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centra los iconos horizontalmente */
  gap: 10px; /* Espacio entre iconos, ajusta según tu diseño */
  padding: 10px 0;
}
.social-links a {
  flex: 0 0 auto; /* Evita que se estiren demasiado */
  min-width: 40px; /* Tamaño mínimo del icono */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease
}


.social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff0064;
}

.social-icon i {
    font-size: 20px;
}

.social-links a:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .ad-left {
        margin-bottom: 10px;
    }
    .ad-right {
        margin-top: 10px;
    }
    .photo {
        order: 2;
    }
    .ad-left {
        order: 1;
    }
    .ad-right {
        order: 3;
    }
    .photo img {
        max-width: 100%;
        border-radius: 10px;
        border-width: 3px;
    }
    .buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn, .live-webcam-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .ad-banner {
        margin: 10px auto;
        padding: 10px;
    }
}

.webcam-link {
    color: #ff0064;
    font-weight: bolder;
    border: 2px solid #ff0064;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.webcam-link:hover {
    background-color: #ff0064;
    color: #fff;
}



@media (max-width: 600px) {
  .social-links a span {
    display: none;
  }
  .social-links a {
    padding: 10px;
    min-width: 0;
    font-size: 1.3em;
    justify-content: center;
  }
  .social-links {
    gap: 6px;
    padding: 6px 0;
  }
  .social-icon i {
    font-size: 1.5em;
  }
}






.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 20px 0;
}

.video-item {
    width: 340px;
    background: #222;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    text-align: center;
}

.video-item h2 {
    margin-bottom: 8px;
    color: #ff0064;
    font-size: 1.05em;
}

.video-item video {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 6px;
}

@media (max-width: 800px) {
  .video-item {
    width: 100%;
    max-width: 340px;
  }
  .video-gallery {
    gap: 14px;
  }
}
