@import url("https://fonts.googleapis.com/css2?family=Jersey+25&family=Madimi+One&family=Poppins&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --jersey-25-regular: "Jersey 25", sans-serif;
  --poppins-regular: "Poppins", sans-serif;
  --madimi-one-regular: "Madimi One", sans-serif;
}
::selection {
  color: white;
  background-color: #0000ee;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #0000ee;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background-color: black;
  border-radius: 10px;
}
/* animations over here */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.header-animation {
  animation: fadeIn 1s ease-in-out;
}

.left-animation {
  animation: slideIn 1s ease-in-out;
}

.card-animation {
  animation: fadeIn 1s ease-in-out;
  animation-delay: 0.2s;
}

.footer-animation {
  animation: slideIn 1s ease-in-out;
  animation-delay: 0.5s;
}

html {
  scroll-behavior: smooth;
}

header {
  top: 0;
  left: 0;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: white;
  padding: 10px 0;
  font-family: var(--poppins-regular);
  z-index: 1000;
  height: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.left {
  color: #0000ee;
  font-size: 30px;
  margin-left: 20px;
  font-family: var(--madimi-one-regular);
  font-weight: bold;
}
.hamburger {
  color: #0000ee;
  display: none !important;
}
nav ul {
  display: flex;
}
nav ul li {
  list-style: none;
  margin-right: 20px;
}
nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}
nav ul li a:hover {
  color: #0000ee;
  border-bottom: 2px solid #0000ee;
}
section {
  scroll-snap-align: center;
}
.resp-nav {
  display: none;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--poppins-regular);
  text-align: center;
  position: relative;
  scroll-snap-type: y mandatory;
  z-index: 100;
}

.content {
  width: 80%;
  margin: 20px auto;
}

.background-image::before {
  content: "";
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.9);
}

.background-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
}
.head-font {
  font-family: var(--poppins-regular);
  /* font-family: var(--jersey-25-regular); */
  font-size: 30px;
  margin: 30px 0;
}
/* Memorials Section Here */
.m-container {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.m-content {
  width: 80%;
  margin: 80px auto;
  text-align: center;
}
.imgContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.imgContainer img {
  cursor: pointer;
  width: 200px;
  height: 200px;
  margin: 10px;
  border-radius: 50%;
  border: 2px solid none;
}
.imgContainer img:hover {
  border: 2px solid #0000ee;
}
/* Visit Section */
.content-left {
  width: 50%;
  margin: auto;
  padding: 20px;
  font-family: var(--poppins-regular);
  font-size: 20px;
  text-align: center;
  border-right: 2px solid #0000ee;
}
.content-left iframe {
  width: 450px;
  height: 350px;
  border: 3px solid #0000ee;
  border-radius: 10px;
}
.content-left iframe:hover {
  box-shadow: rgba(0, 0, 0, 0.5);
}
.content-right {
  margin: auto;
  width: 40%;
  padding: 20px;
  font-family: var(--poppins-regular);
  font-size: 20px;
  text-align: center;
}
.content-right form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.content-right form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 40px;
  outline: none;
  /* background-color: rgb(228, 224, 224); */
  border: 2px solid #0000ee;
  font-family: var(--poppins-regular);
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); */
  padding: 15px;
}
.content-right form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 20px;
  outline: none;
  /* background-color: rgb(228, 224, 224); */
  border: 2px solid #0000ee;
  font-family: var(--poppins-regular);
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); */
      font-size: 15px;
}
.content-right form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 40px;
  outline: none;
  background-color: #0000ee;
  color: white;
  font-family: var(--poppins-regular);
  font-size: 20px;
  cursor: pointer;
}
.content-right form button:hover {
  background-color: rgb(228, 224, 224);
  color: #0000ee;
}
.events-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.events-container .card {
  width: 300px;
  margin: 10px;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 40px;
  cursor: pointer;
}
.events-container .card:hover {
  border: 2px solid #0000ee;
}

.events-container .card .card-header {
  margin-bottom: 10px;
}

.events-container .card .card-title {
  font-size: 20px;
  font-weight: bold;
}

.events-container .card .card-body {
  font-size: 16px;
}
/* Footer Section */
footer {
  background-color: black;
  color: white;
  text-align: center;
  font-family: var(--poppins-regular);
  position: relative;
  padding: 20px 0;
  width: 100%;
}
.f-20 {
  font-size: 20px !important;
}
