* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::selection {
    background-color: #d97900;
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(171, 100, 67, 0.7);
    border-radius: 10px;     
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1; 
    border-radius: 10px; 
}

@media(max-width:880px){
    .movement{
        display: none;
    }
}

body {
    font-family: Arial, sans-serif;
}

.no-scroll{
    overflow: hidden;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.navbar{
    position: fixed;
    width: 100%;
    background-color: rgb(255, 255, 255);
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1; 
    box-shadow: 0 0 10px 5px #a8a8a881;
}

.text{
    margin-left: 28px;
    gap: 50px;
}

.text .header-name {
    font-family: "Passions Conflict", cursive;
    font-size: 50px;
    color: black;
}

.text a{
    text-decoration: none;
}

.side-line{
  position: relative;
  bottom: 3px;
  padding-left: 20px;
  margin-left: 25px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.side-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50px;
  background-color: #ff9900;
}

.menu{
  z-index: 1;
}
.menu-container {
    flex-direction: column;
}
.menu-wrap .toggler{
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 5;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}
.menu-wrap .hamburger{
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 2;
    width: 60px;
    height: 60px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger line */
.menu-wrap .hamburger >div {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
/* Top and bottom lines */
.menu-wrap .hamburger > div:before,
.menu-wrap .hamburger > div:after{
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background-color: #000000;
}
/* Moves line down */
.menu-wrap .hamburger > div:after{
    top: 10px;
}
/* Toggler animate */
.menu-wrap .toggler:checked + .hamburger > div{
    transform: rotate(135deg);
}
/* Turn Lines into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after{
    top: 0;
    transform: rotate(90deg);
    background-color: white;
    font-weight: 800;
    transition-delay: 0.3s;
    transition: 0.2s;
}
/* Rotate on hover when checked */
.menu-wrap .toggler:checked:hover + .hamburger > div{
    transform: rotate(225deg);
}
/* Show menu */
.menu-wrap .toggler:checked ~ .menu{
    visibility: visible;
}
.menu-wrap .toggler:checked ~ .menu > div{
    transform: scale(1);
    transition-duration: 0.75s;
}
.menu-wrap .toggler:checked ~ .menu > div > div{
    opacity: 1;
    transition: opacity 0.4s ease;
}
.menu-wrap .menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-wrap .menu > div{
    /* background-color: rgba(133, 77, 51, 0.85); */
    background-color: rgb(115 59 33 / 86%);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0); 
    transition: all 0.4s ease;
}
.menu-wrap .menu > div >div{
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0; 
    transition: opacity 0.4s ease;

    display: flex;
    align-items: center;
    height: 85vh;
}
.menu-wrap .menu > div > div > ul > li {
    list-style: none;
    color: #fff;
    padding: 1rem;
    font-weight: 500;
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
}

.menu-wrap .menu >div > div > ul > li > a{
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
}

.menu-ul {
    display: flex;
    position: relative;
    top: 50%;
}

.nav-content {
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.nav-content a {
    text-decoration: none;
    color: white;
}

.nav-content a i {
    padding-right: 10px;
}


/* Header - responzivni design */
@media (max-width: 820px) {
    .menu-ul {
        flex-direction: column;
        margin-top: 0px;
    }
    .menu-wrap .menu > div >div {
        display: flex;
        justify-content: center;
        height: 55vh;
    }
}
@media (max-width: 600px) {
    .text {
        margin-left: 15px;
    }
    .text .header-name {
        font-size: 40px;
    }
    .side-line {
        margin-left: 10px;
        padding-left: 10px;
    }
    .menu-wrap .menu > div {
        border-radius: 0;
        height: 100%;
    }
    .menu-wrap .toggler:checked + .hamburger > div:before,
    .menu-wrap .toggler:checked + .hamburger > div:after{
    transition-delay: 0.5s;
    transition: 0.4s;
    }
    .nav-content {
        flex-direction: column;
        margin-top: 180px;
    }
    .menu-wrap .menu > div >div {
        align-items: flex-start;
    }
}
 

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
.title-section{
    /* background: linear-gradient(rgba(171, 100, 67, 0.7), rgba(76, 43, 27, 0.7)), 
            url(https://images.unsplash.com/photo-1559925393-8be0ec4767c8?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8Y2FmZSUyMHdhbGxwYXBlcnxlbnwwfHwwfHx8MA%3D%3D); */
    background: linear-gradient(rgba(171, 100, 67, 0.7), rgba(76, 43, 27, 0.7)), 
    url("../img/introduction/introduction.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 75vh;
}

.title-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    height: 100%;
    text-align: center;
}

.title-container .header p{
    font-size: 30px;
    font-family: "Poppins", sans-serif;
}

.menu-section{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 550px;
}

.introduction-name {
    font-family: "Passions Conflict", cursive; 
    font-weight: 500;
    font-size: 9rem;
}

/* Introduction - responzivni design */

@media(max-width: 800px) {

    .title-section{
        background-attachment: unset;
    }

}

@media(max-width: 600px) {
    .introduction-name {
        font-size: 5rem;
    }
    .title-container .header p{
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Offer section
--------------------------------------------------------------*/

.offer-section {
  padding-top: 15px;
  margin-top: 55px;
  margin-bottom: 55px;
}

.offer {
    display: flex;
    flex-direction: column;
}

.offer-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;

}

.menu-item {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
  padding-bottom: 10px;
  padding: 8px 15px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
}

.menu-item a {
    text-decoration: none;
    color: black;
}

.menu-item:hover {
  color: #d97900;
  transform: scale(1.1);
}

.menu-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9900, #ffcc66);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
  opacity: 0;
}
.menu-item.active::after {
  width: 75%;
  border-radius: 15px;
  opacity: 1;
}
.menu-item.active {
  color: #d97900;
  box-shadow: 0px 4px 10px rgba(255, 153, 0, 0.3);
  background: rgba(255, 153, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

/* Offer section - responzivní design */
@media (max-width: 400px) {
    .menu-item {
        font-size: 20px;
    }
}


/*--------------------------------------------------------------
# Offer section - Content
--------------------------------------------------------------*/

.offer-content {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(1px);
    transition: 0.5s;
}

.offer-container:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.offer-container img {
    height: 400px;
    border-radius: 8px;
    opacity: 1;
    transform: translateX(-10%) scale(0.95);
    animation: slideInFromLeft 0.5s ease-out forwards;
}

.offer-content button{
    position: relative;
    padding: 18px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #d98114;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid #d98114;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 #d98114;
    max-width: 200px;
    width: auto;
  }
  
.offer-btn:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 #d98114;
}
  
.offer-btn:active {
    transform: scale(0.9);
}

.offer-text {
    display: flex;
    flex-direction: column;
    width: 500px;
    gap: 15px;
}

.offer-title {
    font-weight: bold;
    font-size: 28px;
    color: #333;
    font-family: "Poppins", sans-serif;
}

.offer-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    font-family: "Geist", sans-serif; 
}

.tabcontent {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

/* Animace - Offer */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInFromLeft {
    0% {
        opacity: 1;
        transform: translateX(-10%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 900px) {
    .offer-container {
        flex-direction: column;
        text-align: center;
    }
    .offer-text {
        width: 100%;
    }
    .offer-container img {
        width: 80%;
        height: auto;
    }
}

/* Responzivni design - Offer */
@media (max-width: 1200px) {
    .offer-container img {
        height: 250px;
    }
}
@media (max-width: 1120px) {
    .offer-container img {
        height: 200px;
    }
}

@media (max-width: 1000px) {
    .offer-container {
        flex-direction: column;
        text-align: center;
        margin: 30px;
    }
    .offer-text {
        width: 90%;
        align-items: center;
    }
    .offer-container img {
        width: 80%;
        height: auto;
    }
    .offer {
        flex-direction: column-reverse;
    }
    .offer-menu {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .offer-section {
        margin-bottom: 145px;
    }
}
@media (max-width: 700px) {
    .offer-section {
        margin-top: 0;
    }
    .offer-content {
        margin-top: 30px;
    }
    .menu-item {
        width: 50%;
        transform: translateY(5px);
        transition: 0.5s;
    }
    .menu-item:hover {
        transform: translateY(1px);
    }
    .offer-desc {
        padding: 5px;
    }
}
@media (max-width: 500px) {
    .offer-container img {
        width: 100%;
    }
}
/*--------------------------------------------------------------
# About us - section
--------------------------------------------------------------*/

.about-section {
    height: 550px;
    background-color: #f8f8f8;
    margin-bottom: 220px;
}


.divider {
    background: #f8f8f8;
    height: 200px;
    width: 100%;
    position: relative;
    z-index: -5;
}


.starting {
    clip-path: polygon(-30% 100%, 100% 0%, 100% 100%, 0% 100%);
    /* clip-path: polygon(0% 100%, 86% 0%, 100% 100%, 0% 100%); */
    bottom: 195px;
}

.ending {
    clip-path: polygon(-600% 7%, 115% 0%, 0% 100%, 0% 100%);
    top: 35px;
}

.about-images {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 250px;
    z-index: 0;
    margin-right: 25px;
}
.about-images img {
    width: 100%;
    position: absolute;
    border-radius: 20px;
}
.about-images img:nth-child(1) {
    width: 100%;
    height: auto;
    z-index: 1;
    border-radius: 20px;
}
.about-images img:nth-child(2) {
    width: 60%;
    height: auto;
    bottom: -20px;
    right: -20px;
    z-index: 2;
    border-left: 5px solid white;
    border-top: 5px solid white;
}

.about{
    padding-left: 55px;
    padding-right: 55px;
    background-color: #fdfdfd;
    padding: 25px;
}

.about-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    bottom: 75px;
}

.about-text{
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    width: auto;
    margin-left: 25px;
}


.about-title{
    font-weight: bold;
    font-size: 50px;
    font-family: "Poppins", sans-serif; 
}

.about-desc{
    width: 80%;
    font-family: "Poppins", sans-serif; 
}

.about-name {
    font-weight: 500;
}

/* Responzivni design - About us */

@media (max-width: 1160px){
    .about-images img:nth-child(2) {
        bottom: 190px;
        border-left: 5px solid white;
        border-bottom: 5px solid white;
    }
    .about-text {
        gap: 10px;
        max-width: 700px;
    }
}

@media (max-width: 1000px){
    .about-text {
        gap: 10px;
        max-width: 600px;
    }
    .about-title{
        font-size: 40px;
    }
}

@media (max-width: 900px){
    .about-section  {
        height: 640px;
    }
    .about-container{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .about-images img:nth-child(2) {
        display: none;
    }
    .about-images img {
      
        position: inherit;  
    }
    .about-desc {
        width: 100%;
    }
    .ending {
        top: -100px;
    }
    .about-images {
        margin-right: 0px;
    }
    .about-text {
        margin-left: 0px;
    }
}
@media (max-width: 700px) {
    .about-section {
        margin-top: 155px;
    } 
    .starting {
        bottom: 180px;
    }
}

@media (max-width: 550px) {
    .about-container {
        height: 200px;
        bottom: 0;
    }
    .about-title {
        font-size: 28px;
    }
    .about-desc {
        padding: 15px;
    }
    .starting {
        clip-path: polygon(-56% 100%, 131% 0%, 100% 100%, 0% 100%);
    }
    .about-section {
        margin-bottom: 50px;
    } 
}


/*--------------------------------------------------------------
# Reviews - Section
--------------------------------------------------------------*/
 
.reviews {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    font-family: "Poppins", sans-serif;
}
.reviews .wrapper {
    width: 100%;
    padding: 0 15px;
}

.wrapper .review-header {
    text-align: center;
    margin-bottom: 50px;
}

.wrapper .review-header .review-title {
    font-size: 50px;
    color: black;
    line-height: 1.2;
}

.review-subtitle {
    color: rgb(160, 160, 160);
}

.review-subtitle a {
    text-decoration: none;
    color: gray;
    cursor: pointer;
}

.reviews .swiper {
    padding: 25px;
    z-index: 0;
}

.wrapper .review-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1; 
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 0;
}

.wrapper .review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
    0 4px 4px rgba(0, 0, 0, 0.1);
}

.review-item .review-info {
    display: flex;
    align-items: center;
}

.review-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.review-info .review-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

.review-info .review-job {
    text-transform: capitalize;
}

.review-item p {
    margin-top: 15px;
    font-size: 15px;
}

/* Hodnocení */

.review-item .rating {
    margin-top: 15px;
    font-size: 15px;
    color: rgb(238, 179, 30);
    display: flex;
    justify-content: flex-end;
}

.star-gray {
    color: gray;
}

.reviews .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: auto;
}

.reviews .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background: #d98114;
}

/* Responzivni design - Reviews */

@media (max-width: 500px) {
    .wrapper .review-header .review-title {
        font-size: 40px;
        margin-top: 150px;
    }
}

@media (max-width: 450px) {
    .wrapper .review-header .review-title {
        font-size: 35px;
    }

    .wrapper .review-item {
        height: 359px;
    }
    .review-info img  {
        width: 60px;
        height: 60px;
    }
    .review-info .review-name {
        font-size: 21px;
    }
    .swiper-slide:nth-of-type(4) .review-name {
        font-size: 20px;
    }
    .review-item p {
        text-align: center;
        margin-top: 28px;
    }
    .review-item .rating {
        text-align: center;
    }
    .wrapper .review-item {
        height: 480px;
    }
}


/*--------------------------------------------------------------
# Gallery - Section
--------------------------------------------------------------*/
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-header {
    font-family: "Poppins", sans-serif; 
    font-size: 50px;
}

.gallery .images {
    gap: 25px;
    max-width: 60%;
    margin: 40px 0;
    columns: 3 310px;
    list-style: none;
}
.gallery .images .img {
    display: flex;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    margin-bottom: 14px;
    border-radius: 20px;
}
.gallery .images img {
    width: 100%;
    transition: transform 0.2s ease;
}
.gallery .images .img:hover img {
    transform: scale(1.1);
}

.lightbox {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    position: fixed;
    visibility: hidden;
    background: rgba(0,0,0,0.65);
}
.lightbox.show {
    visibility: visible;
}
.lightbox .wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 100%;
    padding: 15px;
    max-width: 850px;
    background: #fff;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.9);
    transition: transform 0.1s ease;
}
.lightbox.show .wrapper {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
.wrapper :where(header, .details) {
    display: flex;
    align-items: center;
    color: #d98114;
}
.wrapper header {
    justify-content: space-between;
    margin-bottom: -15px;
}
header .details i {
    font-size: 1.7rem;
}
header .details span {
    font-size: 1.2rem;
    margin-left: 10px;
    font-weight: 600;
}
header .gallery-buttons i {
    cursor: pointer;
    display: inline-block;
    margin-left: 10px;
    font-size: 2.8rem;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    transition: 0.2s ease;
    color: #5f666d;
}

.wrapper .preview-img {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.preview-img .img {
    max-height: 65vh;
}
.preview-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-preview-btn {
    position: relative;
    padding: 18px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #d98114;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid #d98114;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 #d98114;
    max-width: 300px;
    width: auto;
}
      
.gallery-preview-btn:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 #d98114;
}
    
.gallery-preview-btn:active {
    transform: scale(0.9);
}

/*--------------------------------------------------------------
# Gallery - Page
--------------------------------------------------------------*/

hr{
    width: 300px;
    color: #d98114;
    border: 2px solid #d98114;
    margin: 15px auto;
}


.main-gallery-container {
    max-width: 1500px;
    margin: 100px auto 200px auto;
    padding: 20px;
}

.main-gallery-title {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 50px;
}

.main-gallery-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.main-gallery-images img {
    width: auto;
    height: 230px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.main-gallery-images img:hover {
    transform: scale(1.02);
}

/* Responzivní úpravy */
@media (max-width: 768px) {
    .main-gallery-title {
        font-size: 20px;
    }
    .main-gallery-images img {
        width: 100%;
    }
}
/* Responzivni design - Gallery */

@media screen and (max-width: 688px) {
.lightbox .wrapper {
    padding: 12px;
    max-width: calc(100% - 26px);
}
.wrapper .preview-img {
    margin-top: 15px;
}
.gallery .images {
    max-width: 100%;
    padding: 0 13px;
    margin-top: 20px;
}
}

/*--------------------------------------------------------------
# Contact - Section
--------------------------------------------------------------*/
.findus {
    font-family: "Poppins", sans-serif; 
}
.findus .findus-header {
    margin-top: 100px;
    text-align: center;
    font-size: 50px;
    margin-bottom: 100px;
}
.findus-info {
    text-align: center;
    margin: 0 0 100px 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.findus-info hr {
    width:  200px;
}
.left-side h2 {
    font-size: 35px;
}

.left-side-content  {
    margin-top: 30px;
    text-align: justify;
    display: flex;
    justify-content: center;
}

.left-side-content span {
    font-weight: bolder;
    margin-right: 15px;
}

.currentday{
    color: #d98114;
}

.left-side-content table {
    margin-bottom: 15px;
}

.left-side-content table td {
    padding: 0 0 20px 0;
}
.right-side h2 {
    font-size: 35px;
}

.right-side-content {
    margin-top: 30px;
    text-align: justify;
    display: flex;
    justify-content: center;
}

.right-side-content i {
    padding-right: 25px;
}

.right-side-content table td {
    padding: 0 0 50px 0;
}

.right-side-content a {
    text-decoration: none;
    color: black;
}

.findus .findus-content .map {
    display: flex;
    justify-content: center;
    margin-bottom: 120px;
}
.findus .findus-content iframe {
    box-shadow: 0 0 10px 5px #a8a8a881;
}

/* Responzivní design - Find us */

@media (max-width: 1100px){
.findus .findus-content iframe {
    width: 500px;
    height: 300px;
}
}

@media (max-width: 500px){
.findus .findus-content iframe {
    width: 350px;
    height: 250px;
    padding: 0px 5px 0 5px;
}
.right-side-content {
    font-size: 15px;
}
.findus .findus-header {
    margin-bottom: 50px;
    font-size: 40px;
}
.findus-info hr {
    width:  100px;
}
}

@media (max-width: 400px){
.right-side-content i {
    padding-right: 15px;
}
.findus .findus-header {
    font-size: 35px;
}
.left-side h2 {
    font-size: 27px;
}
.right-side h2 {
    font-size: 27px;
}
}

/*--------------------------------------------------------------
# Main Menu - Page
--------------------------------------------------------------*/

#menu-list{
    background-image: url(https://images.unsplash.com/photo-1615800098779-1be32e60cca3?q=80&w=2020&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px;
}

.menu-header {
    margin-top: 170px;
    text-align: center;
    margin-bottom: 120px;
}
.menu-header .menuh1 {
    font-size: 35px;
    font-family: Montserrat;
}
  
.list-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.menu-title span{
    font-family: "Passions Conflict", cursive;
    font-size: 80px;
    margin-top: 15px ;
    margin-bottom: 15px;
}
  
.list-menu-li {
    width: 100%;
}
  
.list-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    flex-grow: 1;
    margin-top: 10px;
    font-size: 20px;
    color: #7f6546;
}
  
.list-menu-content .price{
    font-size: 25px;
    font-weight: bold;
}
  
.list-menu-header {
    display: flex;
    align-items: center;
    width: 60%;
    margin: 20px;
}
.list-menu-dotted {
    flex-grow: 1;
}
.list-menu-description  {
    position: absolute;
    margin-top: 5px;
    font-size: 17px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer{
    background-color: #f5f5f5;
    width: 100%;
    font-family: "Poppins", sans-serif; 
}

.footer-container{
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    padding: 100px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 50px;
    width: 100%;
}

.footer-first, .footer-second, .footer-third{
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 18px;
}

.footer-title{
    text-transform: uppercase;
    font-size: 18px;
    color: #d98114;
}

.footer-container a{
    text-decoration: none;
    color: #000000;
}

.footer-socials{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.footer-socials i{
    background-color: #d98114;
    border-radius: 100%;
    padding: 10px;
    color: rgb(255, 255, 255);
    font-size: 2rem;
    transform: translateY(5px);
    transition: 0.4s;
}
.footer-socials i:hover{
    transform: translateY(0);
    background-color: #b66a0d;

}

.authorized{
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
    padding-bottom: 50px;
    margin-left: 15px;
    margin-right: 15px;
}

.footer-contact a  {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

/* Responzivni design - Footer */
@media (max-width: 910px){
    .footer-container{
        flex-direction: column;
        align-items: start;
        gap: 50px;
        padding: 40px;
    }

    .footer-socials{
        justify-content: start;
    }
}
@media (max-width: 700px) {
    .authorized {
        text-align: center;
    }
}