@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Noto+Color+Emoji&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root{
--primary-color: #E6521F;
--secondary-color: #FB9E3A;
--surface-color: #FCEF91;
--background-color: #000000;
--gris-oscuro: #000000;
}

*{margin: 0;
box-sizing: border-box;
}
body{
    font-family:"Sansation";
    overflow-x: hidden;
}

html{
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
    margin-bottom: 0.5em;
}
p{
margin-bottom: 1em;
font-size: larger;
}
h1{
    font-size: 72px;
    font-weight:900;
    letter-spacing: -2px;
    margin-bottom: 0;
    text-align: right;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
}
h2{
    font-size: 40px;
    font-weight:900;
    letter-spacing: -2px;
    text-transform: none;
}
h3{
    font-size: 18px;
    font-weight:700;
    text-align: left;
    padding-top: 15px;
    
}

#main-header{
    background-color: #493c03;
    color: white;
}

#main-header p{
    margin-bottom: 0;
    font-size: 18px;
    text-align: right;
 
}

#Nosotros{
    background-color: #302002;
    color: white;
    font-size: 18px;
}

#Nosotros p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

#Noticias{
    background-color: #524612;
    color: white;
}

#history{
    background-color: #381e05;
    color: white;
    margin-bottom: 0
}

#eventos{
    background-color: #80480c;
    color: white;
}

#cursos{
    background-color: #302002;
    color: white;
}

#main-footer{
    background-color: var(--gris-oscuro);
    color: white;
    padding: 45px 0;
    font-size: 18px;
    text-align: center;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: black;
  color: rgb(255, 217, 0);
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
  background: transparent;
  font-size: 18px;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.container{
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    
}
.padded{
    padding-top: 30px;
    padding-bottom: 30px;
    
}
.row{
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
}

.col-12 img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.col-12 a:hover img {
  transform: scale(1.05);
  box-shadow:
    0 0 15px rgba(255,170,60,0.8),
    0 0 50px rgba(255,120,0,0.6);
}

.col-50{
    flex-basis: 50%;
    max-width: 50%;
}


.full-width {
  width: 100%;
  max-width: 1400px;   /* mismo ancho que otras secciones */
  margin: 0 auto;
  padding: 0 20px;
}

.img-fluid{
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
}
.vid-fluid{
    max-width: 100%;
    width: 100%;
    display: block;
 
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;  /* formato YouTube normal */
  border-radius: 12px;
  border: 0;
}

.video-item {
  position: relative;
}

.video-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 5px solid rgba(255,170,60,0);
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.video-item:hover::after {
  border-color: rgba(255,170,60,0.8);
}

.video-item h3 {
  font-size: 16px;
  margin: 8px 0 0 0;
  text-align: left;
}

.grid-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}



img, video{
    max-width: 100%;
    height: auto;
    display: block;
}
iframe[src*="spotify"] {
  display: block;
  max-width: 100%;
}
.youtube-grid {
  display: grid;
  gap: 16px;                 /* ← separación uniforme */
  margin-top: 25px;
}
/* PC */
@media (min-width: 1024px) {
  .youtube-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 600px) {
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media (max-width: 768px) {
  .youtube-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
    .grid-videos{
        grid-template-columns: 1fr;
    }
}

.yt-link {
  color: inherit;
  text-decoration: none;
}

.yt-link:hover {
  text-decoration: underline;
}

.facebook-card {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid #1877F2;
  border-radius: 10px;
}
.facebook-card a {
  color: #8ab4ff;
  text-decoration: none;
  font-weight: 600;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.social-card {
  padding: 22px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid #1877F2; /* Facebook azul */
  border-radius: 12px;
}

.social-card a {
  color: #8ab4ff;
  text-decoration: none;
  font-weight: 600;
}

.social-card a:hover {
  text-decoration: underline;
}

/* Tarjeta TikTok con color distinto */
.social-card.tiktok {
  border-left-color: #ff0050;
}

@media (max-width: 768px) {
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}
}
.social-grid h2 {
  margin-bottom: 12px;
}
.social-grid h2 {
    margin-bottom: 12px;
}
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .col,
  .col-50 {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
/* SOLO CELULARES */
@media (max-width: 768px) {
  .contenedor-albums {
    display: grid;
    grid-template-columns: 1fr; /* una sola columna */
    gap: 18px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  #Noticias p {
    text-align: left;
  }
}

#Noticias .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0;
}

#Noticias .col,
#Noticias .col-50 {
  flex: none;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}


#Noticias h3 {
  margin-top: 15px;
}

#Noticias p {
  margin-top: 10px;
}

/* MÓVIL */
@media (max-width: 768px) {
  #Noticias p {
    text-align: left;
  }
}

@media (max-width: 768px) {
  #Noticias .row {
    grid-template-columns: 1fr;
  }
}

