/*
Theme Name: nombre del tema
Theme URI: https://urldeltema
Description:  descripcion del tema
Autor: autor del tema
Version: 0.1
Licence:GNU General Public License (u otra)
Tags: etiquetas que ayuden a indexar el tema
*/
/*portada*/
  .container-portada {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    color: white;
    text-align: center;
    overflow: hidden;
    height: 400px;
}
.container-portada::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('<?php echo get_template_directory_uri(); ?>/imagenes/fondo.png');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: -1;
}
.container-portada .titulo {
    margin-top: 10% ;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    
}
.container-portada .parrafo {
    margin: 20px;
    margin-top: 10%;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


/*titulo*/
.title{
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}

.pink{
    color: #FA70E3  ;
}


body {
    transition: background-color 0.3s, color 0.3s;
}

body.dark-theme {
    background-color: #121212;
    color: #ffffff;
}

/* Estilos adicionales para elementos especificos en el tema oscuro */
body.dark-theme .jumbotron,
body.dark-theme .card,
body.dark-theme .btn {
    background-color: #1e1e1e;
    color: #ffffff;
}

body.dark-theme .card-footer,
body.dark-theme .lead.text-body-secondary {
    color: #cccccc;
}

/* Icono de Sol y Luna en boton */
.btn-black svg {
    display: none;
}

body.dark-theme .btn-black .bi-moon {
    display: inline;
}

body .btn-black .bi-sun {
    display: inline;
}

body.dark-theme .btn-black .bi-sun {
    display: none;
}


/*slider*/
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
}
.carousel-caption h5 {
    font-size: 1.75rem;
}
.carousel-caption p {
    font-size: 1.25rem;
}
.carousel-caption .btn {
    margin-top: 10px;
}







/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

/* Contenedor principal */
.container {
    margin-top: 20px;
}

/* Estilos para la imagen principal y el contenido del articulo */
.container-portada img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

h2 {
    color: #5a5a5a;
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #666;
}

.lead {
    font-size: 1.2rem;
    color: #888;
}

/* Estilos para los encabezados de seccion */
h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    
}

/* Estilos para las imagenes de las secciones */
.img-fluid {
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Estilos especificos para la columna del articulo */
.col-12.col-md-9 {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Estilos para los textos justificados */
.text-justify p {
    text-align: justify;
}

/* Estilos especificos para la columna del aside */
.col-12.col-md-3 {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Espaciado entre las secciones del aside */
.my-5 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
/*menu*/
.navbar-nav{
    display: flex;
    align-items: left;
}
/* agrandar y achicar letra */
#increase-font, #decrease-font {
  /*  background-color: #2C2C2D; /* Color de fondo */
    color: #2C2C2D; /* Color del texto */
    border: none; /* Sin borde */
    padding: 10px 20px; /* Espaciado interno */
    margin: 3px; /* Espaciado externo */
    font-size: 16px; /* Tamaño del texto */
    border-radius: 5px; /* Bordes redondeados */
    cursor: pointer; /* Cursor en forma de mano */
    transition: background-color 0.3s ease; /* Transición suave del color de fondo */
   
}

#increase-font:hover, #decrease-font:hover {
    background-color: #005177; /* Color de fondo al pasar el ratón */
}

#increase-font:active, #decrease-font:active {
    background-color: #003f5f; /* Color de fondo al hacer clic */
}

#increase-font:focus, #decrease-font:focus {
    outline: none; /* Sin contorno al enfocar */
    box-shadow: 0 0 5px #0073aa; /* Sombra al enfocar */
}


body.day-theme {
    background-color: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
}

body.night-theme {
    background-color: #1c1c1c; /* Fondo oscuro */
    color: #ffffff; /* Texto blanco */
}
/*tema dia y noche*/
body.day-theme {
    background-color: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
}

body.night-theme {
    background-color: #1c1c1c; /* Fondo oscuro */
    color: #ffffff; /* Texto blanco */
}

/* Estilos por defecto para el tema de día ----------*/


body {
    background-color: #fff;
    color: #000;
}
body {
    background-color: #fff;
    color: #000;
}

/* Estilos para el tema de noche */
.night {
    background-color: #2c3e50;
    color: #ecf0f1;
}

/* Estilos para el botón */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Estilos generales para todos los enlaces */
a {
    color: #007bff; /* Color del texto del enlace */
    text-decoration: none; /* Sin subrayado */
}

a:hover {
    color: #0056b3; /* Color del texto del enlace al pasar el mouse */
    text-decoration: underline; /* Subrayado al pasar el mouse */
}

/* Estilos para enlaces dentro de las entradas */
.entry-content a {
    color: #1e90ff;
}

.entry-content a:hover {
    color: #104e8b;
}

.font-size-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/*slider*/
#my-slider{
    width: 700px;
}
.slider {
    position: relative;
    overflow: hidden;
    width: 700%;
    display: flex;
    flex-wrap: nowrap;
   
}

.slider-item {
    min-width: 100%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: center;
}

.slider-item img {
    width: 800px;
    height: auto;
    border-radius: 10px;
}

.slider-caption {
    margin-top: 15px;
    text-align: center;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}

.btn {
    background: #fbdde6;
    width: 100%;
}
.accordion-item{
    background:  #fbdde6;
    
}
.accordion accordion-flush{
     background-color: #fbdde6;
    
}
.accordion-header{
     background-color: #fbdde6;
}

 /* Media Queries */
@media (max-width: 768px) {
    .slider-item {
        min-width: 100%;
    }

    .slider-caption h5 {
        font-size: 1.5rem;
    }

    .slider-caption .btn {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .slider-caption h5 {
        font-size: 1.2rem;
    }

    .slider-caption .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
} 
/* suscribir*/
.subscription-form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.subscription-form-container h2 {
    margin-bottom: 15px;
}

.subscription-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscription-form-container label {
    margin-bottom: 5px;
}

.subscription-form-container input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

.subscription-form-container button {
    padding: 10px 20px;
    background-color: #fbdde6;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
     width: 100%;
}

.subscription-form-container button:hover {
    background-color: #818185 ;
}

/*alerta en todas las paginas */

/* Estilos para la barra  widgets */
/* Estilo para la barra lateral */
#secondary {
    width: 25%;
    float: right;
    background-color:  #fff; /* Color de fondo */
    padding: 10px; /* Espaciado interno */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra */
}

/* Estilo para los widgets */
.widget-content {
    margin-bottom: 10px; /* Espaciado entre widgets */
    padding: 15px;
    background-color: #fff; /* Color de fondo de los widgets */
    border: 1px solid #ddd; /* Borde */
    border-radius: 5px; /* Esquinas redondeadas */
}

/* Estilo para los títulos de los widgets */
.widget-title {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333; /* Color del texto */
    border-bottom: 2px solid #eee; /* Línea debajo del título */
    padding-bottom: 5px;
}

/* Asegurar que el contenido principal tenga el espacio adecuado */
#primary {
    width: 70%;
    float: left;
}

/* Limpiar floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    #primary, #secondary {
        width: 100%;
        float: none;
    }
    .widget-content {
        margin-bottom: 15px;
    }
}
  
  /* tu rutina page*/
  
  .skincare-container {
    background-color:  #fff ;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skincare-container h2 {
    font-size: 2rem;
    
}

.skincare-container .lead {
    color: #6c757d;
    font-weight: 500;
}

.skincare-content {
    margin-top: 20px;
}

.skincare-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
}

.skincare-content h4 {
    font-size: 1.25rem;
    color: #ff6f61;
    margin-top: 15px;
}

.skincare-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.skincare-content img.skincare-img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}
/*marketing*/
.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.skincare-content hr {
    border-top: 2px solid #ff6f61;
}
  

    

.btn {
    background: #fbdde6;
    width: 60%;
}

/*social media*/
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    text-align: center;
    transition: background-color 0.3s ease;
    justify-content: center;
}

.social-icon:hover {
    background-color: #555;
}

.social-icon i {
    font-size: 20px;
    vertical-align: middle;
}
 .navbar-expand-lg .navbar-collapse {
        justify-content: center;
     
 }
