/* =========================================
   Base Typography & Layout (Swiss Modernist)
   ========================================= */
body {
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
}

/* =========================================
   Language Switcher
   ========================================= */
.lang-switcher {
  text-align: right;
  padding: 20px 30px;
}

.lang-switcher button {
  background-color: transparent;
  color: #000000;
  border: 1.5px solid #000000;
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-left: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0; /* Sharp corners for architectural/brutalist feel */
}

.lang-switcher button:hover,
.lang-switcher button.active {
  background-color: #000000;
  color: #ffffff;
}

/* =========================================
   Main Content & Titles
   ========================================= */
.cim {
  margin: auto;
  padding-top: 20px;
}

.cim h1 {
  font-weight: 500; /* Refined, blueprint-like weight */
  letter-spacing: 2px;
  margin: 10px 0;
}

.elso {
  max-width: 30%;
  height: auto;
}

/* =========================================
   Contact Information
   ========================================= */
.info {
  margin: auto;
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column; /* Stacks the links vertically */
  align-items: center;    /* Centers them horizontally */
  gap: 12px;              /* Geometric, even spacing between links */
}

.contact-link {
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-decoration: none; /* Removes the default blue hyperlink style */
  letter-spacing: 1.5px;
  border-bottom: 2px solid transparent; 
  transition: border-bottom 0.3s ease;
}

/* Structural hover effect */
.contact-link:hover {
  border-bottom: 2px solid #000000; 
}

/* CSS Anti-Spam trick: Reverses backwards text in the HTML */
.reverse-text {
  direction: rtl;
  unicode-bidi: bidi-override;
}

/* =========================================
   Responsive Design (Mobile / Tablets)
   ========================================= */
@media screen and (max-width: 1200px) {
  .lang-switcher {
      text-align: center; /* Center the buttons on mobile */
      padding: 15px;
  }
  
  .elso {
      width: 100%;
      max-width: 400px;
  }
  
  .cim h1 {
      font-size: 20px; /* Scale down titles for smaller screens */
  }
  
  .contact-link {
      font-size: 14px; /* Scale down contact links */
  }
}