/* =================================
   RESET
================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background: #f6f6f6;
  -webkit-font-smoothing: antialiased;
}



/* =================================
   TYPOGRAPHY
================================= */

h1, h2, h3, h4, h5 {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 10px;
  color: #555;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity .2s ease;
}

a:hover {
  opacity: .8;
}

main {
  background:url('/wp-content/uploads/2026/03/tgcom24-site-background.jpg') center/cover no-repeat;
}



/* =================================
   IMAGES
================================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
}



/* =================================
   LAYOUT
================================= */

.container {
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 4rem 2rem;
}



/* =================================
   BUTTONS
================================= */

.button {
  display: inline-block;
  padding: 12px 26px;
  background: #cb2027;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: .03em;
  transition: all .25s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.35);
}



/* =================================
   HERO
================================= */

.hero {
  max-width: 1240px;
  min-height: 420px;
  margin: auto;
  color: white;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(2px);
}

.hero-overlay {
  max-width:1240px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
  padding:60px 30px;
}

.hero-logo {
  width: 300px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.6));
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 34px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 17px;
  color: #ddd;
}



/* =================================
   CONTENT
================================= */

.content {
  padding: 60px 40px;
  background: white;
  margin:auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}



/* =================================
   PROGRAM SLIDER
================================= */

.program-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.slides {
  display: flex;
  transition: transform .5s ease;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
}



/* SLIDER ARROWS */

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.6);
  color: white;
  border: none;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s ease;
}

.slider-prev { left: 15px; }
.slider-next { right: 15px; }

.slider-prev:hover,
.slider-next:hover {
  background: rgba(0,0,0,.9);
}



/* =================================
   PROVIDERS
================================= */

.providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin: 50px auto;
  max-width: 900px;
}

.provider {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .2s ease;
}

.provider:hover {
  transform: translateY(-4px);
}

.provider img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
  opacity: .85;
}

.provider span {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}



/* =================================
   VIDEO
================================= */

.video {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}



/* =================================
   TABLET
================================= */

@media (max-width: 980px) {

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-logo {
    width: 200px;
  }

}



/* =================================
   MOBILE
================================= */

@media (max-width: 580px) {

  .hero {
    padding: 40px 20px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-logo {
    width: 160px;
  }

  .content {
    padding: 40px 20px;
  }

  .providers {
    gap: 20px;
  }

  .provider img {
    height: 36px;
  }

  .provider span {
    font-size: 12px;
  }

}