/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #ddd;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

a {
  color: #f39c12; /* narancssárga link */
  text-decoration: none;
}

a:hover {
  color: #e67e22;
  text-decoration: underline;
}

/* Fejléc és menü */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #222; /* sötét menüsáv */
  color: #fff;
  z-index: 10000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.navbar {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center; /* Középre rendezés */
  align-items: center;
  height: 60px;
  gap: 3rem; /* Menüpontok közötti távolság */
}

.logo {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-links li a {
  color: #ddd;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 1.2rem 0;
  transition: border-bottom 0.3s ease, color 0.3s ease;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

.nav-links li a:hover,
.nav-links li a:focus,
.nav-links li a.active {
  border-bottom: 3px solid #f39c12; /* narancssárga aláhúzás */
  color: #fff;
}

.menu-toggle {
  display: none;
}

/* Hero szekció */
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ddd;
  padding: 0 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn-group .btn {
  background-color: #f39c12;
  color: #121212;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  margin: 0 0.3rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-group .btn:hover {
  background-color: #e67e22;
  color: #fff;
}

/* Section alapok */
.section {
  max-width: 1100px;
  margin: 5rem auto 4rem auto;
  padding: 2rem 1rem;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(243, 156, 18, 0.2);
}

h2 {
  color: #f39c12;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Rólam szekció */
.about-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-img {
  width: 300px;
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(20%);
  box-shadow: 0 0 10px rgba(243,156,18,0.7);
}

.about-text {
  flex: 1;
  font-size: 1.1rem;
  color: #ccc;
}

/* Portfólió */
.filter-buttons {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-btn {
  background: none;
  border: 2px solid #666;
  color: #ccc;
  padding: 0.5rem 1rem;
  margin: 0 0.3rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #f39c12;
  color: #121212;
  border-color: #f39c12;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.portfolio-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(243,156,18,0.2);
  transition: transform 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
  border-radius: 12px;
}

.portfolio-item:hover img {
  filter: brightness(1);
}

.portfolio-item:hover {
  transform: scale(1.03);
}

/* Szolgáltatások */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}

.service-card {
  background: #222;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(243,156,18,0.3);
  transition: box-shadow 0.3s ease;
  color: #ddd;
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(230,126,34,0.5);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #f39c12;
}

/* Árlista */
.pricing table {
  width: 100%;
  border-collapse: collapse;
  color: #ccc;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
}

.pricing th, .pricing td {
  text-align: left;
  padding: 12px 15px;
  border-bottom: 1px solid #444;
}

.pricing th {
  background-color: #f39c12;
  color: #121212;
  font-weight: 700;
}

/* Kapcsolat */
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact label {
  font-weight: 600;
  color: #ccc;
}

.contact input, 
.contact textarea {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #444;
  font-size: 1rem;
  resize: vertical;
  background-color: #1e1e1e;
  color: #ddd;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #888;
}

.contact button {
  background-color: #f39c12;
  color: #121212;
  border-radius: 25px;
  padding: 0.9rem;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #e67e22;
  color: #fff;
}

.contact-info {
  max-width: 600px;
  margin: 2rem auto 0 auto;
  text-align: center;
  color: #ccc;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Blog */
.blog-post {
  background-color: #222;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 10px rgba(230,126,34,0.3);
  color: #ddd;
}

.blog-post h3 {
  color: #f39c12;
  margin-bottom: 0.8rem;
}

.blog-post p {
  color: #ccc;
  margin-bottom: 1rem;
}

.blog-post a {
  font-weight: 600;
  color: #f39c12;
}

/* Footer */
footer {
  background-color: #222;
  color: #ddd;
  text-align: center;
  padding: 2rem 1rem;
  font-weight: 600;
  margin-top: 4rem;
}

/* Mobil menü */
@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
    padding: 0 1rem;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    background-color: #222;
    height: calc(100% - 60px);
    width: 200px;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
    transition: right 0.3s ease;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li a {
    font-size: 1.2rem;
    border-bottom: none;
  }
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
  }
}
/* Foglalási űrlap speciális stílus */
.booking {
  max-width: 500px;
  margin: 6rem auto 4rem auto;
  background-color: #333;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(243,156,18,0.7);
  color: #f0f0f0;
}

.booking h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #f39c12;
}

.booking form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.booking form input,
.booking form select,
.booking form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #555;
  color: #f0f0f0;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
  transition: background-color 0.3s ease;
}

.booking form input::placeholder,
.booking form textarea::placeholder {
  color: #bbb;
}

.booking form input:focus,
.booking form select:focus,
.booking form textarea:focus {
  background-color: #666;
  outline: none;
}

.booking form button {
  width: 100%;
  padding: 1rem;
  background-color: #f39c12;
  color: #121212;
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking form button:hover {
  background-color: #e67e22;
  color: #fff;
}
.slider-section {
  max-width: 1100px;
  margin: 6rem auto 4rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.slider {
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
  object-fit: cover;
  border-radius: 15px;
}

.slide.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(51, 51, 51, 0.6);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  user-select: none;
}

.prev:hover, .next:hover {
  background-color: rgba(243, 156, 18, 0.8);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f39c12;
  text-align: center;
  z-index: 10;
  padding: 0 1rem;
  max-width: 900px;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-overlay p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #f7c36d;
}

.hero-buttons .btn {
  background-color: #f39c12;
  color: #121212;
  padding: 1rem 2rem;
  margin: 0 0.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero-buttons .btn:hover {
  background-color: #e67e22;
  color: #fff;
}

/* Slider stílus (ugyanaz, mint korábban) */

.slider {
  position: relative;
  height: 100%;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
  object-fit: cover;
  border-radius: 0;
  height: 90vh;
}

.slide.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(51, 51, 51, 0.6);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  user-select: none;
  z-index: 15;
}

.prev:hover, .next:hover {
  background-color: rgba(243, 156, 18, 0.8);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}.slide {
  min-width: 100%;
  display: none;
  height: 90vh;
  border-radius: 0;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* arc a felső részén látszik */
  display: block;
}
.werk-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 2rem;
}

.werk-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  object-fit: cover;
  height: 100px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.werk-gallery img:hover {
  transform: scale(1.05);
}
.service-card {
  background: #222;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(243,156,18,0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  color: #ddd;
  cursor: pointer;
  /* Belépő animáció */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.3s;
}
.service-card:nth-child(3) {
  animation-delay: 0.5s;
}
.service-card:nth-child(4) {
  animation-delay: 0.7s;
}

.service-card:hover {
  box-shadow: 0 8px 25px rgba(230,126,34,0.6);
  transform: translateY(-10px);
}

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

.service-icon {
  color: #f39c12;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
}
.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

/* Általános beállítások */
body {
  background-color: #121212;
  color: #ddd;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

main {
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}

h1, h2 {
  color: #f39c12;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Árkategória szekció */
.pricing-category {
  margin-bottom: 3rem;
}

/* Csomagok elrendezése */
.pricing-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Egy csomag kártya */
.pricing-card {
  background-color: #222;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(243, 156, 18, 0.3);
  padding: 1.8rem 1.5rem 2.5rem;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  color: #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card.popular::before {
  content: "Népszerű";
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f39c12;
  color: #121212;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.7);
  transform: translateY(-10px);
  z-index: 5;
}

/* Csomag címe */
.pricing-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.5rem;
  color: #f39c12;
  font-weight: 700;
}

/* Ár */
.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Lista */
ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

ul li {
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #f39c12;
  font-weight: 700;
}

/* Megjegyzés */
.note {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 2rem;
  font-style: italic;
}

/* Foglalás gomb */
.btn {
  background-color: #f39c12;
  color: #121212;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: center;
  align-self: center;
  width: 100%;
  max-width: 220px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background-color: #e67e22;
  color: #fff;
}

/* Kedvezmény információ */
.discount-info {
  max-width: 800px;
  margin: 2rem auto;
  background-color: #333;
  color: #f7c36d;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  font-style: italic;
}

/* Reszponzív design */
@media (max-width: 960px) {
  main {
    padding: 0 1rem;
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: center; /* vagy space-between, ha a logó és a menü legyen két szélén */
  gap: 3rem;
}.logo {
  display: block;
  margin: 2rem auto; /* középre igazítás és felső-lower margó */
  max-width: 250px; /* méret korlátozás */
  height: auto;
}/* Mobil nézet */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 200px;
    height: calc(100% - 60px);
    background-color: #222;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.5);
    z-index: 9999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
    border-bottom: none;
  }
}