/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Alumni Sans', Arial, sans-serif;
  color: #000;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #423526;
}

/* Header and menu */
.header {
  background: #C4B399;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.burger-line {
  height: 4px;
  background-color: white;
  width: 100%;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-weight: 300;
  flex-grow: 1;
  justify-content: center;
}

.menu a {
  font-size: 26px;
  font-weight: 200;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #000;
}

/* Burger menu toggle for mobile */
.menu.active {
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #000;
  padding: 20px;
  text-align: center;
}

.menu a {
  display: block;
  padding: 10px;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .menu.active {
    display: flex;
  }
}

/* Hero section with centered SVG logo */
.hero {
  height: 100vh;
  background-color: #314723;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.logo-svg {
  width: 450px;
  height: auto;
  max-width: 90%;
}

/* Content sections placeholders */
.section {
  padding: 120px 30px;
  background-color: #f4f4f4;
  text-align: center;
}

.section:nth-child(even) {
  background-color: #e0e0e0;
}

.section h2 {
  font-size: 38px;
  font-weight: 200;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Section images */
.section-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Footer */
.footer {
  background-color: #000;
  color: #d1d1d1;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* Media queries */
@media (max-width: 768px) {
  .section-image {
    width: 100%;
    max-width: 100%;
  }

  .menu {
    display: none;
  }

  .menu.active {
    display: block;
  }
}
