/* GENERAL */
body {
  background-color: #A4193D;
  margin: 0;
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
  color: #FFDFB9;
}

/* NAVBAR */
.MainNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  margin: 0;
  background-color: #FFDFB9;
  border-radius: 25px;
  color: #A4193D;
}

.MainNav .brand {
  font-size: 1.4em;
  font-weight: 700;
}

.MainNav .links {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
}

.MainNav li {
  cursor: pointer;
  transition: 0.3s;
}

.MainNav li:hover {
  color: #A4193D;
  text-decoration: underline;
}

.nav-left {
  display: flex;
  align-items: center;
}

.navlogo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 800px;
  margin: auto;
}

.main-quote {
  font-size: 2.2em;
  margin-bottom: 10px;
  line-height: 1.3;
  animation: fadeIn 2s ease-out;
}

.slogan {
  font-size: 1.5em;
  color: #FFDFB9;
  opacity: 0.9;
  margin-bottom: 10px;
}

.description {
  font-size: 1em;
  color: #ffe8cc;
  max-width: 500px;
  margin: 15px auto 25px;
}

/* BUTTON */
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: white;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  font-family: "Raleway", sans-serif;
  margin: 20px auto;
  display: inline-block;
}

/* Glowing gradient border */
.button-85:before {
  content: "";
  background: linear-gradient(45deg,
    #ff0000, #ff7300, #fffb00, #48ff00,
    #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

/* CHAT PREVIEW IMAGE */
.chat-preview {
  margin-top: 40px;
  width: 70%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 223, 185, 0.2);
  animation: fadeIn 3s ease-out;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  background-color: #FFDFB9;
  color: #A4193D;
  border-radius: 25px;
}

.feature {
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
  border-radius: 15px;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature .emoji {
  font-size: 2rem;
}

/* FOOTER */
footer {
  text-align: center;
  margin: 30px 0;
  font-size: 0.9em;
  opacity: 0.8;
}

/* FADE ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}