* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Alexandria', sans-serif;
}

.page-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

img.logo {
  position: absolute;
  top: 7%;
  left: 3.5%;
  width: 250px;
  border-radius: 6px;
  z-index: 900;
}

.container h1, p {
  color: rgb(73, 214, 191);
}

.container a{
  color: rgb(242, 245, 244);
}

.container a:hover {
  color: rgb(148, 151, 150);
}

/* SOCIAL LINKS -------------------- */

.social-links .color-insta {
  background-color: #FF1E3D;
}
.social-links .color-bluesky {
  background-color: #1B85FF;
}
.social-links .color-x {
  background-color: #000;
}
.social-links .color-youtube {
  background-color: #FF0033;
}

.social-links i {
  margin-right: 4px;
  font-size: 1.3rem;
}

/* BUBBLES ANIMATION -------------- */

.bubbles img {
  width: 50px;
  animation: bubble 7s linear infinite;
}

.bubbles {
  width: 100%;
  display: flex;
  justify-content: space-around;
  position: absolute;
  bottom: -60px;
}

@keyframes bubble {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(-85vh);
    opacity: 0;
  }
}

.bubbles img:nth-child(1) {
  animation-delay: 2s;
  width: 44px;
  height: 44px;
}
.bubbles img:nth-child(2) {
  animation-delay: 1s;
}
.bubbles img:nth-child(3) {
  animation-delay: 2.5s;
  width: 39px;
  height: 39px;
}
.bubbles img:nth-child(4) {
  animation-delay: 4.5s;
}
.bubbles img:nth-child(5) {
  animation-delay: 3s;
  width: 33px;
  height: 33px;
}
.bubbles img:nth-child(6) {
  animation-delay: 6s;
}
.bubbles img:nth-child(7) {
  animation-delay: 7s;
  width: 38px;
  height: 38px;
}

/* CONTACT MODAL ---------------- */

#contactModal {
  background: rgba(0, 0, 0, 0.4);
}

#contactModal .modal-content {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* ALERT BOX STYLES --------------------- */

#formAlert {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
  max-width: 600px;
  width: 80%;
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #0d6efd;
  border-radius: 8px;
  background-color: #fff;
  transition: opacity 1s ease;
  text-align: center;
}

.alert-success {
  background-color: #d1e7dd;
  border-left-color: #198754;
}

.alert-danger, .alert-error {
  background-color: #f8d7da;
  border-left-color: #dc3545;
}

/* MEDIA STYLES ----------------------- */

@media (max-width: 1430px) {
  img.logo {
    width: 180px;
  }
}

@media (max-width: 1200px) {
  img.logo {
    width: 160px;
  }
  .container h1 {
    font-size: 2.5rem;
  }
  .container p {
    font-size: 1.6rem !important;
    font-weight: normal !important;
  }
  .container .custom-spacing {
    margin-top: 2rem
  }
}

@media (max-width: 991px) {
  .container h1 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
  .container p {
    font-size: 1.3rem !important;
    font-weight: normal !important;
  }
}

@media (max-width: 881px) {
  img.logo {
    width: 110px;
  }
}

@media (max-width: 767px) {
  img.logo {
    top: 2.5%;
    left: 2.5%;
  }
  .container {
    margin-top: 6rem;
  }
  .container p {
    font-size: 1.1rem !important;
    font-weight: normal !important;
  }
}

@media (max-width: 456px) {
  .container h1 {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

@media (max-width: 342px) {
  .container h1 {
    font-size: 1.2rem;
  }
}