/*
 Theme Name:   Stratego Child Theme
 Theme URI:    https://stratego.ancorathemes.com/
 Description:  Stratego Child Theme
 Author:       AncoraThemes
 Author URI:   https://ancorathemes.com/
 Template:     stratego
 Version:      1.0
 Tags:         flexible-header, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
 Text Domain:  stratego
*/


/* =Theme customization starts here
------------------------------------------------------------ */

.color_style_link2 {
	--theme-var-button_slide_color: #FFFFFF !important;
	background-color: #FFFFFF !important;
	color: #FFFFFF !important;
	border-color: !important;
}

#form-submit {
	background-color: black !important;
	border: 1px solid white !important;
}

/* --- Contenedor general --- */
.dekka-navbar {
  position: absolute;     /* o relative */
  top: 0;
  left: 0;
  width: 100%;
  background: transparent; /* deja que se vea el fondo degradado */
  z-index: 1000;           /* que quede por encima de todo */
  margin-top: 1em;
}
.dekka-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

/* --- Logo --- */
.dekka-logo img,
.dekka-logo a {
  max-height: 50px;
}

/* --- Menú desktop --- */
.dekka-menu-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.dekka-menu-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.dekka-menu-list li a:hover {
  color: #e30613;
}

/* --- Hamburger botón móvil --- */
.dekka-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.dekka-hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
}

/* --- Responsive: tablet/móvil --- */
@media (max-width: 992px) {
  .dekka-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .dekka-menu.open {
    max-height: 300px; /* ajusta según número de ítems */
  }
  .dekka-menu-list {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 20px;
  }
  .dekka-hamburger {
    display: flex;
  }
}
