/**
* Template Name: Avilon (customizado Malambo)
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff8dc; /* amarillo claro uniforme */
  color: #000;         /* texto negro */
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #1dc8cd;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #1dc9ce;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding: 0;
  color: #000; /* títulos en negro */
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff8dc; /* mismo amarillo claro */
}

#header.header-scrolled {
  background: #fff8dc;
  height: 70px;
  transition: all 0.5s;
}

/* Logo */
#header #logo h1 a {
  color: #000;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6); /* relieve */
}

/* Navbar */
.navbar a,
.navbar a:focus {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
  color: #1dc8cd;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #ffff66, #cc9900);
  position: relative;
  color: #000;
  overflow: hidden;
}

#hero h2,
#hero p {
  color: #000;
}

#hero .hero-text {
  position: absolute;
  left: 0;
  top: 60px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
  color: #fff; /* Texto blanco para resaltar sobre fondo */
}

#hero .hero-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

#hero .hero-text p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  max-width: 700px;
}


#hero .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#hero .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% + 54px);
  bottom: 0;
  top: 30px;
}

#hero .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  top: 90px;
}

#hero .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 374px);
  bottom: 0;
  top: 150px;
}

@media (max-width: 767px) {
  #hero .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }
  #hero .product-screens .product-screen-2,
  #hero .product-screens .product-screen-3 {
    display: none;
  }
}

/* Imágenes Hero (sin borde negro, solo sombra) */
#hero .product-screens img {
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#hero .product-screens img:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.85);
}

/* Imágenes Galería (con borde negro + sombra) */
#gallery .gallery-item img {
  border: 0px solid #000;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#gallery .gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.85);
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffff66, #cc9900);
  color: #000;
}

#about h3,
#about h5,
#about p {
  color: #000;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
#call-to-action {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #ffff66, #cc9900);
  color: #000;
}

#call-to-action .cta-title,
#call-to-action .cta-text {
  color: #000;
}

/*--------------------------------------------------------------
# Otras Secciones
--------------------------------------------------------------*/
#gallery,
#contact,
#pricing,
#faq,
#team,
#clients {
  background: #fff8dc;
  color: #000;
}

#gallery h3,
#gallery p,
#contact h3,
#contact p {
  color: #000;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff8dc;
  padding: 30px 0;
  color: #000;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #333;
}

#footer .footer-links a {
  color: #000;
}

#footer .footer-links a:hover {
  color: #1dc8cd;
}
