/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  background: #f2f2f2;
  overflow-x: hidden;
}

/* ======= LOGOS ======= */

/* Logo en navbar */
.logo-navbar {
  height: 60px;
  border-radius: 70%;
}

/* Logo que aparece solo en móvil, dentro del hero */
.logo-hero {
  display: none;
  margin-bottom: 20px;
}

/* Mostrar/ocultar logos según tamaño */
@media (max-width: 768px) {
  .hero {
    background-position: right top !important;
    padding-top: 120px !important;  /* ajusta para que el overlay baje un poco más */
    min-height: 50vh;               /* acorta un poco el hero en móvil, opcional */
  }





  .logo-hero {
    display: block;
    height: 70px;
    border-radius: 70%;
    margin: 0 auto 20px auto;
  }
}

/* ======= NAVBAR WRAPPER ======= */
.wrapper {
  height: 60px;
  width: 100%;
  max-width: 650px;
  background: #fff;
  line-height: 60px;
  border-radius: 50px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

/* ======= NAV STRUCTURE ======= */
.wrapper nav {
  position: relative;
  display: flex;
}

.wrapper nav input {
  display: none;
}

.wrapper nav label {
  flex: 1;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}

/* TAB animado rosa */
.wrapper nav .tab {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 25%;
  left: 0;
  z-index: 0;
  border-radius: 50px;
  background: linear-gradient(45deg, #ff69b4 0%, #f1aed0 100%);
  transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Posiciones del tab */
.wrapper nav #inbox:checked ~ .tab {
  left: 25%;
}
.wrapper nav #contact:checked ~ .tab {
  left: 50%;
}
.wrapper nav #heart:checked ~ .tab {
  left: 75%;
}

/* ======= MENÚ ITEMS ======= */
.menu-items {
  padding: 0 5px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  text-align: center;
}

.menu-items a {
  flex: 1 1 auto;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  color: #1d1f20;
  transition: color 0.3s ease;
  padding: 0 8px;
}

.menu-items a i {
  font-size: 18px;
  margin-right: 5px;
}

.menu-items a:hover {
  color: #ff69b4;
}

.menu-items a.active {
  color: #ff69b4;
  font-weight: bold;
}

/* ======= MOBILE AJUSTES ======= */
@media (max-width: 768px) {
  .hero-bg {
    object-position: right 20%; /* Ajusta verticalmente si sigue cortando el logo */
  }
  .wrapper {
    height: 58px;
  }

  .menu-items a {
    font-size: 14px;
    padding: 0 4px;
  }

  .menu-items a i {
    font-size: 16px;
    margin-right: 4px;
  }
}
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hamburger {
  position: fixed;
  background-color: transparent;
  right: 15px;
  top: 15px;
  height: 30px;
  width: 30px;
  padding: 20px;
  z-index: 1002;
  cursor: pointer;
}

._layer {
  background: #ff69b4;
  margin-bottom: 4px;
  border-radius: 2px;
  width: 28px;
  height: 4px;
  transition: all 0.25s ease;
}

.hamburger.is-active .-top {
  transform: translateY(200%) rotate(45deg);
}
.hamburger.is-active .-mid {
  opacity: 0;
}
.hamburger.is-active .-bottom {
  transform: translateY(-200%) rotate(135deg);
}

.menuppal {
  background-color: rgba(255, 255, 255, 0.97);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.menuppal.is_active {
  transform: translateY(0%);
}

.menuppal ul {
  padding: 50px 0;
  list-style: none;
  text-align: center;
}

.menuppal ul li a {
  display: block;
  padding: 1rem;
  font-size: 1.3rem;
  color: #ff69b4;
  text-decoration: none;
}

.menuppal ul li a:hover {
  color: #333;
}

.hero-bg {
  object-fit: cover;          /* Hace que la imagen cubra todo el área */
  object-position: right top; /* Alinea el recorte a la esquina superior derecha */
  z-index: -1;                /* Detrás del contenido */
}

/* Para la transición de página */
body {
  opacity: 1;
  transition: opacity 0.5s ease;
}
body.fade-out {
  opacity: 0;
}

/* Ahora hacelo así: */
.beauty-modal .modal-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #d63384;
}

.beauty-modal .modal-body p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.beauty-modal .modal-body h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
  margin-top: 1.5rem;
}

.beauty-modal .modal-body ul {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  max-width: 300px;
}
.beauty-modal .modal-body ul li {
  padding-left: 1.2em;
  margin-bottom: 0.75rem;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  color: #555;
}
.beauty-modal .modal-body ul li::before {
  content: '▲';
  display: inline-block;
  width: 1em;
  margin-left: -1.2em;
  color: #d63384;
  font-size: 0.8em;
  line-height: 1.2;
}

/* Botones */
.beauty-modal .btn-pink {
  background-color: #d63384;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  border: none;
}
.beauty-modal .btn-pink:hover {
  background-color: #bb2d75;
}
.beauty-modal .btn-secondary {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}


