:root {
    cursor: url('heartblack.cur'), auto;
}

body {
    margin: 0;
    font-size: 13px;
    font-family: Courier New, Courier, 'monospace';
    background-color: #969696;
    background-image: none;
    background-repeat: repeat;
}

::selection { 
color:#ffffff;
background-color: #5574ff;
}

.topbar {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
}

.topbar a {
    text-decoration: none;
    margin-left: 10px;
}

a, a *, button { 
cursor: url('pointerwheart.cur'), pointer;
}

.banner {
    height: 110px;
    background-size: cover;
    background-position: center;
    background-color: #2e2e2e;
    background-image:;
    position: relative;
}


.banner-title {
    position: absolute;
    right: 100px;
    top: -90px;
    height: 30px;
    z-index: 5;
    color: #ffffff;
    font-family: monospace;
    font-size: 100px;
}

.grid {
    display: flex;
    gap: 40px;
    padding: 30px;
    flex-wrap: wrap;
    margin-top: -100px; /* umístění kruhů */
}

/*NA ZALOMENÍ KRUHŮ*/

.break-column {
  flex-basis: 100%;
  width: 0;
  padding: 50px; 
}

.item {
    text-align: center;
    position: relative;
}

/* kruh */

.circle-overlay {
    background-color: #ffffff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #F6F4F7;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    filter: grayscale(100%);
    transition: 0.3s;
}

.circle:hover {
    filter: grayscale(0%);
}

.circle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 171, 112, 0.295);
    backdrop-filter: blur(2px);
    transition: 0.3s;
}

/* hover efekt */
.circle:hover::after {
  content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
}

/* štítek */
.label {
    background-color: #252525;
    color: #ffffff;
    padding: 8px;
    font-size: 8px;
    letter-spacing: 3px;
    font-family: 'daydream';
    border-radius: 5px;
    width: 150px;
    filter: drop-shadow(0px 2px 2px #b1b1b1);
}

.label a {
      text-decoration: none;
      transition: 0.5;

}

.label:hover {
  letter-spacing: 5px;
}

.collapsible {
    cursor: url('pointerwheart.cur'), pointer;
    border: none;
    outline: none;
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    width: 150px;
    margin-top: 5px;
    box-sizing: border-box;
    position: absolute;
    background-color: #cac9ca;
    color: #000;
    font-size: 11px;
    text-align: left;
    border-radius: 5px;
    z-index: 100;

}

.content p {
    padding: 8px;
    margin: 0;
    font-size: 11px;
    text-align: left;
}

.navbar {
  overflow: hidden;
 background-color:#000000;
}

.navbar a {
  float: left;
  font-size: 15px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.subnav {
  float: left;
  overflow: hidden;
  border-left: 1px dotted white;
}

.subnav .subnavbtn {
  font-size: 13px;  
  border: none;
  outline: none;
  color: white;
  padding: 10px 15px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .subnav:hover .subnavbtn {
  background-color:#5e5d5d;
}

.subnav-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: #5e5d5d;
  width: 100%;
  z-index: 1;
}

.subnav-content a {
  float: left;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
}

.subnav-content a:hover {
  background-color: #eee;
  color: black;
}

.subnav:hover .subnav-content {
  display: block;
}

.tooltip {
    position: absolute;
    display: inline-block;
    right: 50px;
    bottom: 10px;
    width: 15px;
} 

.tooltip a {
color: #ffffff;
}

.tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: rgb(43, 43, 43);
  color: #fff;
  text-align: left;
  font-size: 11px;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 2s;
  overflow-wrap: break-word;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  cursor: url('pointerwheart.cur'), pointer;
}

.information {
  max-width: 500px;
  font-family:'monospace';
  letter-spacing: 1px;
  font-size: 12px;
  text-align: justify;
  top: 300px;
  right: 120px;  
  margin: auto;
  position: fixed;
  color: #e9e8e8;
  background-color: #000;
  border: 2px dotted #ffffff;
  padding: 15px;
}

.title {
  background-color: transparent;
  color: #ffffff;
  font-family: 'Ambitsek';
}

.ladies-pic {
    position: absolute;
    right: 100px;
    bottom: 5px;
    width: 200px;
}

@font-face {
font-family: 'Cherish';
src: url('Cherish.ttf');
}