/* landingStyle.css */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;700&display=swap');

body {
  margin: 0;
  font-family: 'Fredoka', sans-serif;
  background-color: #fffbea;
  color: #333;
  line-height: 1.6;
  display: flex;           
  flex-wrap: wrap;         
  justify-content: center; 
  gap: 2rem;               
  padding: 2rem 1rem; 
}

header {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

header h1 {
  font-size: 2.75rem;
  color: #d97706;
  margin-bottom: 1rem;
  text-shadow: 2px 2px #ffed4a;
}

header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  color: #d97706;
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  color: #92400e;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}


a {
  text-decoration: none;
  color: #f59e0b;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: #d97706;
}

img {
  width: 100px;
  height: auto;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

a:hover img {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  img {
    width: 60px;
  }
}


#left_group,
#right_panel {
  flex: 1 1 400px;    
  max-width: 600px;   
  box-sizing: border-box;
}

#left_group {
  display: flex;          
  flex-direction: column; 
  gap: 1rem;
  align-items: center;    
  margin-left: 0;
}

#right_panel {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
}