/* html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  margin-left: 20px;
  margin-right: 20px;
} */

/* Importar las fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Poppins:wght@300;400;500;600&family=Dancing+Script:wght@400;500;700&display=swap');

/* Variables CSS para colores románticos */
:root {
  --color-primary: #ff6b9d;
  --color-secondary: #ffa8cc;
  --color-accent: #ff8fab;
  --color-text: #2c2c2c;
  --color-text-light: #666;
  --color-background: #fdf8f8;
  --color-white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(255, 107, 157, 0.1);
  --gradient-romantic: linear-gradient(135deg, #ff6b9d 0%, #ffa8cc 100%);
}

/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
  margin-bottom: 10vh;
}

/* Tipografía */
h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

/* Texto especial con fuente cursiva */
.cursive-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  text-align: center;
  margin: 2rem 0;
}

/* Contenedor principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Secciones */
.section {
  padding: 4rem 0;
  margin-bottom: 2rem;
}

.section-hero {
  background: var(--gradient-romantic);
  color: var(--color-white);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.section-hero h1 {
  color: var(--color-white);
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-hero .cursive-text {
  color: var(--color-white);
  font-size: 2rem;
  opacity: 0.9;
}

/* Tarjetas con estilo romántico */
.card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 107, 157, 0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
}

/* Botones románticos */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-romantic);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  margin-top: 20px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Elementos decorativos */
.heart {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin: 0 0.5rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Líneas decorativas */
.divider {
  width: 100px;
  height: 3px;
  background: var(--gradient-romantic);
  margin: 2rem auto;
  border-radius: 2px;
}

/* Grid para fotos o contenido */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* Animación sutil para entrada */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efectos de texto */
.text-gradient {
  background: var(--gradient-romantic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsivo */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-hero h1 {
    font-size: 3rem;
  }

  .cursive-text {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 1rem;
  }

  .card {
    padding: 2rem;
  }

  .section {
    padding: 3rem 0;
  }
}

/* Animación de fondo sutil */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 168, 204, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}




video {
  width: auto;
  height: 100vh;
  display: block;
  margin: 0 auto;
}

/* Estilos base para imágenes */
.img-romantic {
  width: 50%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
  filter: brightness(1.05) saturate(1.1);
  display: block;
  margin: 0 auto;
}

.img-romantic:hover {
  transform: translateY(-5px) scale(1.02);

  box-shadow: 0 10px 35px rgba(255, 107, 157, 0.3);
  filter: brightness(1.1) saturate(1.2);
}

/* Imagen circular para fotos de perfil */
.img-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-primary);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.25);
  transition: all 0.3s ease;
}

.img-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
}

/* Imagen con marco romántico */
.img-frame {
  padding: 8px;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffa8cc 100%);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
}

.img-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.img-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.3);
}

/* Imagen con efecto corazón */
.img-heart {
  width: 100%;
  height: auto;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
}

.img-heart::before {
  content: '♥';
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
}

.img-heart:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.img-heart:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 35px rgba(255, 107, 157, 0.3);
}

/* Galería de imágenes */
.img-gallery {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.img-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.25);
  filter: brightness(1.1);
}

/* Imagen pequeña para decoración */
.img-small {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 3px 15px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
}

.img-small:hover {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

/* Imagen con overlay romántico */
.img-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.2);
}

.img-overlay img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.img-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 157, 0.1), rgba(255, 168, 204, 0.1));
  opacity: 0;
  transition: all 0.3s ease;
}

.img-overlay:hover::after {
  opacity: 1;
}

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

/* Responsivo para móviles */
@media (max-width: 768px) {
  .img-circle {
    width: 150px;
    height: 150px;
  }

  .img-gallery {
    height: 200px;
  }

  .img-small {
    width: 60px;
    height: 60px;
  }

  .img-romantic {
    width: 100%;
    height: auto;
  }
}


.no-audio-controls::-webkit-media-controls-volume-slider,
.no-audio-controls::-webkit-media-controls-mute-button {
  display: none !important;
}

.no-audio-controls::-moz-media-controls-volume-slider,
.no-audio-controls::-moz-media-controls-mute-button {
  display: none !important;
}