@import url(//fonts.googleapis.com/css?family=Open+Sans:300,700); 
@import url(//fonts.googleapis.com/css?family=Oswald:300,400);
 
:root {
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --text: #1f2937;
  --muted: #6b7280;
  --background: #f5f7fb;
  --white: #ffffff;
  --black: #000000;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;

  color: var(--text);
  background-color: #dfe4e8;
  background-image:
    url("/images/background.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;

  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
}


.main-menu {
  font-family: 'Oswald',sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border); */
  
}

.main-menu ul {
  display: flex;
  /* gap: 1rem; */
  list-style-type: none;
}

.main-menu a {
  padding: 9px 14px;
  color: var(--text);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--white);
  background: #183b56;
}

main {
  flex: 1;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0;
}

.content-page {
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.location-map iframe {
  width: min(425px, calc(100% - 40px));
  height: clamp(300px, 50vw, 350px);
}

verse {
  min-height: 50vh;
  color: #d6e0e6;
  font-size: 2.0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.entry-title {
  text-align: center;
}

h1 {
  font-family: 'Oswald',sans-serif;
  margin-top: 0;
  color: var(--primary-dark);
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.15;
}

h2, h3, h4 {
  font-family: 'Oswald',sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .main-menu {
    align-items: stretch;
    flex-direction: column;
  }

  .main-menu a {
    text-align: center;
  }

  main {
    width: min(100% - 24px, 900px);
    padding: 30px 0;
  }
}

.site-footer {
  width: 100%;
  margin-top: auto;
  padding: 14px 0;
  color: #d6e0e6;
  background: #183b56;
  font-size: 0.85rem;
  text-align: center;
}

.languages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.languages span {
  color: #b9cbd6;
}

.languages a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.languages a:hover {
  color: #c7a45a;
}

.copyright {
  margin: 10px 0 0;
}
