/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  /* background-color: #fafafa; */
  background-color: #f6f4d2;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}


/* Navigation */
.navbar {
  /* background-color: #1a3d7c; */
  background-color: #e3b74f;
  /* color: white; */
  color: #333;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h2 {
  /* color: #fff; */
  color:#333;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-link {
  /* color: white; */
  color:#333;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover {
  /* color: #ffd700; */
  color: blue;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
  transition: 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(74, 91, 122, 0.8), rgba(74, 91, 122, 0.8)), url('image/hero_bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 10rem 0 6rem;
  margin-top: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  /* background: #ffd700; */
  background: #e3b74f;
  color: #1a3d7c;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e6c200;
  transform: translateY(-3px);
}

/* Grid Layouts */
.about-grid,
.services-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-item,
.service-card,
.event {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.service-card h3,
.event h3 {
  color: #1a3d7c;
}


/* Footer */
.footer {
  background: #1a3d7c;
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer a {
  color: #ffd700;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    /* background-color: #1a3d7c; */
    background-color: #e3b74f;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}