/* CSS Document */
@charset "utf-8";

/* Reset */
body, h1, h2, p, ul, li, a {
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-decoration: none;
  colour: #333; /* note: 'colour' is invalid, should be 'color' */
}

h2 {
  text-align: center;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background: #f9f9f9; /* light background */
  color: #333;
  margin: 0;
}

header, nav, footer {
  background: #eaeaea; /* light grey background */
  padding: 1em;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

.nav-links li a {
  font-weight: bold;
  color: #333;
}

.language-switch {
  margin-left: auto;
  display: flex;
  gap: 1em;
}

.language-switch a {
  font-weight: bold;
  color: #333;
}

.hero {
  background: #e6e6e6;
  padding: 2em;
  text-align: center;
  color: #fff;
  position: relative;
}


.hero h1 {
  font-weight: bold;
}

.hero h1, .hero p {
  line-height: 1.6;
}

.hero h1, .hero p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  margin-bottom: 0.5em;
  color: #fff;
};
.hero p {
  margin-bottom: 1em;
  color: #fff;
}

.btn {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
}

.btn:hover {
  background: #555;
}

main {
  padding: 2em;
}

.sections {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}

.section {
  flex: 1 1 250px;
  background: #fafafa;
  padding: 1em;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

footer {
  text-align: center;
  font-size: 0.9em;
  background: #f0f0f0;
  margin-top: 3em;
  padding: 1em;
}

footer a {
  color: #333;
  font-weight: normal;
  text-decoration: underline;
}

footer a:hover {
  color: #555;
}

.note,
.error {
  display: block;
  width: 90%;
  min-height: 35px;
  float: left;
  margin: 10px 0;
  padding: 7px 10px 7px 40px;
  border-top: #EBE8D7 1px solid;
  border-bottom: #EBE8D7 1px solid;
  line-height: normal;
}

.note {
  background: #33CCFF url(../images/info.jpg) no-repeat 5px 4px;
}

.error {
  background: #FF9D9D url(../images/error.gif) no-repeat 5px 4px;
  border-top: #FF3300 1px solid;
  border-bottom: #FF3300 1px solid;
  min-height: 20px;
}

.rodo-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #222;
  color: #fff;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
}

.rodo-banner p {
  margin: 0;
}

.rodo-banner a {
  color: #66ccff;
  text-decoration: underline;
}

.rodo-banner button {
  background: #66ccff;
  border: none;
  color: #222;
  padding: 0.5em 1em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
}

.rodo-banner button:hover {
  background: #3399ff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background-color: #f5f5f5; /* lighter than #222 */
  color: #333;
}

.logo img {
  height: 50px;
  width: auto;
}

.right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.language-select {
  font-size: 0.8em;
  margin-bottom: 0.3em;
}

.language-select a {
  color: #666;
  text-decoration: none;
  font-weight: 600;
  padding: 0 0.3em;
}

.language-select a.active {
  color: #3399ff;
}

.language-select a:hover {
  color: #66aaff;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2em;
}

.menu ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: color 0.3s ease;
}

.menu ul li a:hover {
  color: #3399ff;
}

.heart-image {
  text-align: center;
  margin: 1em 0;
}

.heart-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 500px;
  background-image: url('../images/bg3.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  color: #fff;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
}

.heart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 102, 204, 0.5);
  z-index: 1;
}

.heart-text {
  max-width: 80%;
  white-space: normal;  /* allow wrapping */
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }

  .logo {
    margin-bottom: 1em;
  }

  .right-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .language-select {
    margin-bottom: 0.5em;
    font-size: 0.75em;
  }

  .language-select a {
    padding: 0 0.2em;
  }

  .menu ul {
    flex-direction: column;
    gap: 0.7em;
  }

  .menu ul li a {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .rodo-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.8em;
    padding: 0.8em 1em;
  }

  .rodo-banner p {
    margin-bottom: 0.7em;
  }

  .rodo-banner button {
    width: 100%;
    padding: 0.6em 0;
    font-size: 1em;
  }
}

.content-area {
  display: block !important;
  width: 90%;
  max-width: 900px;
  margin: 0 auto !important;
  padding: 20px;
  box-sizing: border-box;
}

ul, ol {
  padding-left: 1.5em;
  margin-left: 0;
  list-style-position: outside;
}

#map { height: 380px; }

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}