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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: white;
  text-align: center;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.main-title {
  font-family: 'Bungee Shade', cursive;
  font-size: 6rem;
  text-shadow: 0 0 10px #ff6f61, 0 0 20px #ff6f61;
}

.subtitle {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-button {
  background: #ff6f61;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.1);
}

/* About Section */
.about-section {
  padding: 50px 20px;
  background: #fff3e0;
  color: #333;
}

.fun-fact {
  margin-top: 20px;
  background: #ffccbc;
  padding: 15px;
  border-radius: 10px;
}

/* Babble Generator */
.babble-generator {
  padding: 50px 20px;
  background: #ffebee;
  color: #333;
}

.controls button {
  background: #ff4081;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.controls button:hover {
  transform: scale(1.1);
}

#babble-output {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Gallery Section */
.gallery-section {
  padding: 50px 20px;
  background: #fff3e0;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  padding: 20px;
  background: #ff6f61;
  color: white;
  font-size: 1rem;
}