body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url('laforet.jpg') no-repeat center top;
  background-size: contain;
  background-attachment: fixed;
  background-color: #faf3e9;
  font-family: 'Poppins', sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 243, 233, 0.9);
  border-bottom: 1px solid #e2d7c9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  font-weight: bold;
  color: #2e3b2e;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: #3b3a2e;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #d6c8b4;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #3b3a2e;
  border-radius: 2px;
  transition: 0.3s;
}

main {
  max-width: 900px;
  margin: 100px auto 40px auto;
  padding: 0 16px;
}

h1 {
  font-family: 'Poppins', sans-serif;
  color: #2f2e24;
}

p {
  font-size: 110%;
  font-family: 'Poppins', sans-serif;
  color: #4a493c;
  line-height: 1.6;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #e2d7c9;
  border-radius: 8px;
  padding: 20px;
}

.social {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid #d8cdbf;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  color: #3b3a2e;
  text-decoration: none;
  transition: background 0.15s ease;
}

.social a:hover {
  background: #efe6d9;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 64px;
    right: 0;
    background: rgba(250, 243, 233, 0.98);
    border-top: 1px solid #e2d7c9;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 12px 0;
    display: none;
  }

  nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 10px 20px;
    font-size: 20px;
    border-bottom: 1px solid #e2d7c9;
  }

  .menu-toggle {
    display: flex;
  }
}