/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    color: #000000;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    background-color: #4a2c12;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    
}

.logo {
    height: 40px;
    margin-right: auto;
    margin-bottom: auto;
}

/* Navigation Styles - Black Text Links */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li {
    margin-left: 0;
}

nav ul li a {
    font-weight: 600;
    color: #000;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

nav ul li a:hover {
    color: #000;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: #000;
}

nav ul li a.active::after {
    width: 100%;
}

/* Main Content Styles */
main {
    flex: 1;
    padding-top: 100px;
    padding-bottom: 20px;
}

/* Center Alignment Styles */
.about-page{
    background: url('../background.jpg') no-repeat center center/cover;
}
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    
}
.content-frame {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Optional subtle border */
    
}
.text-center {
    text-align: center;
}

.content-frame {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px auto;
    max-width: 800px;
}

/* Welcome Page */
.welcome-page {
    background: url('../background.jpg') no-repeat center center/cover;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.welcome-overlay {
    background-color: rgba(74, 44, 18, 0.7);
    padding: 2rem 4rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-page h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

/* Menu Page */
.content-frame {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Optional subtle border */
}
.menu-page {
    background: url('../background.jpg') no-repeat center center/cover;
}
.menu-section {
    margin-bottom: 2rem;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ddd;
}

.menu-item h4 {
    display: inline-block;
    margin-right: 1rem;
}



/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.content-frame {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Optional subtle border */
}
.gallery-page{
    background: url('../background.jpg') no-repeat center center/cover;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    
}

.gallery-item img:hover {
    transform: scale(1.03);
}
/*about us page*/

/* Contacts Page */
.map-container {
    margin: 2rem auto;
    max-width: 600px;
}
.content-frame {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Optional subtle border */
}
.contacts-page{
    background: url('../background.jpg') no-repeat center center/cover;
}
.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

button[type="submit"] {
    background-color: #4a2c12;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #8b5a2b;
}

/* Footer Styles */
footer {
    background-color: #4a2c12;
    color: white;
    text-align: center;
    padding: 1.5rem;
    width: 100%;
    margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
        height: auto;
        min-height: 80px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 1rem;
    }

    nav ul li a {
        font-size: 1rem;
    }

    main {
        padding-top: 140px;
    }

    .welcome-page {
        margin-top: -140px;
        padding-top: 140px;
    }

    .welcome-overlay {
        padding: 1.5rem;
    }

    .welcome-page h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .welcome-page h2 {
        font-size: 1.5rem;
    }

    .content-frame {
        padding: 1.5rem;
    }

    .page-container {
        padding: 0 10px;
    }
}

/* === NAVBAR & BURGER === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #4a2c12;
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
}

/* === Logo === */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo img {
  height: 60px;
  max-height: 60px;
  display: block;
}



.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger ikona */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: white;
  display: block;
}

/* === RESPONSIVE BURGER MENU === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #4a2c12;
    width: 200px;
    padding: 1rem;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  

  .nav-links li {
    padding: 0.5rem 0;
  }
}
/* === Nové stylování navigace pro burger menu === */
.nav-links {
  list-style: none;
  flex-direction: column;
  gap: 1.5rem;
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background-color: #4a2c12;
  padding: 2rem 1rem;
  transition: right 0.3s ease-in-out;
  z-index: 999;
}

.nav-links.active {
  right: 0;
}

.nav-links li {
  margin: 1rem 0;
}



/* === Hamburger === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1000;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: rgb(0, 0, 0);
  display: block;
}

/* === Media Queries === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}
/* === PC zobrazení (větší než 768px) === */
@media (min-width: 769px) {
  .nav-links {
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    background-color: transparent;
    padding: 0;
    display: flex;
    gap: 1.5rem;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    color: black; /* nebo jiná barva pro desktop */
  }

  .hamburger {
    display: none;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px; /* nebo větší podle potřeby */
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: rgb(0, 0, 0); /* nebo černá podle pozadí */
}

/* Desktop verze odkazy */
@media (min-width: 769px) {
  .nav-links a {
    color: #000000; /* světlá barva na tmavém pozadí */
    position: relative;
    padding-bottom: 4px;
    font-weight: bold;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #f9f9f9;
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
}
.nav-links a {
  position: relative;
  color: black; /* barva textu */
  text-decoration: none;
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: black; /* barva podtržení */
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}


.contact-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-info {
  flex: 1 1 300px;
}

.qr-code {
  text-align: center;
  flex: 0 0 auto;
}

.qr-code img {
  width: 130px;
  height: auto;
  border-radius: 8px;
}

/* === Partneri Page === */
.partneri-section {
  background: url('../background.jpg') no-repeat center center/cover;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

.partneri-section .content-frame {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  max-width: 1000px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partneri-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4a2c12;
}

.partneri-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.partneri-logos img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.partneri-logos img:hover {
  transform: scale(1.05);
}

.partneri-section .content-frame {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qr-code {
  text-align: center;
  margin-top: 2rem;
}

.qr-code img {
  max-width: 200px; /* nebo kolik chceš, např. 150px */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


.partneri-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.partneri-logos img {
  max-width: 90%;
  height: auto;
  margin-bottom: 1rem;
}

.partneri-logos p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

