
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; line-height: 1.6; color: #333; background: #f8f9fa; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3 { font-family: 'Playfair Display', serif; }
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.3rem;
}
.logo img {
  width: 40px;
  margin-right: 10px;
}
.nav ul {
  display: flex;
  gap: 2rem;
}
.nav a {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #006400;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.nav a:hover::after, .nav a.active::after {
  width: 100%;
}
.mobile-toggle { display: none; cursor: pointer; font-size: 1.5rem; }

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/img1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.btn {
  background: #1e3a8a;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s;
}
.btn:hover {
  background: #1e3a8a;
  transform: translateY(-3px);
}

/* Sections */
.intro, .about-content, .features-grid, .gallery {
  padding: 80px 0;
  text-align: center;
}
.intro p, .about-content p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}
.page-hero {
  background: #1e3a8a;
  color: white;
  text-align: center;
  padding: 100px 0 60px;
}
.page-hero h1 {
  font-size: 3rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gallery-img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.gallery-img:hover {
  transform: scale(1.05);
}

/* Blog */
.blog-post {
  background: white;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.blog-post h3 {
  color: #1e3a8a
}
.blog-post small {
  color: #777;
  font-style: italic;
}

/* Footer */
.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}
.footer a {
  color: #8bc34a;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
  .nav.active { display: block; }
  .nav ul { flex-direction: column; padding: 1rem; }
  .nav li { margin: 0.5rem 0; }
  .mobile-toggle { display: block; }
  .hero-content h1 { font-size: 2.5rem; }
}