* {
  box-sizing: border-box;
  cursor: none;
}


html {
  --text: #d9fde9;
  /* --background-test: #150126; */
  --background-test: #200734;
  --background: #3B0467;
  --primary: #4acf46;
  --secondary: #3B0467;
  /* --secondary: #8e08a9; */
  --accent: #4acf46;
  --font-size: 24px;
  --btn-font-size: 18px;


  background-color: var(--background-test);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--primary);
  /* Prevent horizontal scroll */
}

/* -------------- */
/* Generic Styles */
/* -------------- */

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.white {
    color: white;
}

.text-center {
  text-align: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.mw-text {
  max-width: 850px;
}

.contain {
    object-fit: contain;
}

.w-40 {
    width: 160px;
}

.mb-6 {
  margin-bottom: 24px;
}

/* ------------------ */
/* Non-Generic Styles */
/* ------------------ */

.main-title-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-bottom: 24px;
}

.general-text {
  font-size: var(--font-size);
  color: var(--text);
}

.important-text {
  font-size: 32px;
  color: var(--primary);
}

.main-title {
  display: flex;
  justify-content: center;
  font-family: 'Pacifico', cursive;
  color: var(--primary);
  font-size: 48px;
}

.cursor-pointed {
  pointer-events: auto;
  user-select: auto;
}

.glide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.glide__slide>img {
  height: 70vh;
  width: auto;
  border: 5px var(--primary) inset;
  object-fit: fill;
  max-width: 100%;
  border-radius: 10px;
}

.love {
  display: flex;
  justify-content: center;
  width: 200px;
}

.payment {
  display: flex;
  justify-content: center;
  width: 375px;
  height: auto;
}

.google-map {
  padding-bottom: 50%;
  position: relative;
}

.google-map iframe {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.btn-select {
  background-color: var(--accent);
  border-radius: 0px;
  display: inline-block;
  color: var(--text);
  font-family: Arial;
  font-size: var(--btn-font-size);
  padding: 16px 31px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #2f6627;
}

.btn {
  background-color: var(--secondary);
  border-radius: 0px;
  display: inline-block;
  color: var(--text);
  font-family: Arial;
  font-size: var(--btn-font-size);
  padding: 16px 31px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #a026d1;
}

.btn:hover {
  background-color: var(--accent);
}

.contributions{
  color: #4acf46;
}

.loveStoryTitle{
  text-align: center;
  color:#4acf46
}

/* Nav Bar Styling */

nav {
  display: flex;
  justify-content: center;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.date{
  color:#4acf46
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* Mobile view */
@media (max-width: 600px) {
  .mw-text {
    max-width: 375px;
  }

  .love-story-pic {
    width: 100%;
    max-width: 375px;
    object-fit: contain;
  }

  .menu-toggle {
    z-index: 10;
    display: flex;
        gap: 8px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background: var(--secondary);
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    padding: 0.5rem;
    z-index: 10;
  }

  .nav-links.show {
    display: flex;
  }
 
}
