
@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&family=Montserrat:wght@400;500&display=swap");
body {
  color: #B0B0B0;
  background-color: #F4BD0A;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  overflow-y: hidden;
  -webkit-text-size-adjust: none; /* Megakadályozza a betűméret automatikus módosítását */
  -webkit-tap-highlight-color: transparent; /* Kattintáskor ne legyen kiemelés */
}
body, html {
  height: 100%;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling Safari esetén */
}

body.loaded {
  overflow-y: scroll;
}

::-moz-selection {
  color: #ffffff;
  background-color: rgba(228, 17, 47, 0.7);
  text-shadow: none;
}

::selection {
  color: #ffffff;
  background-color: rgba(228, 17, 47, 0.7);
  text-shadow: none;
}

:focus {
  outline: 0;
}

#responseMessage {
    display: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
}

#responseMessage.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#responseMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


.main-content {
  background-color: #000000; /* Fekete háttérszín */
  background-size: cover; /* Ensure the image fills the main content area */
  background-position: center; /* Center the image within the main content */
  background-repeat: no-repeat;
  border-radius: 15px; /* Rounded corners like the previous grey background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adds shadow for depth */
  margin: 20px;
  min-height: 90vh; /* Legalább a képernyő magasságával megegyező méret */
  padding: 20px; /* Keeps padding for internal content */
  height: calc(100vh - 40px); /* Makes sure it fits the viewport height with padding */
  width: calc(100% - 60px); /* Width calculation for consistent spacing */
  display: flex; /* Allows for any centered or aligned items */
  align-items: center; /* Center items if necessary */
  justify-content: space-around; /* Elosztja a két elemet */
  gap: 20px;
  overflow-y: auto;
}

.text-overlay {
  position: absolute;
  text-align: center;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
  padding: 20px;
  border-radius: 10px; /* Rounded corners for the background */
}


.text-container {
  position: absolute;
  text-align: center;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
  padding: 20px;
  border-radius: 10px; /* Rounded corners for the background */
}

.typewriter {
  font-size: 32px; /* Increased font size for visibility */
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth opacity transition */
  line-height: 1.4; /* Line spacing for readability */
}

@media (max-width: 480px) {
  .main-content {
    padding: 10px; /* Csökkentsd a paddingot */
    margin: 0 auto; /* Igazítás középre */
    height: auto; /* Engedélyezd az automatikus magasságot */
  }

  .contact-form-container,
  .services-container {
    margin-top: 10px; /* Tovább csökkenti a margókat mobilon */
    padding: 20px; /* Kisebb padding */
  }

  .sidenav {
    position: fixed; /* Javított helyzet mobilon */
    width: 100%; /* Teljes szélesség */
    z-index: 10000;
  }
}

@media (max-width: 991px) {
  .main-content {
    flex-direction: column; /* Mobilon a dobozok egymás alá kerülnek */
    width: calc(100% - 30px); /* Margó kisebb képernyőn */

  }

}
@media (max-width: 767px) {
.main-content {
    width: 100%; /* Mobil nézetben teljes szélesség */

  }

}
@media (max-width: 767px) {
  .mobile-nav .nav-toggle {
    position: absolute;
    top: 10px;
    right: 30px;
    z-index: 10000;
    width: 40px;
    height: 40px;
    background-color: rgba(20, 25, 25, 0.8); /* Átlátszó fekete háttér */
    border-radius: 50%; /* Kör alakú gomb */
  }
}

.btn {
  font-size: 15px;
  padding: 10px 25px;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  border-radius: 0;
  border: 0;
}
.btn img {
  margin-left: 5px;
  width: 19px;
  position: relative;
}
.btn:hover {
  color: #ffffff;
  background-color: rgba(228, 17, 47, 0.7);
}
.btn:active, .btn:focus {
  border: 0;
  color: #ffffff;
  background-color: rgba(228, 17, 47, 0.7);
  box-shadow: none;
}

.btn-primary {
  background-color: #E4112F;
}

.search-form {
  margin-bottom: 35px;
}
.search-form input {
  height: 45px;
  border-color: #333139;
}
.search-form input:focus {
  border-color: #444;
}
.search-form .btn {
  border: 1px solid #333139;
}
.search-form .btn:hover {
  background-color: #E4112F;
  border-color: #E4112F;
}

.bullet-list-item {
  position: relative;
  padding-left: 20px;
}

.bullet-list-item::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #E4112F;
  left: 0;
  top: 9px;
  border-radius: 50px;
}

/*=== UTILITIES CLASSES ===*/
.font-primary {
  font-family: "Barlow Condensed", sans-serif;
}

.font-secondary {
  font-family: "Montserrat", sans-serif;
}

.shadow {
  box-shadow: 0px 0px 20px rgba(34, 34, 34, 0.04) !important;
}

.add-letter-space {
  letter-spacing: 2px;
}

.opacity-0, .opacity-0-onHover,
.opacity-25, .opacity-25-onHover,
.opacity-50, .opacity-50-onHover,
.opacity-75, .opacity-75-onHover,
.opacity-1, .opacity-1-onHover {
  transition: all 0.3s;
}

.opacity-0, .opacity-0-onHover:hover {
  opacity: 0;
}

.opacity-25, .opacity-25-onHover:hover {
  opacity: 0.25;
}

.opacity-50, .opacity-50-onHover:hover {
  opacity: 0.5;
}

.opacity-75, .opacity-75-onHover:hover {
  opacity: 0.75;
}

.opacity-1, .opacity-1-onHover:hover {
  opacity: 1;
}

.z-index-1 {
  z-index: 1;
}

.z-index-100 {
  z-index: 100;
}

.z-index-200 {
  z-index: 200;
}

.z-index-bottom {
  z-index: -5;
}

.z-index-top {
  z-index: 9900;
}

.text-gray {
  color: #B0B0B0;
}

.bg-gray {
  background-color: #B0B0B0;
}

.text-primary, .text-primary-onHover:hover {
  color: #E4112F !important;
}

.bg-primary {
  background-color: #E4112F !important;
}

.text-dark {
  color: #1D1C21 !important;
}

.bg-dark {
  background-color: #1D1C21 !important;
}

.bg-black {
  background-color: #000000;
}

.text-black {
  color: #000000;
}

.text-black-100 {
  color: #111111;
}

.bg-black-100 {
  background-color: #111111;
}

.bg-black-200 {
  background-color: #222222;
}

.text-black-200 {
  color: #222222;
}

.bg-black-300 {
  background-color: #333333;
}

.text-black-300 {
  color: #333333;
}

.text-black-400 {
  color: #444444;
}

.bg-black-400 {
  background-color: #444444;
}

.bg-black-500 {
  background-color: #555555;
}

.text-black-500 {
  color: #555555;
}

.text-black-600 {
  color: #666666;
}

.bg-black-600 {
  background-color: #666666;
}

.bg-black-700 {
  background-color: #777777;
}

.text-black-700 {
  color: #777777;
}

.text-black-700-darken {
  color: #737373;
}

.bg-black-700-darken {
  background-color: #737373;
}

.text-black-800 {
  color: #888888;
}

.bg-black-800 {
  background-color: #888888;
}

.bg-black-900 {
  background-color: #999999;
}

.text-black-900 {
  color: #999999;
}

h1, .h1, h2, .h2, h3, .h3, h4 {
  font-family: "Barlow Condensed", sans-serif;
}

h1, .h1 {
  font-size: 48px;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 38px;
  }
}

h2, .h2 {
  font-size: 36px;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 28px;
  }
}

h3, .h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 15px;
}

.h4, h5, .h5, h6, .h6, p {
  font-family: "Montserrat", sans-serif;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p {
  margin: 0;
}

a:focus,
button:focus {
  outline: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

a:hover, a:active, a:focus {
  text-decoration: none;
  outline: 0;
}

a:hover {
  color: initial;
}

ol {
  list-style-position: inside;
}

ul, li {
  padding: 0;
  margin: 0;
}

.table-bordeprimary td, .table-bordeprimary th {
  border-color: #333139 !important;
}

/*------------------------------------------------------------------
 # preloader style
-------------------------------------------------------------------*/
.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999999;
  text-align: center;
  overflow: hidden;
  background-color: rgb(36, 39, 53);
  transition: 0.5s;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAG0lEQVQYV2NkYGD4z8DAwMgABXAGNgGwSgwVAFbmAgXQdISfAAAAAElFTkSuQmCC);
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transition: 0.7s ease;
  transform: translate(-50%, -50%);
}

.preloader-wrapper.loaded {
  height: 0;
}
.preloader-wrapper.loaded img {
  opacity: 0;
}

/*------------------------------------------------------------------
 # sidenav/navbar style
-------------------------------------------------------------------*/
.sidenav {
  width: 300px; /* Fixed width for consistency */
  background-color: #141919;
  padding: 20px;
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow-y: auto; /* Allows scrolling if content overflows */
  margin: 20px;
  height: calc(100vh - 40px); /* Matches main content height with padding */
}
.sidenav.show {
  left: 0;
}
@media (max-width: 991px) {
  .sidenav {
    width: 200px;
    padding: 30px;

  }
}
@media (max-width: 767px) {
  .sidenav {
    position: fixed !important;
    z-index: 9995;
    top: 0;
    left: -250px;
    background-color: #141919;
  }
}
.sidenav .navbar-brand img {
  max-width: 150px;
}
@media (max-width: 991px) {
  .sidenav .navbar-brand img {
    max-width: 120px;
  }
}
@media (max-width: 767px) {
  .sidenav .navbar-brand img {
    max-width: 100px;
  }
}
.sidenav .nav-link {
  font-size: 20px;
  position: relative;
  display: inline-block;
}
.sidenav .nav-link::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: #ffffff;
  left: 0;
  bottom: 13px;
  transition: 0.3s;
}
.sidenav .nav-link:hover {
  color: rgba(255, 255, 255, 0.5) !important;
}
.sidenav .nav-link:hover::after {
  width: 15px;
}
.sidenav .nav-link[aria-expanded=true],
.sidenav .active .nav-link {
  color: rgba(255, 255, 255, 0.5) !important;
}
.sidenav .nav-link[aria-expanded=true]::after,
.sidenav .active .nav-link::after {
  width: 15px;
}
.sidenav select {
  
  border: 1px solid #ffffff !important;
  height: 30px;
  padding: 0 28px 0 10px;
  width: 80px;
  background-size: 14px;
}
.sidenav select:focus {
  border: 1px solid #ffffff !important;
}
.sidenav select option {
  background-color: #141919;
}

.mobile-nav {
  display: none;
  position: relative;
  z-index: 9992;
}
@media (max-width: 767px) {
  .mobile-nav {
    display: block;
  }
}
.mobile-nav img {
  width: 120px;
}
@media (max-width: 767px) {
  .mobile-nav img {
    width: 100px;
  }
}
.mobile-nav .nav-toggle {
  position: fixed;
  top: 30px;
  right: 8%;
  z-index: 10000;
  width: 40px;
  height: 40px;
  font-size: 13px;
  padding-top: 3px;
  border-radius: 50%;
  transition: opacity 0.3s ease; /* Simított halványulás */
}
.mobile-nav .nav-toggle.show .show,
.mobile-nav .nav-toggle .hidden {
  display: none;
}
.mobile-nav .nav-toggle.show .hidden {
  display: block;
}

#responseMessage {
  display: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
  text-align: center;
}

#responseMessage.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#responseMessage.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


.nav-toggle-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}



.nav-toggle-overlay.show {
  opacity: 1;
  visibility: visible;
}

.drop-menu {
  padding-left: 10px;
  border-left: 1px solid #555;
}
.drop-menu a {
  color: #ffffff;
}
.drop-menu a.active, .drop-menu a:hover {
  color: rgba(255, 255, 255, 0.5) !important;
}

.about-text {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-container {
  background-color: #141414; /* Fekete háttér */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(241, 241, 241, 0.6);
}
.services-title {
  font-size: 2.5rem; /* Nagyobb cím a szekció tetején */
  font-weight: bold;
}

.service-box {
  background-color: #1a1a1a; /* Halvány fekete háttér */
  color: #ffffff; /* Fehér szöveg */
  padding: 40px; /* Egységesebb padding */
  border-radius: 10px; /* Lekerekített sarkok */
  box-shadow: 0 4px 10px rgba(241, 241, 241, 0.6); /* Hasonló árnyék */
  width: 100%; /* Rugalmas szélesség */
  max-width: 500px; /* Maximális szélesség, mint a formáknál */
  height: auto; /* Automatikus magasság */
  box-sizing: border-box; /* Beleértett padding a szélességbe */
  margin-bottom: 20px; /* Térköz az elemek között */
}

.service-box h3 {
  font-family: "Barlow Condensed", sans-serif; /* Egységes betűtípus */
  font-size: 1.8rem; /* Nagyobb címek */
  color: #f4bd0a; /* Sárga címek */
  margin-bottom: 20px; /* Térköz a cím és tartalom között */
}

.service-box ul {
  list-style-type: disc; /* Pontokkal listázás */
  padding-left: 20px; /* Bal oldali térköz */
}

.service-box ul li {
  margin-bottom: 10px; /* Térköz az elemek között */
}

.service-box p {
  font-size: 1rem; /* Egységes betűméret */
  line-height: 1.6; /* Sorok közötti távolság */
  margin-bottom: 15px; /* Térköz az elemek között */
}



.text-yellow {
  color: #f4bd0a;
}
.service-box h3,
.contact-form-container h2,
.address-map-container h2 {
    font-size: 1.8rem;
    color: #f4bd0a;
    margin-bottom: 15px;
}
.brand-text {
  font-family: "Barlow Condensed", sans-serif;
  color: #FFFFFF;
  margin-top: 10px;
}

.brand-text.name {
  font-size: 32px; /* Nagyobb betűméret */
  font-weight: bold; /* Félkövér szöveg */
}

/* A Büki Zoltán egyedi stílusa */
.brand-text.subname {
  font-size: 20px; /* Kisebb betűméret */
  font-weight: normal; /* Normál szöveg */
  margin-top: 5px; /* Kis távolság a címhez képest */
}


.contact-form-container h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: #f4bd0a;
  margin-bottom: 30px;
  text-align: center;
}
.address-map-container h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: #f4bd0a;
  margin-bottom: 30px;
  text-align: center;
}

.address-map-container p {

  text-align: center;
}

.contact-form-container label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-form-container .form-control {
  background-color: #333333; /* Még világosabb fekete a mezőknek */
  color: #ffffff;
  border: 1px solid #444444;
  border-radius: 5px;
  padding: 10px;
}

.contact-form-container .form-control:focus {
  border-color: #f4bd0a;
  outline: none;
}

.contact-form-container button[type="submit"] {
  background-color: #f4bd0a;
  color: #000000;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  width: 100%;
}

.contact-form-container button[type="submit"]:hover {
  background-color: #e5aa08;
}
/* Egységesített méret a cím és térkép szekcióhoz */
.contact-form-container,
.address-map-container {
  background-color: #1a1a1a; /* Halvány fekete háttér */
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(241, 241, 241, 0.6);
  width: 100%;
  max-width: 500px; /* Azonos maximális szélesség */
  height: 600px; /* Azonos fix magasság */
  box-sizing: border-box;
}
.address-map-container .map-frame {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  border: 1px solid #444444;
  margin-top: 15px;
}
/*------------------------------------------------------------------
 # blog post style
-------------------------------------------------------------------*/
.post-item .card-img-top {
  transition: 0.3s;
}
.post-item .card-img-top:hover {
  filter: grayscale(0.5);
  -webkit-filter: grayscale(0.5);
}

.post-meta li a {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}
.post-meta li a:hover {
  text-decoration: underline;
}

.breadcrumb-wrap a {
  color: #B0B0B0;
}
.breadcrumb-wrap a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.categores-links a {
  font-size: 13px;
  color: #B0B0B0;
  border-color: #E4112F !important;
  padding: 4px 7px;
  margin-right: 6px;
  margin-top: 8px;
}
.categores-links a:hover {
  color: #ffffff;
  background-color: #E4112F;
}

@media (max-width: 991px) {
  .border-lg-0 {
    border: 0 !important;
  }
}

.blockquote {
  padding: 50px 90px;
}
@media (max-width: 575px) {
  .blockquote {
    padding: 30px 50px !important;
  }
}

.blockquote-text {
  font-size: 24px;
  position: relative;
}
.blockquote-text::before, .blockquote-text::after {
  position: absolute;
  color: #E4112F;
  font-size: 61px;
  line-height: 0;
  font-family: "Barlow Condensed", sans-serif;
}
.blockquote-text::before {
  content: "“";
  top: 30px;
  left: -35px;
}
.blockquote-text::after {
  content: "”";
  bottom: 0;
  right: -35px;
}
@media (max-width: 575px) {
  .blockquote-text {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .blockquote-footer {
    font-size: 15px;
  }
}
/*------------------------------------------------------------------
 # widget style
-------------------------------------------------------------------*/
.widget {
  margin-bottom: 50px;
}
.widget .form-control {
  font-size: 15px;
  color: #ffffff;
  height: 48px;
  border: 1px solid #2f2e35 !important;
}
.widget .form-control:focus {
  box-shadow: none !important;
}

.widget-title {
  border-bottom: 2px solid #E4112F;
  padding-bottom: 10px;
}

.author-thumb-sm {
  height: auto;
  max-width: 230px;
  width: 100%;
}

/*------------------------------------------------------------------
 # contact-form style
-------------------------------------------------------------------*/
.contact-form {
  padding: 60px;
}
.contact-form label {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 15px;
}
.contact-form .form-control {
  background-color: transparent;
  border: 0;
  color: #aaa;
  border-color: #333139 !important;
  padding-bottom: 20px;
}
.contact-form .form-control:focus {
  border-color: #888888 !important;
}
.contact-form select {
  padding-bottom: 16px;
  color: #aaa;
  padding-right: 15px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #333139;
}
.contact-form select option {
  background-color: #1D1C21;
  color: #ffffff;
}
.contact-form textarea {
  resize: none;
  height: 100px;
}

