body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
}

main a {
  text-decoration: none;
  color: #db9393;
}

main a:hover {
  text-decoration: none;
  color: #e8b0b0;
}

h4 {
  font-weight: 700;
}
 
.carousel-caption a {
  font-weight: 500;
}

.social-links {
  width: 100%;
}
.social-link svg {
  width: 30px;
  fill: #e82a2a;
}

/* Reset some default styles */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Style the video container to cover the entire viewport */
.header-container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background-color: rgb(252, 212, 209);
  display: flex;
  align-items: center;
}

header {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 50px;
  width: 100%;
  overflow: hidden;
  max-width: 500px
}

header h1 {
  font-size: 60px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: rgb(232, 42, 42);
  margin: 20px; /* Add margin for spacing from the left and bottom edges */
}

header h2 {
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: rgb(232, 42, 42);
  margin: 20px; /* Add margin for spacing from the left and bottom edges */
}

#header-image {
  margin-left: auto; /* Moves the image to the right */
  margin-top: 200px;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, .0); /* Add a semi-transparent background color */
  color: #000; /* Text color on top of the video */
  padding: 20px; /* Add some padding for content readability */
}

main, body {
  background-color: rgb(255, 255, 255); /* Add a semi-transparent background color */
}

/*Form Styling*/
.form-control {
  color: #424242;
  background-color: rgb(252, 212, 209, .3);
  border: 1px solid #f7f7f7;
  border-radius: 0;
  outline: 0;
  cursor: pointer;
}


.form-control:focus {
  color: #424242;
  background-color: rgb(252, 212, 209, .5);
  border: 1px solid #424242;
  box-shadow: none;
  border-radius: 0;
}

 .contact-form button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
  font-family: Poppins,sans-serif;
  font-size: 13px;
  line-height: 2em;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.01em;
  border-radius: 0;
  outline: 0;
  box-sizing: border-box;
  transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
  padding: 15px 40px;
  color: #fff;
  background-color: #e82a2a;
  border: 1px solid #e82a2a;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #e82a2a;
  border: 1px solid #e82a2a;
}

/* Portfolio Area Styling */

.portfolio {
  background-color:rgb(252, 212, 209);
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Default hide desktop gallery */
/* #desktopGallery {
  display: none;
} */

/* Show desktop gallery on screens larger than or equal to medium */
/* @media (min-width: 768px) {
  #portfolioCarousel {
    display: none;
  }

  #desktopGallery {
    display: block;
  }
}

/* Hide carousel on screens larger than or equal to medium */
/* @media (max-width: 767px) {
  #portfolioCarousel {
    display: block;
  }

  #desktopGallery {
    display: none;
  }
} */ */

/* Gallery Styling */

.gallery-item {
  margin-bottom: 0px;
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  font-family: Poppins;
}

.hovereffect .overlay {
  position: absolute;
  overflow: hidden;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  border-bottom: 1px solid #FFF;
  border-top: 1px solid #FFF;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  transform: scale(0,1);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.hovereffect:hover img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.6" /><feFuncG type="linear" slope="0.6" /><feFuncB type="linear" slope="0.6" /></feComponentTransfer></filter></svg>#filter');
  filter: brightness(0.6);
  -webkit-filter: brightness(0.6);
}

.hovereffect h2 {
  text-align: center;
  position: relative;
  font-size: 22px;
  background-color: transparent;
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
}

.hovereffect a, .hovereffect p {
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}

.hovereffect:hover a, .hovereffect:hover p, .hovereffect:hover h2 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

/* .hovereffect:hover img {
  -ms-transform:scale(1.2);
  -webkit-transform:scale(1.2);
  transform:scale(1.2);
  } */

/* Video modal styling */

.video-container {
  width: 100%; /* Ensures the div takes up full width of its parent container */
  position: relative; /* Ensures embedded video stays within its container */
  padding-bottom: 56.25%; /* Aspect ratio (16:9) for responsive video */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Ensures the video takes up full width of its container */
  height: 100%; /* Ensures the video takes up full height of its container */
}

@media (min-width: 578px) {
  .modal-dialog {
    max-width: 80%;
  }
}

.modal-content {
  background-color: rgb(252, 212, 209);
}

.modal-content h3 {
  font-weight: 700;
  font-size: 2rem;
}

.video-modal .modal-dialog .modal-content .close {
  color: #fff;
  background: rgb(239, 40, 83);
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  line-height: 35px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 1;
  position: absolute;
  left: auto;
  top: 10px;
  right: 10px;
  z-index: 1;
  transition: all 0.3s;
  border: none;
}

.video-modal .modal-dialog .modal-content .close span{
  margin: -2px 0 0 0;
  display: block;
}

/*vertically centers the modal content on fullscreen*/
.video-modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/*link styling*/
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.media a, .appearances a {
  box-shadow: inset 0 0 0 0 rgb(239, 40, 83);
  color: rgb(239, 40, 83);
	padding: 0 .25rem;
	margin: 0 -.25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
  text-decoration: none;
}
.media a:hover, .appearances a:hover {
  color: #fff;
  box-shadow: inset 200px 0 0 0 rgb(239, 40, 83);
}

.appearances h5 {
  font-weight: 700;
  font-size:18px;
  margin-bottom: 0;
}

.ua-event-desc {
 font-size: 16px;
}

.ua-event-loc {
  font-size: 14px;
}
footer {
  background-color: rgb(239, 40, 83);
  color: #fff;
}