:root {
  --pink-grad: radial-gradient(
    circle at top left,
    rgb(255, 155, 195) 0%,
    rgb(255, 107, 116) 100%
  );
  --red-grad: linear-gradient(
    0deg,
    rgba(255, 48, 25, 1) 0%,
    rgba(207, 4, 4, 1) 100%
  );

  --red-rad-grad: radial-gradient(
    circle at top left,
    rgba(255, 48, 25, 1) 0%,
    rgb(183, 3, 3) 100%
  );

  --radial-grad: radial-gradient(circle at top left, #e88599, #d73737);
  --valentines-grad: radial-gradient(
    circle at top left,
    rgb(255, 0, 0) 0%,
    rgb(167, 0, 0) 100% /* Dark Violet */
  );
}

html {
  background-color: #650000;
}

#navbar_top {
  z-index: 5;
}

.top-nav {
  background: #bc0b20; /* var(--red-grad); */
}

.nav-link:hover {
  background: #bc0b20;
  color: white;
  transition: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #bc0b20;
  color: #fff;
  transition: none;
}

nav i {
  color: #bc0b20;
}

.hero {
  position: relative;
  background-image:
    url(../img/stvalentines_template/Roger-Eaton3.png),
    url(../../img/stvalentines_template/hero_bg6.jpg);

  /* background: #01619b; */
}

.message {
  background: url("../img/stvalentines_template/rose-pattern.png");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.our-mission-section,
.yt-videos-section {
  color: #650000 !important;
  background: url("../img/stvalentines_template/rose-pattern.png");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.our-mission-box .card {
  border: none;
}

.star-container {
  margin-bottom: 10px;
}

.hero .hero-flower-corner {
  position: absolute;
  width: 370px;
  bottom: -60px;
  left: -60px;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .hero .hero-flower-corner {
    width: 190px;
    left: -50px;
  }
}

.message {
  border-style: solid;
  border-color: red;
  border-width: 10px 0;
}

.message .container-fluid {
  border-top: 5px dotted rgb(255 255 255 / 50%);
  border-bottom: 5px dotted rgb(255 255 255 / 50%);
}

.message-text {
  padding-right: 20px !important;
  color: red !important;
  font-size: 64px;
  z-index: 2;
}

.message p {
  text-align: center;
  font-size: clamp(48px, 5vw, 66px);
  display: none;
}

.services {
  border-bottom: solid 20px #650000;
}

.services .icon-container {
  border-style: solid;
  border-width: 3px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  overflow: visible;
  border-radius: 0;
  padding: 25px;
}
.services .icon-container p,
.services .icon-container img {
  scale: 0.9;
  line-height: 1.8rem !important;
}
.services .icon-container img {
  margin-top: -5px;
}

.services .col-4 {
  position: relative;
}

.services .col-4::before {
  content: "";
  position: absolute;
  text-align: center;
  margin: auto;

  left: calc(50% + 6px);
  top: 42px; /* higher = tighter */

  width: 110px;
  height: 110px;

  transform: translateX(-50%) scale(0.95);
  border-radius: 50%;

  background: transparent;

  /* subtle shadow */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0);

  z-index: 0;
  opacity: 1;

  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    top 0.25s ease;
}

.services .col-4 {
  text-align: center;
}

.services .icon-container:hover,
.services .icon-container:focus {
  background-color: transparent;
  box-shadow: none;
}

.services .col-4:has(.icon-container:hover)::before,
.services .col-4:has(.icon-container:focus)::before {
  top: 38px;
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
}

.services .col-4:nth-child(2) .icon-container {
  z-index: 1;
  background-image: url("../../img/stvalentines_template/heart-icon-1.png");
}

.services .col-4:nth-child(3) .icon-container {
  background-image: url("../../img/stvalentines_template/heart-icon-2.png");
}

.services .col-4:nth-child(4) .icon-container {
  background-image: url("../../img/stvalentines_template/heart-icon-3.png");
}

.services .col-4:nth-child(5) .icon-container {
  background-image: url("../../img/stvalentines_template/heart-icon-4.png");
}

.services .col-4:nth-child(6) .icon-container {
  background-image: url("../../img/stvalentines_template/heart-icon-5.png");
}

.services .col-4:nth-child(7) .icon-container {
  background-image: url("../../img/stvalentines_template/heart-icon-6.png");
}

@media screen and (max-width: 1175px) {
  .services .icon-container {
    padding: 0;
  }
  .services .icon-container p {
    line-height: 1.4rem !important;
  }
  .services .icon-container img {
    margin-top: -10px !important;
    scale: 0.7;
  }

  .services .col-4::before {
    width: 90px;
    height: 90px;
    left: 50%;
  }

  .services .col-4:has(.icon-container:hover)::before,
  .services .col-4:has(.icon-container:focus)::before {
    top: 35px;
  }
}

@media screen and (max-width: 992px) {
  .services .icon-container p {
    line-height: 1rem !important;
  }

  .services .col-4::before {
    width: 50px;
    height: 50px;
  }

  .services .col-4:has(.icon-container:hover)::before,
  .services .col-4:has(.icon-container:focus)::before {
    top: 15px;
  }
}

.mission-stars {
  background-color: transparent;
}

.subscribe-btn-section {
  background: #650000 url(../../img/subscribe-background-pattern.png) repeat;
  background-size: 300px;
}

footer {
  background-color: #650000;
}

footer .container {
  background-color: #650000;
  color: white;
  background:
    url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAQAAAC1QeVaAAAASElEQVQY02NgQALS/5F5Ssg8qa/IUgooUg+QpWRRpA7hNB5VCsV4VANReKjOQDWDgYFIm/G4F7cv8YSNLG4pFCNQeSjq0MwAAPCoHW3Q0Dt9AAAAAElFTkSuQmCC"),
    #650000;
  background-image: url(../../img/newyears_template/ccc-seal-translucent.png);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: center;
  background-size: 350px;
  backdrop-filter: opacity(20%);
}

.light-blue-text {
  color: #ff8f8f;
}

#top-container-other {
  background-color: #af1902 !important;
}
