:root {
    --primary-color: #943746;
    --secondary-color: #943746;
    --text-color: #333;
    --background-color: #f4f4f9;
}
::selection {
    background-color: #943746;
    color: #ffffff;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body,
html {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: url('https://barberglobalszeged.hu/idopontfoglalas/wp-content/themes/twentytwentyfive/assets/idopont.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.bookly-form {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: auto;
    position: relative;
    z-index: 2;
    color: white;
}
.bookly-form label, .bookly-form h1, .bookly-form h2 {
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}
.bookly-form input, .bookly-form select {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}
.bookly-form input::placeholder, .bookly-form select::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.bookly-form button {
    background-color: #b22222;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.bookly-form button:hover {
    background-color: #8b0000;
}
.bookly-form {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 650px) {
     .bookly-form ol.bookly-stepper {
        display: flex !important;
        list-style: none;
        justify-content: space-between;
        align-items: center;
        margin: 0px 0px 20px 0px;
        padding: 0px;
        overflow: hidden;
        background: none !important;
        position: relative;
    }
    .bookly-form ol.bookly-stepper li {
        background-color: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        outline: none !important;
        box-shadow: none !important;
        position: relative;
        display: flex;
        justify-content: center;
    }
    .bookly-form ol.bookly-stepper li::before {
        content: " ";
        display: block !important;
        width: 24px;
        height: 24px;
        box-sizing: border-box;
        border-radius: 50%;
        z-index: 1;
        background-color: transparent;
        border: none;
        outline: none;
        box-shadow: none !important;
    }
    .bookly-form ol.bookly-stepper li.bookly-step-active::before {
        background-color: var(--bookly-main-color, #943746);
        border: none;
    }
    .bookly-form ol.bookly-stepper li.bookly-step-active ~ li::before {
        background: none !important;
        border: 2px solid silver;
    }
     .bookly-form ol.bookly-stepper li::after {
         display: none !important;
     }
}
div.powered-by-bookly {
    display: none !important;
}
nav {
    backdrop-filter: blur(90px);
    box-shadow: 0px 0px 30px rgba(1, 5, 38, 0.563);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(150, 150, 150, 0.3);
}
nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li {
    height: 50px;
}
nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}
nav a:hover {
    color: #943746;
}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.662);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.sidebar.show {
    transform: translateX(0);
}
.sidebar li {
    width: 100%;
}
.sidebar a {
    width: 100%;
}
.sidebar button {
    background: none;
    border: none;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar button svg {
    width: 24px;
    height: 24px;
    fill: #FFFFFF;
}
.menu-button {
    display: none;
}
.nav-items a.active {
    color: var(--secondary-color);
}
.nav-items a[href="#kedvezmenyek"].active {
    color: var(--secondary-color);
}
footer {
    color: var(--primary-color);
    text-align: center;
    font-size: 0.9rem;
    background-color: black;
    margin-top: 0;
}
.footer-content{
    margin-bottom: 10px;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    justify-content: space-between;
}
.footer-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #943746;
    margin-top: 15px;
}
.footer-container strong {
    color: #f0f0f0;
}
.footer-container h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}
.footer-container a {
    color: #943746;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-container a:hover {
    color: rgba(148, 55, 70, 0.9);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    z-index: 1000;
    mix-blend-mode: difference;
    background-color: transparent;
}
.back-to-top:hover {
    mix-blend-mode: normal;
    background-color: rgba(148, 55, 70, 0.9);
    color: white;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
@media(max-width: 800px) {
    .hideOnMobile {
        display: none;
    }
    .menu-button {
        display: block;
    }
}
@media(max-width: 450px) {
    .sidebar {
        width: 100%;
    }
}
@media (max-width: 768px) {
  .bookly .bookly-js-step-1,
  .bookly .bookly-js-step-2 {
    padding: 0 !important;
    box-shadow: none !important;
    background: none !important;
  }
  .bookly-mobile-next-step {
    background-color: #943746 !important;
    color: #fff !important;
    font-weight: bold;
    border-radius: 8px;
    padding: 10px 20px;
  }
  .bookly-form {
    margin-bottom: 0 !important;
  }
}