@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* GLOBAL STYLES */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  padding: 30px 20px;
  max-width: 900px;
  margin: auto;
  background: linear-gradient(135deg, #1dd1a1 0%, #48dbfb 100%);
  color: #222;
  animation: fadeInBody 1.2s ease-in;
}

/* FADE IN PAGE */
@keyframes fadeInBody {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO SECTION */
.hero-header {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;    /* Reduce these values */
  padding-bottom: 20px; solid rgba(255 255 255 / 0.3); 
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
}

/* SLIDE IN ANIMATION */
@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* LOGO IMAGE */
.logo, .favicon {
  width: auto;
  max-width: 450px;
  height: auto;
  border-radius: 35px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.logo-container {
 position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo:hover, .favicon:hover {
  transform: scale(1.05);
}

/* SECTIONS & CONTAINERS */
header, section, footer {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 1.3s ease-out forwards;
  opacity: 0;
  cursor: default;
}

/* FADE IN UP */
@keyframes fadeInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* HOVER EFFECTS FOR INTERACTIVITY */
header:hover, section:hover, footer:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* HEADINGS */
h2 {
  color: #5f27cd;
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 1.1px;
  animation: fadeInUp 1.5s ease forwards;
}

/* LISTS */
ul {
  padding-left: 1.8rem;
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.6s ease forwards;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

/* BUTTONS */
.button-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #1dd1a1 0%, #45d6f7 100%);
  color: #666;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1.7s ease forwards;
}

.button-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(52, 31, 151, 0.4);
  align-items: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .hero-header {
    justify-content: center;
  }

  .logo, .favicon {
    max-width: 80vw;
  }
}
