@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Comfortaa:wght@300;400;700&display=swap');

body {
  font-family: 'Comfortaa', cursive;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #dcfbfa; 
  color: #555555; 
  line-height: 1.6;
  font-size: 16px; /* Base font size for better readability on mobile */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka One', cursive;
  font-weight: 400;
  color: #444444; 
}

.tagline {
  font-family: 'Comfortaa', cursive;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  color: #555555; 
}

.container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem; /* Consistent padding */
  max-width: 100%; /* Ensure full width on mobile */
}

h1 {
  font-size: 2.5rem; /* Slightly smaller for mobile */
  margin-bottom: 0.5rem;
  color: #444444; 
}

.cta {
  margin-bottom: 2rem;
}

footer {
  text-align: center;
  padding: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem; /* Add gap for better spacing on mobile */
}

.social-links a {
  color: #555555;
  font-size: 1.5rem; /* Smaller icons for mobile */
  margin: 0; /* Remove margin and use gap instead */
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #333333;
}

.bee-left {
  display: inline-block;
  transform: scaleX(-1);
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .social-links a {
    font-size: 2rem;
  }
}
