.ski-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #004990; 
}

.ski-text {
  flex: 2;
  min-width: 300px;
  background-color: white; /* Add white background */
  padding: 15px;
  border-radius: 10px; /* Optional: Rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
}

.ski-image {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white; /* Add white background */
  padding: 15px;
  border-radius: 10px; /* Optional: Rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

h1, h2 {
  color: #2c3e50;
}

h1 {
  font-size: 2em; /* Adjust font size for h1 */
}

h2 {
  font-size: 1.5em; /* Adjust font size for h2 */
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}

.skip-link:focus {
  position: absolute;
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: #0066cc;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  z-index: 1000;
}


img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}

.logo img {
  height: 100px;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.main-nav a:hover {
  background-color: #0066cc;
  color: white;
}

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url('fooldal4uj.jpeg') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  image-rendering: auto;
}

.hero h1 {
  font-size: 3em;
  margin: 0;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  color: white; /* Ensure the text is white */
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2em;
  padding: 2em;
  max-width: 1400px; 
  margin: 0 auto;    
  
}



.table-wrapper {
  overflow-x: auto; 
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
}

table caption {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.table-block h2 {
  color: white;
  text-align: center;
}

table th,
table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

table th {
  background-color: #004990; /* Same blue as footer */
  color: white;
  font-weight: bold;
  text-align: center;
}

table tr:nth-child(even) {
  background-color: #f4f4f4; /* Light gray for alternating rows */
}

table tr:hover {
  background-color: #e0e0e0; /* Highlight row on hover */
}

table td {
  color: #333;
}

table td:first-child {
  font-weight: bold;
}

/* Responsive Table */
@media (max-width: 768px) {
  table th,
  table td {
    font-size: 0.9em;
    padding: 10px;
  }
}

.table-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #004990; /* Same blue as the footer */
  color: white; /* White font color for all text inside */
}

.table-block h1 {
  color: white; /* Ensure the heading is white */
  text-align: center;
}

.table-block details summary {
  color: white; /* Ensure the summary text is white */
  cursor: pointer;
}

.table-block table {
  background-color: white; /* Keep the table background white */
  color: #333; /* Ensure table text is readable */
  border-radius: 10px;
  overflow: hidden;
}

.table-block table caption {
  color: white; /* Ensure the caption text is white */
}

.main-nav a.active {
  background-color: #0066cc; /* Blue background */
  color: white; /* White text */
}


footer {
  background-color: #004990;
  color: white;
  text-align: left; /* Align content to the left */
  padding: 1em;
  margin-top: 2em;
}

footer h2 {
  color: white;
}



footer a {
  color: white;
  text-decoration: underline;
}

footer a:visited {
  color: #e0e0e0; /* vagy akár white */
}

footer a:hover,
footer a:focus {
  color: orange;
  text-decoration: underline;
  outline: 2px dashed orange;
  outline-offset: 2px;
}






