.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f4bcbc;
}
.about-section {
    padding: 4rem 2rem;
    background-color: #f8f5f1;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    color: #f4bcbc;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.about-image {
    flex: 1 1 50%;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #f4bcbc;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #e49c9c;
}

.reverse .about-container {
    flex-direction: row-reverse;
}
.services {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-icon {
  font-size: 2rem;
  color: #f4bcbc;
  margin-bottom: 12px;
}
.highlight-label {
  color: #f4bcbc;
  font-weight: bold;
  font-size: 1.1em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.contact-section {
  padding: 4rem 1rem;
  background-color: #fafafa;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info, .contact-form {
  flex: 1 1 45%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info h2, .contact-form h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #333;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
.contact-bg {
  background-image: url("../images/Brown Aesthetic Moodboard Vision Board Photo Collage.jpg"); /* nahraď správnou cestou k tvé fotce */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.contact-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(255, 255, 255, 0.85); /* bílý průhledný filtr pro čitelnost */
  z-index: -1;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #f9f9f9; /* volitelně pro zvýraznění */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* volitelně pro vzhled */
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logo h1 a {
    text-decoration: none;
    font-weight: 700;
    font-size: 2rem;
    color: #f4bcbc;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #f4bcbc;
}

nav ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f4bcbc;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f5f1;
    color: #333;
}
header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
nav .logo a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    color: #f4bcbc;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
nav ul li a {
    text-decoration: none;
    color: #333;
}
section {
    padding: 3rem 2rem;
}
h1, h2, h3 {
    color: #f4bcbc;
}
form input, form textarea {
    width: 100%;
    max-width: 500px;
    margin-bottom: 1rem;
    padding: 0.5rem;
}
form button {
    background-color: #f4bcbc;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    cursor: pointer;
}
footer {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}
.obrazek {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.portfolio-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.portfolio-grid img:hover {
  transform: scale(1.03);
}
.hero {
    background-image: url('../images/Jídelna s obývacím pokojem 3.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* poloprůhledná vrstva */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #f4bcbc;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #e49c9c;

const prevBtn = document.querySelector('.carousel-btn.prev');
const nextBtn = document.querySelector('.carousel-btn.next');
const track = document.querySelector('.carousel-track');

const slideWidth = track.querySelector('img').clientWidth + 16; // 16 = gap

prevBtn.addEventListener('click', () => {
  track.scrollBy({ left: -slideWidth, behavior: 'smooth' });
});

nextBtn.addEventListener('click', () => {
  track.scrollBy({ left: slideWidth, behavior: 'smooth' });
});

}
footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 2rem;
    text-align: center;
    color: #333;
}

footer p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

.social-icons a img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.logo span {
    color: #f4bcbc;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #333;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #555;
}
.contact-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.contact-bubble {
  background-color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 300px;
  max-width: 400px;
}

.contact-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons img {
  width: 80px;
  height: 80px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.social-icons a {
  font-size: 40px;
  color: #222;
  margin: 0 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #d39e00; /* nebo jiná barva po najetí */
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}
@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;

  }

  }
.contact-bubble.contact-info p {
  display: flex;
  justify-content: flex-start;
  gap: 5px; /* mezera mezi label a odkazem */
  flex-wrap: wrap; /* aby se zalamovaly jen pokud je málo místa */
  margin: 0 0 0.5em 0;
}

.contact-bubble.contact-info strong {
  min-width: 60px; /* aby labely byly stejně široké */
}

/* ZÁKLADNÍ STAV: navigace je viditelná */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

/* MOBILNÍ ZOBRAZENÍ: navigace se skryje a ovládá pomocí hamburger menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    z-index: 1000;
  }

  .nav-links.nav-active {
    display: flex;
  }
}
/* Carousel container */
.about-carousel {
  position: relative;
  width: 100%;
  overflow: hidden; /* skryje scroll bar na desktopu */
}

/* Vnitřní track */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Obrázky v carouselu */
.carousel-track img {
  flex: 0 0 100%;
  max-width: 100%;
  height: auto;
  scroll-snap-align: start;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Tlačítka */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem 0.7rem;
  border-radius: 50%;
  z-index: 10;
  color: #444;
  transition: background-color 0.3s ease;
  user-select: none;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-btn:hover {
  background-color: #f4bcbc;
  color: white;
}

/* Mobil: skryj tlačítka, povol swipe */
@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }

  .carousel-track {
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
  }

  .carousel-track img {
    width: 90vw;
    max-width: 600px;
    flex: 0 0 auto;
    margin-right: 1rem;
  }
@media (max-width: 768px) {
  .carousel-track {
    scrollbar-width: thin;
    scrollbar-color: #f4bcbc transparent;
  }

  /* Pro WebKit (Chrome, Safari) */
  .carousel-track::-webkit-scrollbar {
    height: 6px;
  }

  .carousel-track::-webkit-scrollbar-track {
    background: transparent;
  }

  .carousel-track::-webkit-scrollbar-thumb {
    background-color: #f4bcbc;
    border-radius: 3px;
  }
@keyframes carouselNudge {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-20px); }
  40%  { transform: translateX(0); }
  60%  { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}
