@import url(print.css) print;

html{
  font-size: 16px;
}

body{ /*for the background*/
  background-image: url('../media/background.jpg'); /* adjust the path */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

body

/* Alapértelmezett elrejtés: pozicionáljuk a képernyőn kívülre */
.skip-to-content {
  position: absolute; /* Abszolút pozicionálás */
  left: -9999px; /* Mozgatás messze balra a képernyőről */
  z-index: 999; /* Biztosítja, hogy más elemek fölé kerüljön, ha láthatóvá válik */
  padding: 8px;
  background-color: #f0f0f0; /* Háttérszín, ha látható */
  color: #333; /* Szöveg szín, ha látható */
  border: 1px solid #ccc;
  text-decoration: none;
}

/* Láthatóvá tétel fókuszban */
.skip-to-content:focus {
  position: static; /* Vissza a normál pozicionáláshoz */
  left: auto; /* Eltávolítja a bal oldali eltolást */
  /* Opcionális: további stílusok, hogy jól látható legyen */
  top: auto;
  margin: 10px;
  display: block; /* Biztosítja, hogy blokk elemként jelenjen meg, ha szükséges */
}

  h1{
    font-size: clamp(1.5rem, 1rem + 3vw, 3rem);
  }
  .main-container { /* for the beige wrapper*/
    background-color: #f5f5dc; /* Beige color */
    padding: 20px; /* Add space around the content */
    margin: 0 auto; /* Center the content */
    width: 80%; /* Make the container take 80% of the width */
    min-height: 100vh; /* Ensure the container takes up at least the full height */
    box-sizing: border-box; /* Include padding in the width calculation */
  }

  .navbar-light .navbar-nav .nav-link.active {
    color: rgb(207, 9, 207); 
  }
  .intro-text{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-top: 0px;
    white-space: pre-line;
    line-height: 1.6;
    font-size: clamp(0.8rem, 0.75rem + 0.7vw, 1.5rem);
  }

/* Make sure the table itself doesn't have a fixed width */
.dog-table {
  width: auto; /* Take up the full width of the container */
  min-width: 100%;
  table-layout: auto; /* Let the browser adjust column widths */
  overflow-x: auto;
}

.dog-table th, .dog-table td {
  padding: 10px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .dog-table th, .dog-table td {
    font-size: 0.9rem; /* Smaller font for mobile */
  }
}
  .table-notes{
    font-family: sans-serif;
    font-style: italic;
    margin-top: 0px;
    white-space: pre-line;
    text-align: left;
    line-height: 1.2;
    font-size: clamp(0.6rem, 0.75rem + 0.5vw, 1.0rem);
  }

  .carousel-inner img {
    height: 300px; 
    object-fit: cover;
    width: 80px;
  }

  .row{
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .middle-text{
    font-family: 'Times New Roman', Times, serif;
    margin-top: 0px;
    white-space: pre-line;
    line-height: 1.6;
    font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1.125rem);
  }

  h2{
    margin-top: 20px;
    margin-bottom: 0px;
    font-family: Arial, Helvetica, sans-serif ;
    font-weight: bold;
    text-align: center;
    font-size: clamp(0.85rem, 0.75rem + 0.8vw, 1.6rem);
  }

  .img-fill{
    width: 100%;
    height: auto;
    object-fit: cover;
  }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.fluid-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
  .corgi-notes h3{
    margin-top: 20px;
    margin-bottom: 0px;
    font-family: Arial, Helvetica, sans-serif ;
    font-weight: bold;
    text-align: center;
    font-size: clamp(0.85rem, 0.75rem + 0.8vw, 1.6rem);
  }

  .corgi-notes li{
    font-family: sans-serif;
    font-style: italic;
    margin-top: 0px;
    white-space: pre-line;
    text-align: left;
    line-height: 1.2;
    font-size: clamp(0.6rem, 0.75rem + 0.5vw, 1.0rem);
  }
  .footer-container{
    background-color: lightgrey; 
    width: 80%; /* Make the container take 80% of the width */
    margin: 0 auto; /* Center the content */
  }

.footer-container .address p{
        font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: bold;
        margin-top: 0px;
        white-space: pre-line;
        line-height: 1.0;
        font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1.125rem);
}

.husky-quote-text p {
  font-style: italic; 
  color: #555; 
  margin: 20px 40px; 
  padding: 10px 20px; 
  border-left: 4px solid #007bff; 
  background-color: #f8f9fa; 
  quotes: "„" "”" "»" "«"; 
}

.husky-quote-footer p{
  font-family: sans-serif;
  margin-top: 0;
  padding-top: 0;
  font-weight: bold;
  color: #2b2b2b; 
  white-space: break-spaces;
  line-height: 1.0;
  margin-top: 0px;
}

a:visited {
  color: #551a8b; 
}