/*
 * Fox by FreeHTML5.co
 * Twitter: https://twitter.com/fh5co
 * Facebook: https://fb.com/fh5co
 * URL: https://freehtml5.co
 */

/* ================================
   RESET BASE
=================================== */
html, body {
  margin: 0;
  padding: 0;
  color: #fff !important;
  font-family: 'Roboto', sans-serif;
}


body .bg-img {
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 100px;
}
body nav {
  background-color:#951717;
}body nav .navbar-nav a {
  position: relative;
  display: inline-block;font-size: 40px;
  text-transform: uppercase;
  color: #fff !important;
  transition: all 0.3s;
}

body nav .navbar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 2px;
  width: 100%;
  background-color: #ff8013;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

body nav .navbar-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
} 
body nav .navbar-nav .btn-danger {
  background: #ff8013;
  border-color: #ff8013;
  border-radius: 0;
}
body nav .navbar-nav .btn-danger:hover {
  background: #df6700;
  border-color: #df6700;
}

a, a:hover {
  color: #ff8013;
}

.mt-50 { margin-top: 50px; }
.mb-30 { margin-bottom: 300px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.card {
  background-color: rgba(0, 0, 0, 0.85) !important;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 128, 19, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none !important;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 128, 19, 0.3);
}
.card-img-top {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.card-text {
  font-size: 1rem;
  color: #fff !important;
  line-height: 1.5;
}



@media (max-width: 767px) {
  .card-img-top {
    max-width: 100%; /* Le immagini si adattano alla larghezza su dispositivi più piccoli */
    height: auto;
   }
}

.fh5co-banner-text-box {
  position: relative;
  max-height: 50px;
  display: inline-block;
  margin-top: 10px;
  padding-top: 30px; /* Sposta il titolo verso l'alto */
  padding-bottom: 600px;
}

 .fh5co-banner-text-box .quote-box {
    min-height: 250px;
    padding: 30px 20px;
  }

.fh5co-banner-text-box .quote-box h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 100;
  color: #fff;
  font-size: 50px;
  line-height: 1.8;
  margin: 0;
  white-space: nowrap;  /* Rimuove margini in eccesso */
}

.fh5co-banner-text-box .quote-box h2 span {
  font-size: 30px;  /* Evidenziazione testo */
  font-weight: bold;
}

/* Parentesi graffe come immagini, centrate verticalmente */
.fh5co-banner-text-box .quote-box::before,
.fh5co-banner-text-box .quote-box::after {
  content: "";
  position: absolute;
  height: 38px;
  width: 38px;
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  transform: translateY(-50%);
}

.fh5co-banner-text-box .quote-box::before {
  left: -45px;
  background-image: url("../images/left-quote.png");
}

.fh5co-banner-text-box .quote-box::after {
  right: -45px;
  background-image: url("../images/right-quote.png");
}
/* Contenitore centrale */
.banner-text-box {
  display: flex;
  justify-content: center; /* centro orizzontale */
  align-items: center;    /* centro verticale */
  min-height: 300px;      /* altezza minima del box */
  text-align: center;
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  padding: 2rem;
}
/* Titolo radio con massimo risalto */
.radio-title .title-main {
  color: #ffffff; /* colore neon rosa acceso */
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 4rem; /* più grande del sottotitolo */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
  animation: neonGlow 2s infinite alternate;
}

/* Sottotitolo discreto */
.radio-title .title-sub {
  font-size: 1.5rem; /* più piccolo rispetto al titolo */
  color: #ffffff; /* bianco semi-trasparente */
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  margin-top: 0.3em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  animation: none; /* niente animazione per il sottotitolo */
}

/* Animazione neon del titolo */
@keyframes neonGlow {
  0% {
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
  }
  50% {
    text-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 45px #ff0000;
  }
  100% {
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
  }
}


/* Separator trasparente sottile, per dare respiro */
.separator-transparent {
  width: 60px;
  height: 2px;
  margin: 30px auto;
  background-color: rgba(255, 0, 0, 0.3); /* Rosso trasparente */
  border-radius: 1px;
}

/* Link box */
.fh5co-banner-text-box a {
  color: #fff;
  border: 1px solid #000000;
  border-radius: 0;
  min-width: 150px;
  display: inline-block;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.fh5co-banner-text-box a:hover {
  background: transparent;
  border-color: rgb(0, 0, 0);
  color: #ffffff;
}

/* Sezione network */
.fh5co-network {
  background-color: #000000;
  padding: 60px 0 40px 0;
  color: #fff;
}

.network-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff3c3c; /* Rosso logo */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testo descrizione network */
.network-description {
  font-size: 1rem;
  line-height: 1.6; /* ridotto per migliore leggibilità */
  color: #ffffff; /* era nero, ma su sfondo nero non si vede */
  max-width: 600px;
  margin: 0 auto;
  padding-top: 10px;
}


/* Sezione ABOUT US */
.fh5co-about-us {
  position: relative;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  background-image: url('../images/sfondodef.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fh5co-about-us::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.4); /* overlay più scuro per contrasto */
  z-index: 1;
}

/* Titolo ABOUT US */
.titleabout {
  font-size: 3rem;
  font-weight: 900;
  color: #ff00de; /* colore neon simile al titolo radio */
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2; /* sopra l’overlay */
}

/* Box contenuto ABOUT US */
.about-content {
  position: relative;
  z-index: 2; /* sopra overlay */
  background: linear-gradient(135deg, rgba(26,42,108,0.9), rgba(178,31,31,0.9));
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 1000px;
  margin: 0 auto;
}

.about-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
} 

* Testo ABOUT US */
.about-text { text-align: justify;
  line-height: 1.6; /* migliora la leggibilità */
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Pulsante */
.about-link {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.parallax-separator {
    pointer-events: none; 
    }
.btn.btn-dark {
    position: relative; 
    z-index: 15; /* sopra .about-content */
    cursor: pointer; /* assicura il cursore mano */
}

/* Responsive migliorato */
@media screen and (max-width: 768px) {
  .fh5co-about-us {
    padding: 60px 0;
  }
  
}

  .about-content {
    padding: 20px 15px;
  }

  .about-title {
    font-size: 1.8rem; /* leggibile ma compatto */
    margin-bottom: 15px;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.5;
  }

@media screen and (max-width: 480px) {
  .fh5co-about-us {
    padding: 50px 0;
  }
}

  .about-content {
    padding: 15px 10px;
    border-left: 4px solid #ff3c3c;
    border-radius: 8px;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-text {
    font-size: 0.95rem;
  }
  .parallax-separator {
  height: 100px;
 background-image: url('../images/sfondodef.JPG');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.fh5co-network figure, .fh5co-about-us figure {
  margin-top: -70px !important;
}
.fh5co-about-us h2 {
  font-size: 2.5rem;
  color: #ff3c3c;
  font-weight: 700;
  margin-bottom: 20px;
}

.fh5co-about-us h4 {
  font-size: 1.4rem;
  color: #ffffff;
}
.fh5co-network h4, .fh5co-about-us h4, .fh5co-network h5, .fh5co-about-us h5, .fh5co-network p, .fh5co-about-us p {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}
.fh5co-network hr, .fh5co-about-us hr {
  border-color: #ffffff;
  border-width: 5px;
  max-width: 100px;
  margin-left: 0;
  border-radius: 5px;
}
.fh5co-network figure, .fh5co-about-us figure {
  text-align: center;
} 
.fh5co-about-us p {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
}

.fh5co-about-us hr {
  border-color: #ffffff;
  margin-left: 50px;
  margin-top: 5px;
}
.fh5co-about-us a {
  color: #fff !important;
  border-color: #000000;
  border-radius: 0;
  min-width: 150px;

}
.fh5co-about-us a:hover {
  background: transparent;
  border-color: rgb(0, 0, 0);
  color: #000000;
}.fh5co-content-box .pr-0 img {
  margin-top: -128px;
}

.quote-box2 h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
}

.fh5co-content-box img {
  width: 100%;
}
.fh5co-content-box .card-img-overlay {
  color: #ffffff;
  text-align: center;
  top: 35%;
}
.breaking-news {
  font-size: 1.0rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  margin-right: 15px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.fh5co-content-box .trainers {
  position: relative;
  padding: 50px 30px;
  margin: 50px 0;
  background: url("../images/doctor.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
}
.fh5co-content-box .trainers .bg-50 {
  background: rgba(0, 0, 0, 0.3);
}
.fh5co-content-box .trainers .card {
  border: none;
  background: transparent;
}
.fh5co-content-box .trainers .card img {
  max-width: 250px;
  margin: 0 auto;
  max-height: 250px;
}
.fh5co-content-box .trainers .card .card-body {
  background: #000000;
  border-radius: 15px;
  padding: 50px 30px;
  margin: 50px 0;
  padding-bottom: 50px;
}
.fh5co-content-box .trainers .card .card-body::before {
  content: "";
  position: absolute;
  border: 20px solid #e0e0e0;
  border-color: transparent transparent #ffffff transparent;
  margin-top: -70px;
  text-align: center;
  margin-left: -15px;
}
.fh5co-content-box .trainers .quote-box2 {
  color: #fff;
  max-width: 200px;
  position: relative;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}
.fh5co-content-box .trainers .quote-box2::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 0;
  top: -10px;
  background: url("../images/right-quote-white.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.fh5co-content-box .trainers .quote-box2::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: url("../images/left-quote-white.png");
  background-repeat: no-repeat;
  right: 0;
  bottom: -10px;
  background-size: 100% 100%;
}
.fh5co-content-box .trainers::before, .fh5co-content-box .trainers::after {
  content: "";
  position: absolute;
  border: 5px solid #ff8013;
  width: 100%;
  top: -10px;
}
.fh5co-content-box .trainers::before {
  bottom: -10px;
  top: auto;
}
.fh5co-content-box .gallery .card {
  border: none;
  background: transparent;
}
.fh5co-content-box .gallery .card img {
  border-radius: 0;
  max-height: 580px;
}
.fh5co-content-box .gallery .card .card-body {
  background: #ff8013;
}
.fh5co-content-box .gallery .card .card-body h4 {
  color: #ffffff;
}

/* Personalizzazione sezioni principali */

.video-box .card,
.podcast-box .card,
.live-shows-box .card,
.on-tour-box .card {
  background-color: #000;  /* sfondo nero */
  color: #fff;             /* testo bianco */
}


/* Titoli delle card */
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff; /* colore tema Radio Studio Doc */
}

/* Testo delle card */
.card-text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}

/* Immagini circolari */
.card-img-top.rounded-circle {
  max-width: 200px;
  margin: 0 auto;
  border: 4px solid #d12229;
  padding: 5px;
}

/* WOW.js Animazioni - Opzionale */
.wow {
  visibility: hidden;
}

.wow.animate__animated {
  visibility: visible;
}

.fh5co-content-box .gallery .card .card-body p {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}.white-text {
  color: rgb(255, 255, 255);
}
.card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.transparent-card {
  background-color: rgba(0, 0, 0, 0.6); /* nero con 60% opacità */
  color: #fff;
  padding: 0px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.bg-gallery {
  background-image: url('../images/images.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

  .text-contact {
    color: #FF8013;
  }

  .contact-box {
    background-color: #fdfdfd;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
.footer3 h5,
.footer3 p {
  color: #ffffff;
}

.footer3 p a {
  color: #ffffff !important;
  text-decoration: underline;
}

  .footer3 {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
  }

  .footer3 h5 {
    color: #FF8013;
    font-weight: bold;
    margin-top: 15px;
  }

  .footer3 p {
    margin-bottom: 10px;
  }

  .social-links ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-links li img {
    width: 35px;
    height: 35px;
  }

  @media (max-width: 767px) {
    .contact-box, .footer3 {
      text-align: center;
      margin-top: 20px;
    }
  }

  footer {
  background: #101011;
  color: #ffffff;
}
footer .footer1 p {
  margin-top: 30px;
}
footer .footer2 h4 {
  color: #ff8013;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 20px auto;
}
footer .footer2 .form-box {
  background: #fff;
  padding: 20px 30px;
  margin-top: -30px;
}
footer .footer2 input[type='text'], footer .footer2 input[type='email'] {
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #000;
}
footer .footer2 input[type='text']:focus, footer .footer2 input[type='email']:focus {
  box-shadow: none;
  border-color: #ff8013;
}
footer .footer2 .btn {
  min-width: 150px;
  border-radius: 0;
}
footer .footer2 ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #262626;
}
footer .footer2 ::-moz-placeholder {
  /* Firefox 19+ */
  color: #262626;
}
footer .footer2 :-ms-input-placeholder {
  /* IE 10+ */
  color: #262626;
}
footer .footer2 :-moz-placeholder {
  /* Firefox 18- */
  color: #262626;
}
footer .footer3 {
  padding-top: 50px;
}
footer .footer3 a {
  background: #fff;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  padding: 0;
  padding-top: 5px;
}
footer .footer3 a:hover {
  background: #ff8013;
}
  .text-contact {
    color: #FF8013;
  }


footer .footer3 .nav-item li {
  margin: 0 5px;
}
footer .table td, footer .table th {
  border: none;
}

footer::before {
  content: "";
  position: absolute;
  border: 3px solid #ff8013;
  width: 100%;
  left: 0;
}

@media (max-width: 1199px) {
  .fh5co-content-box .pr-0 img {
    margin-top: -107px;
  }
}
@media (max-width: 991px) {
  .fh5co-content-box .pr-0 img {
    margin-top: -78px;
  }
  .fh5co-content-box .card-img-overlay {
    top: 20%;
  }
}
@media (max-width: 767px) {
  body nav .navbar-nav {
    margin-left: 0 !important;
    max-width: 50px;
  }

  .fh5co-network figure, .fh5co-about-us figure {
    margin-top: 0 !important;
  }

  .fh5co-content-box .pr-0 img {
    margin: 20px auto;
  }
  .fh5co-content-box .col-md-5 {
    padding: 0 !important;
  }
  .fh5co-content-box .col-md-7 {
    padding: 0 !important;
  }

  .gallery .card {
    margin-bottom: 25px;
  }

  .footer1 {
    min-height: 150px;
  }

  .footer2 .form-box {
    margin-top: 0 !important;
  }
} 
/* Riduzione bordi e spazi vuoti */
.container,
.container-fluid {
  padding-left: 5px;
  padding-right: 5px 
}

.row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}

[class*="col-"] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

/* Riduci margini globali */
body, html {
  margin: 0;
  padding: 0;
}
/* FIX SOVRAPPOSIZIONI SEZIONI */
.fh5co-content-box .trainers .card .card-body {
  margin: 20px 0;
  padding: 30px 20px;
}

.news-section,
#news,
.breaking-news-box,
iframe {
  margin-bottom: 30px;
}

.parallax-separator {
  height: 150px;
  margin: 40px 0;
}

iframe {
  display: block;
  clear: both;
}

 /* Assicura che il ticker immagini sia sempre visibile */
.news-section iframe {
  height: 200px;         /* aumenta l’altezza */
  display: block;
  position: relative;
  z-index: 5;            /* sta sopra altri elementi */
  margin-bottom: 30px;   /* spazio sotto */
}

.fh5co-content-box,
.card,
.quote-box,.quote-box2,
.breaking-news-box,
.video-box,
.podcast-box,
.live-shows-box,
.on-tour-box,
.contact-box { 
  color: #fff !important;            /* testo bianco */
  border: none !important;
  box-shadow: none !important;
}



/* 🔹 Stile ticker anestesia */
.quote-box2 {
  background-color: #000;
  color: white;
  padding: 40px 30px;       /* spazio interno */
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgb(255, 0, 0);
  margin: 20px auto;        /* margine uniforme */
  max-width: 800px;         /* larghezza massima */
}

/* 🔹 Breaking News più compatto e centrato */
.breaking-news-box .card {
  max-width: 400px !important; /* ridotto */
  margin: 20px auto !important;
  background-color: #111 !important; /* leggero contrasto */
  border: 1px solid #333;
}

/* 🔹 Nasconde un eventuale doppio titolo */
.breaking-news-box .card-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Se vuoi eliminare il titolo duplicato */
.breaking-news-box h4.card-title:first-child {
  display: none;
} 
@media (min-width: 992px) {
  .fh5co-content-box {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}
}

 /* Card nere opache sopra lo sfondo */
.fh5co-content-box,
.fh5co-content-box .card,
.fh5co-content-box .card-body,.contact-box {
  color: #fff !important;
  border: none;
  box-shadow: none;
}
.fh5co-content-box .card-title,
.fh5co-content-box .card-text,
.fh5co-content-box p,.fh5co-content-box h2,.fh5co-content-box h3,
.fh5co-content-box h4,
.fh5co-content-box h5 {
 color: #fff !important;
}

 .breaking-news-box,
 .video-box
 {
  background-color: #111 !important; /* sfondo nero */
  color: #fff !important;            /* testo bianco */
  padding: 20px;                     /* spazio interno */
  border-radius: 8px;                /* opzionale */
}
.contact-box,
 .fh5co-content-box.contact-box {
  background-color: #000 !important;  /* nero uniforme */
  color: #fff !important; 
  border: none !important;
  box-shadow: none !important;
  padding: 20px; border-radius: 8px; 
} 
.contact-box h4,
.contact-box h3,
.contact-box p,
.contact-box a {
  color: #fff !important;
}

.contact-box .btn {
  background-color: #ff6600;  /* arancione visibile */
  color: #fff !important; border: none; border-radius: 6px;padding: 10px 20px; font-weight: bold;
}

.contact-box .btn:hover {
  background-color: #cc5200; /* arancione più scuro al passaggio */
} 

