
@font-face {
   font-family: defaultFont;
   src: url('/fonts/EB_Garamond/EBGaramond-VariableFont_wght.woff2') format('woff2'),
   url('/fonts/EB_Garamond/EBGaramond-VariableFont_wght.woff') format('woff');
  font-display: swap;
}
@font-face {
   font-family: cursiveFont;
   src: url('/fonts/Fleur_De_Leah/FleurDeLeah-Regular.woff2') format('woff2'),
   url('/fonts/Fleur_De_Leah/FleurDeLeah-Regular.woff') format('woff');
}
*{
    user-select: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:  defaultFont;
    color: #2c3a5d;
}
body{
    width: 100%;
    min-width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff, #cfdae9); /* Dusty blue */
}

hr{
  position: relative;
  z-index: -99;
}
#flower-div{
  position: relative;
}
.flower-border{
  position: absolute;
  z-index: -999;
  width: 55vw;
  max-width: 350px;
}
#top-left, #top-right{
  top: 0;
}
#top-right{
  transform: scaleX(-1);
  right: 0;
}
#main{
  padding-top: 15vw;
  margin-bottom: 5vw;
}
.main-content{
  display: flex;
  flex-direction: column;      /* Vertical flow */
  justify-content: center;
}
.cover-text {
  width: 100%;
  text-align: center;
  color: #42567b;
}
.cover-text h1, .cover-text h3{
  margin: 0;
  padding: 0;
}
.cover-text h1{
  font-size: 8vw;
  letter-spacing: 0.05rem;
}
.date{
  margin: 0 auto 20px auto;
  text-align: center;
  font-size: larger;
  width: 70%;
}
.date hr, .date p{
  margin: 0;
  padding: 0;
}


/* === Tablet (>= 600px) === */
@media (min-width: 600px) {
  #main{
    padding-top: 10vw;
  }
  .cover-text h1{
    font-size: 6vw;
  }
}

/* === Small Desktop (>= 768px) === */
@media (min-width: 768px) {
  .cover-text{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cover-text h1{
    font-size: 5vw;
  }
  .cover-text h3{
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* === Medium Desktop (>= 970px) === */
@media (min-width: 970px) {
  
}

/* === Large Desktop (>= 1024px) === */
@media (min-width: 1024px) {
  #main{
    padding-top: 7vw;
  }
}

#loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background: linear-gradient(to bottom, #ffffff, #cfdae9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .loader {
      position: relative;
      width: 120px;
      height: 120px;
    }

    /* L&K Text */
    .loader-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 24px;
      font-weight: bold;
      z-index: 2;
    }

    /* Circular Animation */
    .loader-circle {
      width: 100%;
      height: 100%;
      border: 8px solid transparent;
      border-top: 8px solid #C8AD7F;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    @keyframes spin {
      0% { transform: rotate(0deg);}
      100% { transform: rotate(360deg);}
    }

    /* Hide loader after page loads */
    body.loaded #loader-wrapper {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

