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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fafafa;
  color: #1a1a1a;
}

.brand {
  background: #EDE8D0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.brand-icon {
  height: 64px;
  width: auto;
}

.menu {
  position: relative;
  margin-left: auto;
}

.menu-toggle {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
}

.menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  list-style: none;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  overflow: hidden;
}

.menu-dropdown.open {
  display: block;
}

.menu-dropdown li a {
  display: block;
  padding: 12px 16px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.menu-dropdown li a:hover {
  background: #f2f2f2;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("palmtrees.jpg") center / cover no-repeat;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

.page-section {
  padding: 80px 24px;
  text-align: center;
}

.page-section h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.site-footer {
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}
