/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #4CAF50;
}

nav a.active {
  color: #4CAF50;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #4CAF50, #2ecc71);
  color: white;
}

.hero h2 {
  font-size: 2.8em;
}

.hero p {
  margin: 20px 0;
  font-size: 1.2em;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  color: #4CAF50;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin: 5px;
}

.btn:hover {
  background: #333;
  color: white;
}

.btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn.secondary:hover {
  background: white;
  color: #4CAF50;
}

/* =========================
   MAIN CONTENT
========================= */
main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
}

/* =========================
   FORMS (CONTACT PAGE)
========================= */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
}

textarea {
  min-height: 120px;
}

button {
  background: #4CAF50;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #333;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 20px;
  background: #eee;
  margin-top: 40px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .hero h2 {
    font-size: 2em;
  }

  main {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================
   DROPDOWN (HOVER)
========================= */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 8px;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f4f4f4;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* RSS FEED */
#rss-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
}