/*
Theme Name: Tema Artista
Theme URI: https://example.com/
Author: Tu Nombre
Author URI: https://example.com/
Description: Un tema personalizado para Artista.
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Forum&family=Poppins:wght@400&display=swap');
body {
    margin: 0;
    padding: 0;
    background: url('<?php echo get_template_directory_uri(); ?>/images/fondo.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo img {
    width: 100px;   
    height: auto;
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.menu a {
    text-decoration: none;
    font-size: 16px;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu a:hover {
    color: gold;
    transform: scale(1.1);
}

.main-content {
    text-align: center;
    margin-top: 200px;

}

.main-content h1 {
    font-family: 'Dram Avenue', serif;
    font-size: 280px;
    margin: 0;
}

.main-content p {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0 0;
}
/* Servicios - Estilos Generales */
.servicios-contenedor {
    text-align: center;
    padding: 50px;
  }
  
  .titulo-servicios {
    font-family: 'Forum', serif;
    font-size: 80px;
    color: #062944;
  }
  
  .linea-separadora {
    border: none;
    border-top: 2px solid #062944;
    width: 60%;
    margin: 10px auto;
  }
  
  .lista-servicios {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #062944;
    line-height: 1.6;
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
  }
  
  /* Imagen 1 */
  .imagen-servicio {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .imagen-servicio img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Imagen 2 con texto ARTISTA */
  .bloque-artista {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 80px;
    margin: 0 auto;
  }
  
  .bloque-artista img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .texto-artista {
    font-family: 'Dream Avenues', serif;
    font-size: 43px;
    color: #130E0C;
    text-align: left;
  }
  
/* Estructura principal */
.servicios-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 60px;
    align-items: start;
    background-color: white;
  }
  
  /* Columna izquierda */
  .servicios-texto {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    padding-right: 20px;
  }
  
  .servicios-texto h1 {
    font-family: 'Forum', serif;
    font-size: 80px;
    color: #062944;
    margin-bottom: 10px;
  }
  
  .servicios-texto hr {
    border: none;
    border-top: 2px solid #062944;
    width: 80%;
    margin: 10px 0 30px 0;
  }
  
  .servicios-texto ul {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #062944;
    line-height: 1.6;
    padding-left: 20px;
  }
  
  /* Imagen superior */
  .imagen-superior img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Imagen inferior con texto ARTISTA */
  .imagen-inferior {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .imagen-inferior img {
    width: 10px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .artista-texto {
    font-family: 'Dream Avenues', serif;
    font-size: 142px;
    color: #130E0C;
  }

  

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #062944;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    gap: 15px;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: inline-block !important;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    position: relative;
    z-index: 999;
    margin-bottom: 10px;
  }

  .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease;
  }

  .main-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .logo {
    order: 1;
    margin-bottom: 10px;
  }

  #menu-toggle {
    order: 2;
  }

  nav {
    order: 3;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .menu {
    display: flex !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

/* Added styles for menu-wrapper and toggling hamburger menu */
@media (max-width: 768px) {
  .menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .menu-toggle {
    display: inline-block;
    background: none;
    border: none;
    color: white;
    margin: 10px 0;
    z-index: 999;
  }

  .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 4px auto;
    background-color: white;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: #062944;
    width: 100%;
    margin: 0;
    padding: 10px 0;
  }

  .menu.show {
    display: flex;
  }
}
