/* --------------------------------------------------------- */
/* !Home Slides */
/* --------------------------------------------------------- */

#home-slide-1 {
  background-image: url(../images/Home_slide1.jpg);
}
#home-slide-2 {
  background-image: url(../images/Home_slide2.jpg);
}
#home-slide-3 {
  background-image: url(../images/Home_slide3.jpg);
}


/* --------------------------------------------------------- */
/* !Quotes Block */
/* --------------------------------------------------------- */

#quotes {
  background-image: url(../images/Parallax1.jpg);
}


/* --------------------------------------------------------- */
/* !Tweets Block */
/* --------------------------------------------------------- */

#tweets {
  background-image: url(../images/Parallax2.jpg);
}


/* --------------------------------------------------------- */
/* !Services More */
/* --------------------------------------------------------- */

#services-more {
  background-image: url(../images/Parallax3.jpg);
}


/* --------------------------------------------------------- */
/* !Client Quotes Block */
/* --------------------------------------------------------- */

#client-quotes {
  background-image: url(../images/Parallax4.jpg);
}


/* --------------------------------------------------------- */
/* !Contact Block */
/* --------------------------------------------------------- */

#contact {
  background-image: url(../images/Footer_Image.jpg);
}


/* --------------------------------------------------------- */
/* !Blog Header */
/* --------------------------------------------------------- */

#blog-header {
  background-image: url(../images/Parallax3.jpg);
}
/* ===== HERO: centrar y agrandar logo ===== */
.apex-hero-content { 
  text-align: center;
}

#hero-logo{
  display: inline-block;
  margin: 0 auto 12px;
}

#hero-logo img{
  height: 170px !important;  /* fuerza a reemplazar el tamaño anterior */
  width: auto;
}

/* Desktop grande */
@media (min-width: 1200px){
  #hero-logo img{ height: 190px !important; }
}

/* Móviles */
@media (max-width: 767.98px){
  #hero-logo img{ height: 120px !important; }
}

/* Header (menú superior) pequeño y limpio */
#site-navigation #logo img{
  height: 44px; width:auto; display:block;
}
/* ===== HERO: tamaño + glow del logo ===== */
.apex-hero-content{ text-align:center; }

#hero-logo{
  position: relative;
  display:inline-block;
  margin: 0 auto 14px;
}

/* Tamaños del logo */
#hero-logo img{
  height: 240px !important;   /* ⬅️ Cambia aquí si lo quieres aún más grande */
  width: auto;
  image-rendering: auto;
  /* Glow principal alrededor del logo (doble capa) */
  filter:
    drop-shadow(0 0 10px rgba(0,0,0,.45))
    drop-shadow(0 8px 28px rgba(0,0,0,.35));
}

/* Halo suave detrás del logo para mejorar contraste (fallback cross-browser) */
#hero-logo::after{
  content:"";
  position:absolute;
  inset:-16px;                /* “margen” del halo respecto al borde de la imagen */
  z-index:-1;
  border-radius:18px;
  box-shadow:
    0 0 0 10px rgba(255,255,255,.06),  /* aro claro muy sutil */
    0 12px 40px rgba(0,0,0,.35),       /* sombra externa */
    0 0 30px rgba(0,0,0,.25);          /* resplandor suave */
}

/* Extra contraste en pantallas muy grandes */
@media (min-width: 1400px){
  #hero-logo img{ height: 260px !important; }   /* ⬅️ Subir si quieres más grande en 4K */
  #hero-logo::after{ inset:-18px; }
}

/* Móviles */
@media (max-width: 767.98px){
  #hero-logo img{ height: 140px !important; }   /* ⬅️ Ajuste móvil */
  #hero-logo::after{ inset:-12px; }
}

/* Logo pequeño del header (menú) */
#site-navigation #logo img{
  height: 44px; width:auto; display:block;
}