html, body {
  height: 100%;
  scroll-behavior: smooth;
  }

body {
  display: flex;
  flex-direction: column;
  }

.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #f5f7fa;
  background-image: url("../_imgs/background.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  }

header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  background-color: rgba(208, 231, 255, 0.8);
  backdrop-filter: blur(6px);
  }

header .logo {
  max-height: 60px;
  width: auto;
  }

header, footer {
  color: white;
  text-align: center;
  padding: 1rem;
  }

footer {
  background-color: rgba(224, 224, 224, 0.85);
  margin-top: auto;
  font-size: 0.9em;
  color: #333;
  }

.contact-tag {
  display: inline-block;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #ffc857;
  color: black;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
  border-bottom: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1rem auto;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.3s ease;
  }

.contact-tag:hover {
  background-color: #ffb347;
  transform: scale(1.05);
  }

.block {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;
  padding: 1.5rem 1rem;
  text-wrap: balance;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }

@media (max-width: 600px) {
  .block {
    width: 95%;
    margin: 1rem auto;
    }
  }

.block.two-columns {
    width: 95%;
    margin: 1rem auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  
@media (min-width: 768px) {
    .block.two-columns {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      column-gap: 2rem;
      row-gap: 0.75rem;
      align-items: stretch;
    }

    .block.two-columns .left {
      grid-column: 1;
      grid-row: 1 / span 2;
    }
    
    .narrow-measure {
      max-width: 24ch;
      margin-inline: auto;
    }
  
    .block.two-columns .right-top {
        grid-column: 2;
        grid-row: 1;
    }
    
    .block.two-columns .right-bottom {
        grid-column: 2;
        grid-row: 2;
    }
      
    .block.two-columns h2 {
        margin-top: 0;
    }    

      .block.two-columns .column {
        text-align: center;
    }
  }

h2 {
  display: inline-block;
  font-size: 100%;
  text-align:center;
  font-style:italic;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #333;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  padding: 0 0.5rem 0.25rem;
  margin: 0 auto 0.5rem;
  border-bottom:1px dotted #000;
  }

a {
  color:#000;
  text-decoration:none;
  outline:none;
  border-bottom:1px dotted #000;
  }

a.tel {
  color:#000;
  border-bottom:none !important;
  }
  
a:focus {
  outline: none;
  }

a:focus-visible {
  outline: 2px solid #ffc857;
  outline-offset: 3px;
  }