/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #004d40;
  color: white;
  padding: 7px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo {
  width: 120px;
  height: auto;
}

/* NAVIGATION */
nav {
  position: relative;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  transition: all 0.3s ease;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s, border-bottom 0.3s;
}

.menu li a:hover {
  color: #ff5252;
  border-bottom: 2px solid #e91e63;
  padding-bottom: 2px;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  background: white;
  border-radius: 2px;
  width: 100%;
  transition: 0.4s;
}

/* SLIDER */
.slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slide {
  display: none;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}

.caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  padding: 20px;
  border-radius: 10px;
  max-width: 80%;
  animation: fadeInUp 1s ease;
}

.caption h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* CTA BUTTONS */
.cta-section {
  text-align: center;
  margin: 30px 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  color: white;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: scale(1.07);
  opacity: 0.9;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-black { background-color: #000; }
.btn-red { background-color: #c62828; }
.btn-pink { background-color: #e91e63; }
.btn-blue { background-color: darkblue; }

/* IMAGE ROW */
.image-row-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.image-row-container img {
  width: 300px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.image-row-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* SECTIONS */
.section {
  padding: 60px 0;
  text-align: center;
}

.section h2 {
  color: #004d40;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.bg-light {
  background: #f9f9f9;
}

.container {
  width: 90%;
  margin: auto;
}

/* NEWS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.news-item img {
  width: 100%;
  border-radius: 10px;
}

.news-item h3 {
  margin-top: 10px;
  color: #004d40;
}

/* EVENTS */
.events-list {
  list-style: none;
  font-size: 1.1rem;
  line-height: 2;
}

/* FACEBOOK */
.fb-feed {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* FOOTER */
footer {
  background: #004d40;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 40px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
  .header-container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 65px;
    right: 0;
    background: #004d40;
    flex-direction: column;
    width: 200px;
    display: none;
    border-radius: 0 0 10px 10px;
    animation: dropdown 0.3s ease;
  }

  @keyframes dropdown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .menu li {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .menu li:last-child {
    border-bottom: none;
  }

  .menu.active {
    display: flex;
  }

  .caption h1 {
    font-size: 1.4rem;
  }

  .caption p {
    font-size: 0.9rem;
  }

  .image-row-container img {
    width: 90%;
    height: auto;
  }
}
