:root {
  --bg: #F5F5DC;
  --text: #1f1f1f;
  --accent: #6b705c;
  --border: #e5e5e5;
  --coler: #8A2622;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Minion Variable Concept", "Display", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
 .logo-container {
  text-align: center;     /* centrerar loggan */
  margin-top: 20px;       /* lite luft ovanför */
  margin-bottom: 20px;    /* luft under loggan */
}

.logo {
  width: 3cm;             /* exakt bredd */
  height: 3cm;            /* exakt höjd */
  object-fit: contain;    /* behåller proportionerna */
}

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  text-align: center;
}

header {
  margin-bottom: 3rem;
}

h1 {
  
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  color: var(--coler);
}

.date {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}


section {
  margin-bottom: 0cm;
}

.section-image {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 1rem auto 0.5rem auto;
  border-radius: 8px;
}

.section-simage {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 1rem auto 0.5rem auto;
  border-radius: 8px;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  color: var(--coler);
}

.two-columns {
  display: flex;
  gap: 1cm;           /* avstånd mellan texterna */
  justify-content: center;
  margin-bottom: 2rem;
}

.column {
  flex: 1;             /* båda tar lika mycket plats */
  max-width: 300px;    /* så de inte blir för breda */
}

.space {
  margin-top: 70px;
}

.two-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.two {
  text-align: center;
  font-size: 0.5rem;
}

.divider-vertical {
  width: 2px;
  height: 120px;
  background: var(--coler);
}

p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--coler);
}
.map {
  max-width: 680px;       /* samma bredd som main */
  margin: 0 auto;         /* centrerar sektionen */
  padding: 1rem;          /* lite luft runt */
  text-align: center;     /* centrerar rubrik och iframe */
}

.google-map {
  width: 100%;            /* fyller sektionen horisontellt */
  height: 300px;          /* höjd på kartan */
  border: 2;              /* tar bort ram */
  border-color: var(--coler);
  border-radius: 8px;     /* valfritt, rundar hörn */
}
.divider {
  width: 160px;
  height: 2px;
  background: var(--coler); /*<var(--border);>*/
  margin: 2.5rem auto;
}

.button {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--coler);
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-family: inherit;
  font-size: 1.1rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

footer {
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .google-map {
    height: 200px;     /* mindre höjd på mobil */
  }
}
@media (max-width: 480px) {
  .two-columns {
    flex-direction: column;
    gap: 1.5rem;
  }

  .column {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .two-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .divider-vertical {
    width: 60px;
    height: 1px;
  }
}
