@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');



html{
    scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-family: 'Montserrat', sans-serif;
}

header{
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    padding: 20px;
}

.menu ul{
    list-style: none;
}

.menu ul li{
    display: inline;
}

.menu ul li a{
    text-decoration: none;
    color: #f5f5f5;
    font-size: 25px;
    padding-right: 80px;
}

.menu ul li a:hover{
    color: #d4af37;
}

.main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size:30px;
}

.nadpis1{
    margin-left: 150px;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInDown 1.5s ease-out forwards;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

hr{
    border: none;
    height: 3px;
    background-color:#d4af37;
    margin-top: -1px;
}

.uvod{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.uvod img{
    margin-left: 100px;
}

.popis {
    text-align: center;
    margin-right: 100px;
    margin-left: 150px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.popis.visible {
    opacity: 1;
    transform: translateX(0);
}


.nadpisU{
    font-size: 32px;
    text-align: center;
}

.textU{
    font-size: 22px;
}

.design{
    width: 900px;
    border: none;
    height: 3px;
    background-color:#d4af37;
    margin-top: -1px;
}

.kurzy h1{
    font-size: 45px;
    margin-top: 80px;
    text-align: center;
}

.seznam ul {
    margin-top: 60px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    list-style: none;
}

.seznam ul li {
    position: relative;
    width: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.seznam ul li img {    filter: brightness(60%);
    transition: filter 0.3s ease;
    border-radius: 12px;
}

.seznam ul li a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    width: 90%;
    text-shadow: 0 0 6px rgba(0,0,0,0.85);
    text-decoration: none;
    user-select: none;
    cursor: pointer;
}

.seznam ul li a:hover {
    text-decoration: underline;
}

.seznam ul li:hover img {
    filter: brightness(80%);
}

.kurzy {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out;
}

.kurzy.visible {
    opacity: 1;
    transform: translateY(0);
}

.recenze{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recenze h1{
    font-size: 45px;
    margin-top: 80px;
    text-align: center;
}

.recenze1 {
    margin-top: 20px;
    width: 50%;
    display: flex;
    gap: 20px;
    background: #111111;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
    margin-bottom: 30px;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.recenze1:hover {
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.12);
}

.pfp {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.obsahR {
    flex: 1;
}

.textR {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.uzivatelR {
    font-weight: 600;
    font-size: 30px;
    color: #d4af37;
}

.recenze1 {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out;
}

.recenze1.visible {
    opacity: 1;
    transform: translateY(0);
}

.design1{
    width: 900px;
    border: none;
    height: 3px;
    background-color:#d4af37;
    margin-top: 60px;
    margin-bottom: 60px;
}

.kontakty{
    display: flex;
    justify-content: space-evenly;
}

.kontakty1{
    margin-top:70px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.kontakty1 h2{
    font-size: 40px;
}

.kontakty1 p{
    font-size: 25px;
}

.kontakty iframe{
    margin-bottom: 60px;
}

.kontakty1.visible {
    opacity: 1;
    transform: translateX(0);
}


footer{
    background-color: #111111;
    font-size: 15px;
    border-top: 2px solid #d4af37;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}