/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  text-align: center;

  background: linear-gradient(
    to bottom,
    #d92c2c 0%,
    #f2a7a7 40%,
    #e5e5e5 100%
  );

  min-height: 100vh;
  cursor: url("cursor.png"), pointer;
}

.subtitle {
  color: white
}

.title {
  color:  white;
}


/* CONTAINER */
.container {
  padding: 60px 20px;
}

/* TITEL */
h1 {
  font-size: 42px;
  letter-spacing: 4px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* TEXT */
.subtitle {
  max-width: 520px;
  margin: 0 auto 25px auto;
  font-size: 14px;
  line-height: 1.6;
}

/* GRID */
.grid {
  margin-top: 100px;

  display: grid;

  grid-template-columns: repeat(5, 140px);

  gap: 30px;

  justify-content: center;

  padding: 0 40px;
}

/* KARTEN */
.card {
  background: white;
  border-radius: 18px;
  padding: 10px;
  width: 140px;

  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* BILD */
.card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
}

/* TEXT */
.card p {
  margin: 8px 0;
  font-size: 13px;
}

/* AUDIO */
audio {
  width: 100%;
}

/* HANDY */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 140px);
  }
}

.flagge {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 500px;
  height: auto;

 
}
.flagge2 {
  position: absolute;
  top: 20px;
  left: 20px;

    width: 500px;      
  height: auto;
}

/* ===== BACKGROUND WRAPPER ===== */
.bg-mountains {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  z-index: -1;
  overflow: hidden;


}

/* ===== SVG ===== */
.bg-mountains svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
  animation: moveMountains 40s linear infinite;
}

/* ===== BERG FORM ===== */
.mountain {
  fill: #857171;   /* dunkles Wallis-Rot */
  opacity: 0.6;
}

/* ===== ANIMATION ===== */
@keyframes moveMountains {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

 .about-link {
  position: fixed;

  top: 30px;
  left: 30px;

  text-decoration: none;

  background: white;

  color: black;

  padding: 12px 18px;

  border-radius: 12px;

  font-weight: bold;

  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* FOOTER */
footer {
  margin-top: 100px;

  padding: 40px;

  text-align: center;
}

/* BUTTON */
.footer-button {
  text-decoration: none;

  background: rgba(255,255,255,0.8);

  color: black;

  padding: 15px 30px;

  border-radius: 18px;

  font-weight: bold;

  font-size: 16px;

  backdrop-filter: blur(10px);

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  transition: 0.3s ease;
}

.card:hover{
 transform: translateY(-8px) scale(1.03);
}

.footer-button:hover {
  background: white;

  transform: translateY(-4px);

  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.karte-section{
    text-align:center;
    margin:40px 0;
}

#karteBtn{
    background:#d52b1e;
    color:white;
    border:none;
    padding:12px 24px;
    border-radius:10px;
    font-size:1rem;
    cursor:pointer;
}

#karteContainer{
    display:none;
    margin-top:20px;
}

.wallis-karte{
    width:100%;
    max-width:800px;
    border-radius:15px;
}