/* Globals */

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  color: #fff;
  text-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, 0.5);
  background-image: url("../../assets/images/bg.jpg");
  /* background-color: black; */
  background-position: center;
  background-size: cover;
}

/* Custom default button */
.btn-primary {
  background-color: #f71583;
  border: none;
  font-weight: 500;
}

.btn-outline-primary {
  border: 2px solid #f71583;
  color: #f71583;
  background-color: transparent;
  font-weight: 500;
}

.btn-primary:hover,
.btn-outline-primary:hover {
  background-color: #ff0062;
  color: #fff;
}

/* Navbar */
.navbar {
  background-color: transparent;
}

.navbar-brand {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  text-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.5);
}

.nav-masthead .nav-link {
  padding: 0.25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  background-color: transparent;
  border-bottom: 0.25rem solid transparent;
  margin-left: 1rem;
  transition: all 0.2s ease-in-out;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #f71583;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  min-height: 90vh;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-text h2 {
  color: #f71583;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
}

.hero-buttons .btn {
  margin-right: 15px;
  padding: 10px 25px;
  font-size: 1rem;
}

/* Hero Image */
.hero-img img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Estilo para los iconos sociales */
.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #f71583;
  color: #f71583;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 0, 157, 0.3);
  background-color: transparent;
}

.social-icons a:hover {
  background-color: #f71583;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 0, 157, 0.6);
}

/* Modal custom styles */
/* Estilo del modal similar al de about.html */
.modal-content {
  background-color: #1a1a1a; /* Fondo oscuro */
  color: #fff;
  border-radius: 1rem;
  border: 1px solid #333;
}

.modal-header,
.modal-footer {
  border: none;
}

.modal-title {
  color: #ff4fa1; /* Color rosa para el título */
}

.btn-close-white {
  filter: invert(1);
}

.contact-text {
  font-size: 18px;
  margin-bottom: 10px;
  color: #c8c6c6;
}

.contact-email {
  font-size: 16px;
  color: #c2c2c2;
}

.contact-email a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.contact-email a:hover {
  text-decoration: underline;
}

.modal-footer a {
  color: #ff4fa1;
}
