/* GENERAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.section-title {
  font-size: 1.8rem;
  color: #009688;
  margin: 40px 0 20px;
  text-align: center;
}

/* BANNER */
.banner {
  background: linear-gradient(to right, #009688, #00bcd4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.banner-logo {
  width: 100px;
  border-radius: 10px;
  margin-right: 20px;
}

.banner-content {
  flex: 1 1 60%;
  text-align: left;
  min-width: 240px;
}

.banner-content h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1rem;
  opacity: 0.95;
}

/* RADIO FM PLAYER STYLES */
.radio-banner {
  background-image: url('assets/images/radio-lamu-logo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.radio-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 77, 64, 0.45);
  z-index: 1;
}

.radio-content {
  position: relative;
  z-index: 2;
}

.radio-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.radio-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.radio-player {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.radio-image {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.player-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #004d40;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.play-button {
  font-size: 2rem;
  background: #00e676;
  color: #004d40;
  border: none;
  border-radius: 50%;
  padding: 12px 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-button:hover {
  background: #1de9b6;
}

.player-text h3 {
  margin: 0;
  font-size: 1.2rem;
}

.player-text p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* DEPARTMENTS */
.departments {
  padding: 50px 20px;
  background: #f1f1f1;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.dept-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 15px;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.dept-card:hover {
  transform: translateY(-5px);
  background: #e0f2f1;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.dept-card div {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.dept-card span {
  font-weight: 600;
}

/* WELCOME SECTION */
.welcome-section {
  background: #fff;
  padding: 60px 20px;
}

.welcome-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.welcome-image {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.welcome-text {
  flex: 1 1 400px;
}

.welcome-text h3 {
  color: #009688;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.caption {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

/* SOCIAL MEDIA BANNER */
.social-banner {
  background: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s ease;
  min-width: 110px;
  text-align: center;
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.twitter {
  background: #1da1f2;
}

.social-icon.tiktok {
  background: #000000;
}

.social-icon:hover {
  opacity: 0.85;
}

/* CTA */
.cta-bar {
  background: #ffd54f;
  color: #222;
  padding: 25px 15px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid #ffecb3;
  border-bottom: 1px solid #ffecb3;
}

.cta-bar a {
  color: #00695c;
  font-weight: 600;
}

.cta-bar a:hover {
  text-decoration: underline;
}

/* FOOTER */
.bottom-footer {
  background: #f4f4f4;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #555;
}

.bottom-footer strong {
  color: #009688;
}
