<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Arbutus+Slab&amp;display=swap");

/* Base Styles */
:root {
  --text-color: #000000;
  --link-color: #ffffff;
  --background-color: #fff8d3;
  font-size: 17px; /* Set the base font size */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* Adjust this value based on the height of your nav bar */
}

body {
  font-family: "Arbutus Slab", serif;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Arbutus Slab", serif;
  font-weight: bold;
}

hr {
  height: 2px;
  background-color: rgb(255, 203, 166);
  border: none;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 0 3.125rem;
  height: 5rem;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 203, 166, 0.9);
  backdrop-filter: blur(5px);
}

nav .left a {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 600;
}

nav .right a {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0.625rem;
}

nav .right a:hover {
  color: var(--link-color);
  transition: color 0.3s ease-in-out;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* General Section Styles */
section {
  padding: 8rem 2rem;
  min-height: 80vh; /* Reduce the default minimum height */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

section:nth-of-type(odd) {
  background-color: #fff8d3; /* Light gray for odd sections */
}

section:nth-of-type(even) {
  background-color: #ffffff; /* White for even sections */
}

/* Section Heading Styles */
section h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  position: relative;
}

section h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: rgb(255, 203, 166);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  position: relative;
}

/* Section */
#section {
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  text-align: justify;
  gap: 0.5rem;
}

#section h2 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 700;
}

#section .headshot {
  overflow: hidden;
}

#section .headshot img {
  width: 100%;
  height: 100%;
}

#section .profile {
  overflow: hidden;
}

#section .profile img {
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
}

#section .bio {
  margin-bottom: 2rem;
  padding: 0 2rem;
  max-width: 56.25rem;
}

#section .bio p,
li {
  font-size: 1.25rem;
  font-weight: 300;
}

#section .social-links {
  font-size: 2.25rem;
}

#section .social-links a {
  padding: 0;
  margin: 0 0.75rem;
}

#section .social-links a i {
  transition: transform 0.3s, color 0.3s;
}

#section .social-links a:hover i {
  color: #000000;
  transform: scale(1.2);
}

#section a:hover {
  color: rgb(255, 203, 166);
  transition: color 0.3s ease-in-out;
}

#section .social-links i {
  color: #737373;
  font-weight: 500;
}

.vizitka-section {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
}

.vizitka {
  border: 1px solid rgb(255, 203, 166);
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 75%;
  height: auto;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: separate; /* Allows spacing between rows */
  border-spacing: 0 10px; /* Adds vertical space between rows */
}

.tableText {
  font-size: 17px !important;
}

th,
td {
  text-align: left;
  padding: 10px; /* Adds padding inside cells (top/bottom: 10px, left/right: 20px) */
  background-color: rgb(
    255,
    203,
    166
  ); /* Light background for better readability */
}

th:first-child {
  padding-left: 20px; /* Extra padding on the left for the first column */
}

th:last-child {
  padding-right: 20px; /* Extra padding on the right for the last column */
}

tr {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for separation */
}

form {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background-color: rgb(255, 203, 166);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: "Arbutus Slab", serif;
}

textarea {
  resize: none;
  min-height: 100px;
}

button[type="submit"] {
  background-color: #fff8d3;
  color: black;
  padding: 10px 20px;
  border: solid 1px rgb(255, 203, 166);
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
  font-family: "Arbutus Slab", serif;
}

button[type="submit"]:hover {
  background-color: rgb(255, 203, 166);
  border: solid 1px #fff8d3;
}

/* Fokus efekt pro inputy */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #fff8d3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.backBtn {
  background-color: rgb(255, 203, 166);
  color: black;
  padding: 10px 20px;
  border: solid 1px #fff8d3;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out,
    border 0.3s ease-in-out;
  font-family: "Arbutus Slab", serif;
}

.backBtn:hover {
  background-color: #fff8d3;
  border: solid 1px rgb(255, 203, 166);
  transform: scale(1.2);
}

.centerP {
  text-align: center;
}

footer {
  background-color: rgb(255, 203, 166);
  color: #000;
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
}

footer a:hover {
  color: var(--link-color);
  transition: color 0.3s ease-in-out;
}

/* Cards Swiper */
.swiper {
  width: 100%;
  overflow-x: scroll !important;
}

.swiper-slide {
  width: 272px !important;
  height: 375.75px;
}

.swiper-slide &gt; a {
  display: block;
  transform: scale(0.9);
  width: 272px;
  height: 375.75px;
}

@media (max-width: 992px) {
  nav .left a {
    font-size: 1.25rem;
  }

  nav .right a {
    font-size: 1.2rem;
    margin: 0.4rem 0.4rem;
  }

  .hamburger {
    display: block;
  }

  nav .right {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: rgba(255, 203, 166, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
  }

  nav .right.active {
    display: flex;
  }

  nav .right a {
    margin: 0.5rem 0;
  }

  #section .headshot {
    width: 18rem;
    height: 18rem;
  }

  /* Table Adjustments */
  table {
    font-size: 0.9rem; /* Slightly smaller text on medium screens */
  }

  th,
  td {
    padding: 8px; /* Reduce padding for smaller screens */
  }
}

@media (max-width: 768px) {
  nav .left a {
    font-size: 1.25rem;
  }

  nav .right a {
    font-size: 1.2rem;
    margin: 0.4rem 0.4rem;
  }

  nav {
    padding: 0 1.5rem;
  }

  #section .headshot {
    width: 16rem;
    height: 16rem;
  }

  #section {
    text-align: left;
  }

  #section h2 {
    font-size: 2rem;
  }

  #section h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  /* Table Adjustments */
  table {
    font-size: 0.85rem; /* Reduce font size for smaller screens */
    border-spacing: 0 10px; /* Remove row spacing on small screens */
    width: auto; /* Allow table to shrink if needed */
    overflow-x: auto; /* Enable horizontal scrolling if necessary */
    display: block; /* Make table scrollable horizontally */
    white-space: inherit; /* Prevent text wrapping in cells */
    margin-bottom: 1rem; /* Add spacing below the table */
  }

  th,
  td {
    padding: 8px; /* Reduce padding for smaller screens */
    word-break: break-word; /* Prevent long text from breaking layout */
  }
}

@media (max-width: 576px) {
  nav {
    padding: 0 1rem;
  }

  nav .left a {
    font-size: 1.1rem;
  }

  nav .right a {
    font-size: 1.2rem;
    margin: 0.4rem 0.4rem;
  }

  #section {
    text-align: left;
  }

  #section .social-links {
    font-size: 1.75rem;
  }

  #section h2 {
    font-size: 1.7rem;
  }

  #section h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  #section .headshot {
    width: 12rem;
    height: 12rem;
  }

  section {
    padding: 6rem 1rem; /* Adjust padding for smaller screens */
  }

  footer {
    font-size: 0.7rem; /* Further reduce footer font size for very small screens */
    padding: 0.75rem;
  }

  /* Table Adjustments for Small Screens */
  table {
    font-size: 0.8rem; /* Smaller text for very small screens */
    border-spacing: none; /* No spacing between rows */
    width: auto; /* Allow table to fit within small screens */
    overflow-x: auto; /* Enable horizontal scrolling if needed */
    display: block; /* Makes the table scrollable horizontally */
  }

  th,
  td {
    padding: 5px; /* Minimal padding for small screens */
  }
}
</pre></body></html>