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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111;
  line-height: 1.7;
  background: #fff;
  scroll-behavior: smooth;
}

/* Layout */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 100px 20px;
}

.section-alt {
  background: #f6f6f6;
}

/* Header */

header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.menu {
  display: flex;
}

.menu a {
  margin-left: 24px;
  font-weight: 500;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #C6A24A;
  left: 0;
  bottom: -6px;
  transition: .3s;
}

.menu a:hover::after {
  width: 100%;
}

/* Hamburger */

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Hero */

.hero {
  padding: 160px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 54px;
  animation: fadeUp 1s ease forwards;
}

.hero p {
  font-size: 20px;
  color: #555;
  margin-top: 15px;
  animation: fadeUp 1.3s ease forwards;
}

/* Button */

.btn {
  display: inline-block;
  margin-top: 35px;
  padding: 12px 28px;
  border: 2px solid #C6A24A;
  color: #C6A24A;
  font-weight: 600;
  transition: .3s;
}

.btn:hover {
  background: #C6A24A;
  color: #fff;
}

/* Sections */

section h2 {
  font-size: 40px;
  margin-bottom: 25px;
}

section p {
  color: #555;
  margin-bottom: 18px;
}

/* Fade animation */

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Leadership */

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 40px;
  margin-top: 40px;
}

.member {
  text-align: center;
  transition: .3s;
}

.member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.member:hover {
  transform: translateY(-8px);
}

/* Footer */

.footer {
  text-align: center;
  padding: 40px;
  background: #f6f6f6;
  font-size: 14px;
  color: #666;
}

/* Responsive */

@media(max-width:768px){

  .menu {
    display: none;
    flex-direction: column;
    background:#fff;
    position:absolute;
    top:60px;
    right:0;
    width:100%;
    border-top:1px solid #eee;
  }

  .menu.show {
    display:flex;
  }

  .menu a {
    padding:15px;
    border-bottom:1px solid #eee;
    margin:0;
  }

  .hamburger {
    display:block;
  }

  .hero h1 { font-size: 38px; }
}

/* Keyframes */

@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px);}
  to { opacity:1; transform:translateY(0);}
}
