@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0");
:root {
  --bg-color: #fff6e5;
  --color-claro: #d7cab0;
  --color-intermedio: #9b566b;
  --color-oscuro: #4d1321;
  --color-negro: #1f1a17;
  --color-text: #1f1a17;
  --color-accent: #d84f73;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "montserrat-light", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background-image:
    linear-gradient(rgb(255 246 229 / 35%), rgb(255 246 229 / 35%)),
    url("../assets/img/fondo-flores.jpg");
  background-size: contain;
  background-position: center;
}
h1 {
  font-family: "GreatVibes-Regular", cursive;
  font-size: 3rem;
}
h2 {
  font-family: "GreatVibes-Regular", cursive;
  font-size: 3rem;
}
#main-content {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: 0%;
  padding-right: 0%;
  box-sizing: border-box;
}
@font-face {
  font-family: "Josefin Sans";
  src: url("../assets/fonts/JosefinSans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Josefin Sans Italic";
  src: url("../assets/fonts/JosefinSans-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "RougeScript-Regular";
  src: url("../assets/fonts/MilkyWalky-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand-light";
  src: url("../assets/fonts/Quicksand-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand-regular";
  src: url("../assets/fonts/Quicksand-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand-bold";
  src: url("../assets/fonts/Quicksand-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "RougeScript-Regular";
  src: url("../assets/fonts/RougeScript-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "RougeScript-Regular";
  src: url("../assets/fonts/RougeScript-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "montserrat-light";
  src: url("../assets/fonts/montserrat/Montserrat-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GreatVibes-Regular";
  src: url("../assets/fonts/GreatVibes-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background-image: url("../assets/img/home.png");
  background-size: cover;
  background-position: center;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffffd0;
  opacity: 0;
  transition: opacity 2s ease;
  pointer-events: none;
  z-index: 3;
}
.banner.white-filter::before {
  opacity: 0.8;
}
banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}
.banner-header {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.logo {
  font-size: 1.6rem;
  font-family: "GreatVibes-Regular", cursive;
  color: var(--color-claro);
  margin: 0 auto;
  filter: opacity(0.8);
}
.menu-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--color-claro);
  cursor: pointer;
  filter: invert(1) opacity(0.8);
}
.banner-content {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}
.banner-content h1 {
  font-size: 3rem;
  font-weight: 100;
  color: var(--color-claro);
  margin-bottom: 0px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.banner-content h2 {
  font-size: 1.6rem;
  font-weight: 100;
  color: var(--color-claro);
  margin-bottom: -20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.video-fondo-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 800px) {
  .banner-content h1 {
    font-size: 3rem;
    font-weight: 100;
  }
  .banner-header {
    padding: 0 15px;
  }
  .banner-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
