/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header & Nav */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
}

.logo img {
    img src="logo.png";
  height: 140px;
  margin-right: 5px;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #ff6600;
}

.nav .btn {
  background: #ff6600;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.nav .btn:hover {
  background: #e65c00;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #003366, #009966);
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 20px;
}

.hero .btn {
  background: #ff6600;
  padding: 12px 25px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #e65c00;
}

/* Features Section (Home Page) */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 50px 10%;
}

.feature {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

/* Events Section */
.events {
  background: #f1f1f1;
  padding: 60px 10%;
  text-align: center;
}

.events h2 {
  margin-bottom: 15px;
}

.events p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}

.events img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Community Section */
.community {
  padding: 60px 10%;
  text-align: center;
}

.community p {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

/* Pricing Section */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 10%;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 10px;
}

.card .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #003366;
  margin-bottom: 15px;
}

.card ul {
  list-style: none;
  margin-bottom: 20px;
}

.card li {
  margin: 8px 0;
}

.card .btn {
  display: block;
  background: #ff6600;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.card .btn:hover {
  background: #e65c00;
}

/* Footer */
.footer {
  background: #003366;
  color: #fff;
  padding: 40px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.map {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: 8px;
}

.copyright {
  background: #002244;
  color: #ccc;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
}

.whatsapp:hover {
  background: #1da851;
}
