/* Basinställningar */
body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: #f9f6f1; /* varmvit ton från din bild */
  color: #1a1a1a;
}

/* Navigationsfältet */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #f4f4f4;
  transition: background 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 110px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch,
.search {
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 20px;
}

/* Hamburgarmeny */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: black;
  width: 100%;
}

/* Dropdown overlay */
/* === DROPDOWN MENY === */
.dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #004900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1001;

  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dropdown-menu a {
  color: white;
  font-size: 30px;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.dropdown-menu a:hover {
  transform: scale(1.05);
}

.dropdown-menu.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}


.close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Kontaktformulär */
.contact-section {
  margin-top: 100px;
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: linear-gradient(to bottom, #053e05 50%, white 50%, white 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 700px;
  background: white;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-container h1 {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: center;
}

.contact-container p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  background: #053e05;
  color: white;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 1px;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.contact-form button:hover {
  background: #0a790a;
}

/* Footer */
.site-footer {
  background-color: #053e05;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.site-footer p {
  margin: 8px 0;
}

/* Fade-in animation */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
