@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600&family=Poppins:wght@400;500&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #C64521; /* burnt orange like your logo */
  color: #FBEEDC; /* warm cream text */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

/* Container */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Logo image */
.logo {
  width: 180px;
  max-width: 60vw;
  margin-bottom: 1rem;
}

/* Title */
h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  font-weight: 600;
  color: #FBEEDC;
  margin-bottom: 0.5rem;
}

h1 span {
  color: #2F2D63; /* dark indigo-purple accent */
}

/* Tagline */
.tagline {
  font-size: 1.2rem;
  font-weight: 400;
  color: #FBEEDC;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

/* Social links - bubble buttons */
.social-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  text-decoration: none;
  background-color: #2F2D63;
  color: #FBEEDC;
  border-radius: 50px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 45, 99, 0.4);
  position: relative;
}

.social-links a::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.social-links a:hover {
  background-color: #403e8c;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 15px rgba(47, 45, 99, 0.5);
}

/* Footer */
footer {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #FBEEDC;
}
