/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */
header {
  background-color: #2e7d6e;
  padding: 15px 30px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffd700;
}

.cta {
  padding: 8px 16px;
  background-color: #ffd700;
  border: none;
  color: #2e7d6e;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.cta:hover {
  background-color: #e6c700;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80vh;
  background: url('event-decor.jpg') center/cover no-repeat;
  color: #fff;
  padding: 20px;
}

.hero-section h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero-cta {
  padding: 10px 20px;
  background-color: #ffd700;
  border: none;
  color: #2e7d6e;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-cta:hover {
  background-color: #e6c700;
}

/* About, Services, and Contact Sections */
section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

section p {
  font-size: 1.1em;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #2e7d6e;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}

/* Highlight active nav link */
.nav-links a.active {
  color: #ffd700;
  font-weight: bold;
}

/* About Section */
.about-section {
  padding: 50px 20px;
  text-align: center;
}

.about-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.about-section h2 {
  font-size: 2em;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #2e7d6e;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-list li {
  font-size: 1.1em;
  color: #555;
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
}

.about-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #2e7d6e;
  font-weight: bold;
}
