body {
  margin: 100px 10px;
  padding: 0px;

  /* background: var(--beige); */
  width: 100%;
  height: 100vh;
  /*COLORS*/
  --white: #F7F1E1;
  --cream: #F6E6CB;
  --dcream: #EACEA3;
  --beige: #CDAD93;
  --terracotta: #B9816D;
  --dterracotta: #885444;
  --peach: #E5AE8A;
  --orange: #BF835A;
  --green: #4B5243;
  --dgreen: #2C3834;

  /*FONTS*/
  --mono: 'source-code-pro';
  --display: 'lora';
  font-family: "Inter", sans-serif;
}

.minip {
  width: 300px;
  height: 450px;
  margin: auto;
  background: #171717;
  position: relative;
  box-shadow: 0px 11px 11px 7px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.minip .mg {
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0px;
  left: 0px;
  display: grid;
  grid-template-columns: 250px 50px;
  grid-template-rows: 100px 150px;
  grid-template-areas:
    'clr group'
    'clr .....';
  transition:
    grid-template-columns .6s linear,
    grid-template-rows .6s linear;
}

.minip:hover .mg {
  grid-template-columns: 150px 150px;
  grid-template-rows: 50px 300px;
  transition:
    grid-template-columns .6s linear,
    grid-template-rows .6s linear;
}

.minip .mg .clr {
  grid-area: clr;
  background: #7d6747;

}

.minip .mg .group {
  margin: 0px;
  color: white;
  font: 10px/10px var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  writing-mode: tb-rl;

  display: flex;
  align-items: center;
  justify-content: center;

}


.minip .mg .group span {
  margin: 8px;
  display: block;
  transform: rotate(180deg);
  transition:
    transform .6s linear;
}

.minip:hover .mg .group span {
  margin: -40px;
  transform: rotate(270deg);
  transition:
    transform .6s linear;
}

.minip .av {
  width: 200px;
  height: 350px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: var(--green);
  background-position: top center;
  background-size: cover;
  transition:
    width .6s linear,
    height .6s linear;

}

.minip:hover .av {
  width: 250px;
  height: 400px;
  transition:
    width .6s linear,
    height .6s linear;
}

.minip .info {
  cursor: pointer;

  width: 160px;
  max-height: 100px;
  padding: 15px;
  position: absolute;
  bottom: 100px;
  left: 0px;
  background: var(--peach);
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: flex-start;
  transition:
    bottom .6s linear;
}

.minip:hover .info {
  bottom: 58px;
  transition:
    bottom .6s linear;
}

.minip .info name {

  display: block;
  font: 185 18px / 19px var(--display);
  text-indent: -24px;
  letter-spacing: 1px;
  margin: 0px 0px 3px 24px;
}

.minip .info deets {
  font: 10px/15px var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.minip a.plot {
  width: 110px;
  height: 30px;
  position: absolute;
  bottom: 10px;
  left: 85px;
  background: var(--dgreen);
  font: 10px/10px var(--mono);
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    bottom .6s linear;
}

.minip:hover a.plot {
  bottom: 35px;
  transition:
    bottom .6s linear;
}

/* Global styles */

.details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details .send {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.details h2,
.details p {
  text-align: center;
}

.details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details .send {
  width: 100%;
  height: 550px;
  margin-bottom: 10px;
  object-fit: cover;

}

.details h2,
.details p {

  text-align: center;
  width: 100%;
  padding: 0 20px;
  /* Add some padding for better text readability */
  box-sizing: border-box;
  /* Ensure padding doesn’t affect the element's width */
}

.owl-carousel .item {
  height: 550px;
  width: 100%;
  /* Ensure items take up full width */
  display: flex;
  /* Align items in a row */
}

/* Ensure proper spacing */
.owl-carousel .owl-item {
  margin-right: 15px;
  /* Space between items */
}

.owl-carousel {
  overflow: hidden;

}


@media (max-width: 768px) {
  .owl-carousel {
    display: block;

  }

  .owl-carousel .item {
    flex: 1 0 50%;

  }
}

@media (max-width: 480px) {
  .owl-carousel .item {
    flex: 1 0 100%;

  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  /* Background with opacity */
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 20px;
  border: 1px solid var(--terracotta);
  box-shadow: 0px 0px 5px var(--terracotta);
  width: 300px;
  border-radius: 8px;
  position: relative;
  font-family: var(--mono);
}

.close {
  color: var(--dgreen);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: var(--terracotta);
  text-decoration: none;
  cursor: pointer;
}

/* Form Styles */
.modal-content h2 {
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dterracotta);
}

.modal-content label {
  font-size: 12px;
  color: var(--green);
  display: block;
  margin-bottom: 5px;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--dcream);
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
}

/* Button Styles */
.modal-content button[type="submit"] {
  background-color: var(--dgreen);
  color: var(--white);
  width: 50%;
  /* Width of the button */
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: block;
  /* Ensure button is block-level for centering */
  margin: 0 auto;
  /* Center the button horizontally */
}




.modal-content button[type="submit"]:hover {
  background-color: var(--green);
}

.div-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
}

.loww {

  position: absolute;
  top: 19px;
  left: 0;
  width: 100%;
  height: 550px;
  object-fit: contain;
  z-index: 10;
  filter: drop-shadow(18px 18px 9px rgba(0, 0, 0, 0.5));
  margin-bottom: 10px;
}



@media (max-width: 1080px) {

  .loww {
    left: 20px;
    top: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    margin: 0 auto;
    text-align: center;
  }
}

@media screen and (max-width: 1080px) {
  .details .send {
    margin-left: 62px;
    width: -webkit-fill-available;
    /* height: 400px; */
  }
}

@media screen and (max-width: 850px) {
  .loww {
    top: 60px;
  }

  .details .send {
    margin-left: 62px;
    width: -webkit-fill-available;
    height: 400px;
  }
}

@media screen and (max-width: 600px) {
  .loww {
    top: 26px;
    width: 250px;
  }

  .details .send {
    margin-left: 45px;
    width: -webkit-fill-available;
    height: 337px;
  }
}

.btn {
  background-color: var(--dgreen);
  /* Background color */
  color: var(--white);
  padding: 10px 20px;
  /* Padding around the text */
  border: none;
  border-radius: 4px;
  /* Rounded corners */

  font-family: var(--mono);
  font-size: 14px;
  /* Font size */
  text-transform: uppercase;
  /* Uppercase text */
  letter-spacing: 1px;
  /* Letter spacing */
  transition: var(--green) 0.3s ease, transform 0.3s ease;
  /* Smooth transition */
}


.btn:hover {
  background-color: var(--orange);
  transform: scale(1.05);
}

.back-to-events {
  margin-top: -500px;
  position: relative;
  z-index: 20;
  display: inline-block;
  cursor: pointer;
}

.owl-carousel .owl-item {

  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
  /* Lower opacity for non-center items */
}

.owl-carousel .owl-item.active.center {
  transform: scale(1.2);
  /* Scale up the center item */
  opacity: 1;
  /* Full opacity for the center item */
}

.owl-carousel .owl-item.active {
  transform: scale(1);
  /* Regular scale for active items */
  opacity: 0.75;
}

.owl-carousel .owl-item.prev,
.owl-carousel .owl-item.next {
  transform: scale(0.8);
  /* Scale down the previous and next items */
}

.owl-carousel .owl-item.center {
  z-index: 2;
  /* Bring the center item to the front */
}

.owl-carousel .owl-item:not(.center) {
  z-index: 1;
}

/* .item {
  position: relative;
  background-image: url('img/evt1.jpeg');
  background-size: cover;
  background-position: center;
  color: white; 
} */
.bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px);
  z-index: -1;
}

.bg-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(235, 235, 235, 0.5), rgba(0, 0, 0, 0.788));
  z-index: 1;
  pointer-events: none;
}

.bg-details-img img {
  z-index: -1;
  position: absolute;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  filter: blur(10px);
  margin-top: -343px;
  overflow: hidden;
}

.bg-details-img::before {
  content: '';
  position: absolute;

  width: 100%;
  /* height: 100%; */

  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}