/* @import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Dancing+Script:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --background-color: #b51228;
  --foreground-color: #e7e7e7;
  --text-color: #161616;
  --hover-color: #f5f5f5;
}

body, html {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  /* overflow-x: hidden; */
  color: var(--text-color);
}

.headings {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.dancing-text {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
}

.title-1 {
  font-weight: 700;
  font-style: normal;
}
.top-60-50 {
    top: 60% !important;
}
#frame {
  background: url('assets/img/img2.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
}
#frame-pages {
  background: url('assets/img/img2.jpg') no-repeat center center;
  background-size: cover;
  height: 40vh;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 17, 49, 0.7); 
}
.slides > * {
  opacity: 0;
  transform: translateY(30px); /* start position */
  animation: slideUp 0.8s ease forwards;
}

/* Animate one after the other */
.slides .icon   { animation-delay: 0.3s; }
.slides .lead  { animation-delay: 0.8s; }
.slides .headings  { animation-delay: 1.3s; }
.slides .title { animation-delay: 1.8s; }
.slides .btn    { animation-delay: 2.3s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Overlay for Footer */
.overlay-footer {
  width: 100%;
  height: 100%;
  background-color: rgba(8, 17, 49, 0.9); 
}
/* Overlay for Other Pages */
.overlay-pages {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: rgba(8, 17, 49, 0.7); 
}
.frame-content {
  z-index: 2;
  color: white;
}
.fs-10 {
  font-size: 10px;
}
.fs-14 {
  font-size: 14px;
}
.w-35 {
  width: 35%;
}
.w50-fluid {
  width: 50%;
}
.btns {
  background-color: var(--background-color);
  border-radius: 2px;
  border: none;
  color: white;
}
.btns:hover {
  background-color: transparent;
  border-style: solid;
  border-color: var(--background-color);
  border-width: 2px;
}

.btns-outline {
  border-style: solid;
  border-color: var(--background-color);
  border-width: 2px;
  padding-left: 2em;
  padding-right: 2em;
}
.btns-outline:hover {
  background-color: var(--background-color);
  /* border-radius: 2px;
  border: none; */
  color: white;
}

.text-color-1 {
  color: var(--background-color);
}
.bg-color-1 {
  background-color: var(--background-color);
}

#event-summary {
  margin-top: -7em;
  z-index: 3;
  position: relative;
}

#about-us {
  margin-top: 8em;
  margin-bottom: 5em;
}

#footer {
  background: url('assets/img/img2.jpg') no-repeat center center;
  background-size: cover;
}

.droplet {
  position: relative;
  color: var(--background-color);
  margin-top: -2em;
}

/* **************************************
************ Pulsating Effect ***********
**************************************** */
.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--background-color); /* #b51228 red background */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
}

/* Pulse rings */
.circle::before, .circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(181, 18, 40, 0.5);
  z-index: -1;
  animation: pulse 2s infinite;
}

.circle::before {
  width: 100px;
  height: 100px;
}

.circle::after {
  width: 120px;
  height: 120px;
  animation-delay: 1s; /* stagger effect */
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.circle i {
  font-size: 30px;
  color: white;
  animation: heartbeat 1.2s infinite;
}

/* Heartbeat animation for the icon */
@keyframes heartbeat {
  0%, 20%, 40%, 60%, 80%, 100% {
    transform: scale(1);
  }
  30%, 50%, 70% {
    transform: scale(1.2);
  }
}

/*nav link*/
.nav-link {
  color: var(--foreground-color);
  text-decoration: none;
  margin: 0.5em;
}
.nav-link:hover {
  color: var(--foreground-color);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.5em;
}
.nav-link.active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.5em;
  color: var(--foreground-color);
}

/* **************************************
************ Submenu Effect ***********
**************************************** */
/* Make sure parent is positioned */
.nav-item {
  position: relative;
}

.dd-menu {
  position: absolute;
  display: none;
  top: 100%;  
  left: 0;
  margin: 0;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background: #fff;
  z-index: 99999;
}

.dropdown-item {
  padding: 8px 14px;
  color: #000;
  text-decoration: none;
}

.nav-item:hover .dd-menu {
	display: block;
}

.dd-menu:hover {
	display: block;
}

.dropdown-item:hover {
  background: var(--hover-color);
  color: var(--background-color);
  font-weight: bold;
} 

/* **************************************
************ Fade in Scroll ***********
**************************************** */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/***************************
*** Overlay for Mobile
****************************/
#mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999999999;
}
.show {
  display: block !important;
}

/* *************************************************************************
**** MEDIA QUERY STARTS HERE
****************************************************************************/
/* Custom styles for medium devices (tablets and up) */
@media (min-width: 769px) {

}

/* Small devices: fade + no-wrap */
@media (max-width: 768px) {
  .w50-fluid {
    width: 100%;
  }
  .top-60-50 {
    top: 50% !important;
  }
  .nav-link {
	  color: black;
	  font-weight: bold;
  }
  .nav-link.active {
    color: black !important;
  }
  .nav-link:hover {
    color: black !important;
  }
}