/* 🌸 Alap beállítások */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #333;
  position: relative;
  min-height: 100vh;
}

/* Háttér logó */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/Logo.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100vmin;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

/* 🌸 Bal oldali menü */
header {
  width: 200px;
  background-color: #f9dbe3;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.logo h1 {
  font-size: 0.85rem;
  line-height: 1.2;
  margin: 8px 0 0;
  text-align: center;
}

/* Menü */
nav ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
nav ul li { margin: 10px 0; }

nav ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px;
  background-color: #d1d5d8; /* RAL 7000 */
  border-radius: 8px;
  margin: 0 10px;
}
nav ul li a.active,
nav ul li a:hover {
  background-color: #f4b6c2;
  color: #fff;
}

/* 🌸 Jobb oldali sáv */
aside {
  width: 220px;
  background-color: #f9dbe3;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 15px;
}

aside img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* 🌸 Tartalom */
main {
  margin-left: 220px;
  margin-right: 240px;
  padding: 60px 80px 100px;
  text-align: center;
  z-index: 1;
}

/* Főoldal középre igazítás */
#main-home { text-align: center; }
#main-home .contact-box { margin: 0 auto; }

/* 🌸 Szolgáltatás dobozok */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.service-card,
.contact-box {
  width: 260px;
  background-color: rgba(255,230,238,0.5);
  border: 2px solid #f4b6c2;
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  margin: 0 auto;
  display: block;
}

/* 🌸 Árlista – kategória cím */
.category-title {
  margin-top: 40px;
  background-color: #ffe6ee;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: bold;
}

/* Árlista táblák */
#arlista table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background-color: rgba(255,255,255,0.85);

  /* EZ A LÉNYEG: ettől nem “úszkálnak” az oszlopok */
  table-layout: fixed;
}

#arlista td {
  padding: 0.7rem;
  border-bottom: 1px solid #ccc;
}

/* Fejléc (RAL 7000) */
#arlista table th {
  background-color: #d1d5d8 !important; /* RAL 7000 */
  color: #333;
  padding: 0.8rem;
  font-weight: bold;
}

/* Fix oszlopszélességek (3 oszlopos tábláknál is szépen áll) */
#arlista table th:nth-child(1),
#arlista table td:nth-child(1) {
  width: 55%;
  text-align: left !important;
  padding-left: 20px !important;
}

#arlista table th:nth-child(2),
#arlista table td:nth-child(2) {
  width: 22.5%;
  text-align: right !important;
  padding-right: 20px !important;
  white-space: nowrap;
}

#arlista table th:nth-child(3),
#arlista table td:nth-child(3) {
  width: 22.5%;
  text-align: right !important;
  padding-right: 20px !important;
  white-space: nowrap;
}

/* Régi osztályok (ha a HTML-ben használod) */
#arlista td.service-name {
  text-align: left;
  padding-left: 20px;
}
#arlista td.price {
  text-align: right;
  padding-right: 20px;
  white-space: nowrap;
  font-weight: bold;
}

/* 🌸 Galéria */
.gallery-menu {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.gallery-menu button {
  padding: 10px 20px;
  background-color: #d1d5d8;
  border: none;
  border-radius: 8px;
  font-weight: bold;
}

.gallery-menu button.active,
.gallery-menu button:hover {
  background-color: #f4b6c2;
  color: #fff;
}

.gallery {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}
.gallery.active { display: grid; }

.gallery img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 20;
}
.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}
.close, .next, .prev {
  position: absolute;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
.close { top: 20px; right: 40px; }
.next { right: 10%; }
.prev { left: 10%; }

/* 🌸 Kapcsolat */
.contact-details p { font-size: 1.1rem; }

/* 🌸 Lábléc */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: #f9dbe3;
  padding: 4px 0;
  font-size: 0.85rem;
  z-index: 10;
}

/* Mobil */
@media (max-width: 900px) {
  header, aside { display: none; }
  main {
    margin: 0;
    padding: 20px 15px 80px;
  }
}




