@import url('https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,400;0,700;1,400;1,700&family=Chewy&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Dark Blue: #2A2E75

Medium Blue: #3F5BB6

Light Blue: #6E8FDB

Lavender: #C2A9E4

Light Pink: #F9D6E0

Pale Yellow: #F5EFCF*/

html, body{
    height: 100%;
}

body {
    background: linear-gradient(to bottom, #3F5BB6, #F5EFCF); /* Off-White */
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: 70px;
     background-repeat: no-repeat;
     background-attachment: fixed;
}

main {
  flex: 1;
}

header {
    background: linear-gradient(to bottom, #1a3fb8, #3F5BB6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
    font-family: "Chewy", cursive;
}

.navigation
{
    position:relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
}
.navigation a {
    text-decoration: none;
    color: #F1FAEE; /* Off-White */
    padding: 6px 15px;
    border-radius: 20px;
    margin: 0px 10px;
    font-weight: 300;
    font-size: larger;
    
}

.navigation a:hover, .navigation a:active {
    background: #f1c232; /* Warm Orange */
    color: black;
}

.auth-links {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px; /* Adjust spacing between Signup and Login */
}

.profile a {
    text-decoration: none;
    color: #F1FAEE; /* Off-White */
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 300;
    font-size: larger;
}

.profile a:hover, .navigation a:active {
    background: #f1c232; /* Warm Orange */
    color: black;
}

.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
    overflow: hidden;
    background-color: #6e74ee;
    font-family: "Chewy", cursive;
}

/*Home Page*/
.poster img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    border: 5px solid #457B9D;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin-top: 20px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#text {
    position: absolute;
    font-size: 8em;
    color: #dbc43f; /* Brick Red */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
    z-index: 2;
}

.parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.5s ease-out forwards;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  padding-bottom: 0px;
  flex-direction: column;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Exit animation for page leave */
.wrapper.page-exit {
  animation: fadeOutDown 0.4s ease-in forwards;
}

@keyframes fadeOutDown {
  to {
    opacity: 0;
    transform: translateY(60px);
  }
}



.section-title {
  font-size: 3em;
  color: #457B9D;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Chewy", cursive;
}

.sec {
    position: relative;
    background: #F1FAEE; /* Aqua Blue */
    padding: 100px;
    flex: 1;
}

.sec h2 {
    font-size: 3em;
    color: #457B9D; /* Deep Blue */
    margin-bottom: 10px;
    font-family: "Chewy", cursive;
}

.sec h1 {
    font-size: 4em;
    color: #457B9D; /* Deep Blue */
    margin-bottom: 200px;
    margin-left: 19cm;
    font-family: "Chewy", cursive;
}

.sec h5
{
    font-size: 4em;
    color: #457B9D; /* Deep Blue */
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

.sec h4 {
    font-size: 2em;
    color: #457B9D; /* Deep Blue */
    margin-bottom: 10px;
}

.sec p {
    font-size: 1em;
    color: #457B9D; /* Deep Blue */
    font-weight: bold;
    
}

.traits-container {
    display: flex;
    gap: 50px; /* Adjusts space between the lists */
    margin-top: 20px; /* Moves it down slightly */
    gap: 40px;
    flex-wrap: wrap;
}

.story-text {
  flex: 1;
  min-width: 300px;
}
.story-text p 
{
    width: 100%;
    justify-content: center;
    display: flex;
    text-align: center;
}

.traits-container ul {
    list-style-type: disc; /* Keeps bullet points */
    margin: 0;
    padding: 0;
    font-size: 1em;
    color: black; /* Deep Blue */
    font-weight: bold;
}
p 
{
    width: 400px;
}


.logo1 {
    pointer-events: none;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10%;
    border: 5px solid #457B9D;
    margin-left: 40vw; /* Red border with 3px thickness */
}

.logo2 {
    pointer-events: none;
    width: 100%;
    max-width: 350px;
    margin-left: 8vw;
}
.logo {
    pointer-events: none;
    width: 100PX;
    height: auto;
}

.footer {
    background: linear-gradient(to bottom, #F1FAEE, #F5EFCF);
    padding: 15px 40px;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: auto;
    display: flex;
}


.footer-text {
    text-align: center;
    color: black; /* Off-White */
    font-family: "Chewy", cursive;
}

.contact-link {
    text-decoration: none;
    color: black; /* Off-White */
}

.contact-link:hover {
    text-decoration: underline;
}

.Contacts {
    gap: 50px; /* Adjusts space between the lists */
}
.Contacts p{
    width: 600px;
}

.signup {
    position:relative;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, 25%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    
}

.signup h2 {
    font-size: 1.8em;
    color: #457B9D; /* Deep Blue */
    margin-bottom: 10px;
}

.signup form {
    display: flex;
    flex-direction: column;
}

.signup input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.signup button {
    background: #2A2E75; /* Brick Red */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.signup button:hover {
    background: #f1c232;
}

    #toast {
  visibility: hidden;
  width: 100%;
  max-width: 450px;
  background: #f8ffff;
  border: 1px solid #bedfe6;
  border-left: 5px solid #2185d0;
  border-radius: 5px;
  padding: 15px;

  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
  
  #toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @keyframes fadein {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
  
    to {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  
  @keyframes fadeout {
    from {
      transform: translateY(0px);
      opacity: 1;
    }
  
    to {
      transform: translateY(20px);
      opacity: 0;
    }
  }
  
  #toast.top {
    top: 20px;
    bottom: auto;
  }
  
  #toast.right {
    left: auto;
    right: 20px;
  }
  
  #toast.left {
    left: 20px;
    right: auto;
  }
  
  #toast.success {
    background: #fbfff8;
    border: 1px solid #bee6bf;
    border-left: 5px solid #38d021;
  }
  
  #toast.error {
    background: #fff8f8;
    border: 1px solid #e6bebe;
    border-left: 5px solid #d02121;
  }
  
  #toast.warning {
    background: #fffbf8;
    border: 1px solid #e6d0be;
    border-left: 5px solid #d06421;
  }

.burger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: auto;
  z-index: 101;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
  .navigation {
    display: none;
    flex-direction: row;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #3F5BB6;
    padding: 20px;
    z-index: 100;
  }
  .navigation.show {
    display: flex;
  }
  .navigation a {
    margin: 10px 0;
  }
  .auth-links {
    position: static;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  header {
    flex-wrap: wrap;
    padding: 10px 20px;
    justify-content: space-between;
  }
  .logo {
    width: 100%;
    max-width: 100px;
  }
  .logo1
  {
    margin-left: 0;
  }
  .logo2
  {
    width: 100%;
    max-width: 300px;
    margin-left: 0;
  }

  .traits-container {
    margin-left: 20px;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 2em;
    z-index: 101    ;
  }

  #text {
    font-size: 2.5em;
    position: static;
    text-align: center;
    margin: 20px 0;
  }

  .sec {
    padding: 50px 20px;
  }

  .poster {
    text-align: center;
  }

  .poster img {
    max-width: 90%;
  }
 .parallax {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40%;
    overflow: hidden;
    background-color: #6e74ee;
    font-family: "Chewy", cursive;
  }

  .parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
  }

  p
  {
    width: 290px
  };

  .signup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}


