:root {
    --primary-color: #2a2a2a;
    --secondary-color: #555555;
    --third-color: #3b3c3f;
    --forth-color: #5b5d61;
    --tenth-color: #303641;
    --text-color: #ffffff; 
    --sec-text-color: #ab93f5;
    --third-text-color: #a1ffc3;
    --calendar-background: #313235;
    --calendar-today: #48494d;
    --calendar-selected:#987cee;
    --dark-purple: #8865f2;
    --darker-purple: #774fef;
    --invalid-input: #d25d62;
    --invalid-color-2: #ff4d4d;
    --success-color: #3dca42;
    --font1: Lato;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("../images/andrea-donato-MNu0n-3BIKs-unsplash.jpg");
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    background-attachment: fixed; */
    min-height: 100dvh;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("../images/andrea-donato-MNu0n-3BIKs-unsplash.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%; 
    width: 100%;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 80px;
    box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px;
}

header {
    background-color: var(--primary-color);
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
}

.header-container {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo {
    margin: 0 auto;
    height: 100%;
    max-height: 60px; 
    width: auto; 
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-header {
    display: flex;
    align-items: center;
}

nav {
    width: 80%;
    display: flex;
    justify-content: right;
    padding: 10px 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 10px;
    font-size: 20px;
}

nav a:hover {
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.nav-icons {
    display: flex;
    justify-content: center;
}

.nav-user {
    display: flex;
    align-items: center;
}

.nav-icon {
    display: flex;
    align-items: center;
}

.nav-user p {
    font-size: 18px;
    text-align: center;
}

[id] {
    scroll-margin-top: 80px;
}

.nav-icons a {
    color:white;
    padding: 6px 10px;
    text-decoration: none;
    cursor: pointer;
}

.nav-icons i {
    font-size: 25px;
}

.nav-icons a:hover {
    background-color: var(--secondary-color);
    border-radius: 5px;
}

h2, nav a, h3, .header-col-2 h4 {
    font-family: "Baloo 2", serif;
}

.content {
    width: 1200px;
    min-height: 100%;
    background-color: transparent;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: var(--primary-color);
    width: 100%;
    height: 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    border-top: 2px solid var(--secondary-color);
}

.footer-div {
    width: 100%;
    display: flex;
    color: var(--text-color);
    text-align: center;
    align-items: center;
    justify-content: center;
}

.footer-div a {
    text-decoration: none;
    color:white;
    padding: 5px;
    cursor: pointer;
}

.footer-div a:hover {
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.content h2 {
    color:white;
    font-size: 35px;
    width:100%;
    text-align: center;
    padding:10px;
}

.content p {
    color:white;
    width:100%;
    text-align: left;
}

.content h3 {
    color:white;
    font-size: 30px;
    width:100%;
    text-align: center;
    padding:20px;
}

.gdpr h4 {
    color:white;
    font-size: 24px;
    width:100%;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 5px;
    font-family: "Baloo 2", serif;
}

.reservation-btn-con {
    width: 100%;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
}

.reservation-btn {
    padding: 15px;
    background-color: var(--primary-color);
    border: solid 2px var(--secondary-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.5s ease;
}

.reservation-btn:hover {
    background-color: #181818;
}

.about {
    width: 100%;
    text-align: center;
}

.about img {
    border: solid 2px var(--secondary-color);
}

.about p {
    text-align: center;
}

.services p {
    text-align: center;
}

/* start of cards CSS */

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    width: 250px;
    height: 350px;
    perspective: 1000px; /* 3D perspektiva musí být na rodiči */
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d; /* 3D efekt */
    transition: transform 0.8s ease;
    transform: rotateX(0deg); /* Výchozí stav */
}

.card.active .card-inner {
    transform: rotateX(180deg); /* Aktivní karta se otočí */
}

.card-front, .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden; /* Důležité! Jinak bude vidět obě strany */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-size: cover;
    border: 2px solid var(--secondary-color);
}

.card-back {
    background-color: var(--primary-color);
    transform: rotateX(180deg); /* Zadní strana je otočená */
}

.card1-front, .card1-back {
    background-image: url("../images/card1.jpg");
}

.card2-front, .card2-back {
    background-image: url("../images/card2.jpg");
}

.card3-front, .card3-back {
    background-image: url("../images/card3.jpg");
}

.card4-front, .card4-back {
    background-image: url("../images/card4.jpg");
}

.card-front h2, .card-back h2 {
    font-size: 26px;
    line-height: 1.2;
    height: calc(1.2em * 3); /* výška pro 3 řádky */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.card-front h2, .card-front h3, .card-front h4, .card-front p, .card-back h2, .card-back p {
    position: relative;
    color: var(--text-color); 
}

.card-front::before, .card-back::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
}

.card-front::before {
    background: rgba(0, 0, 0, 0.5); 
}

.card-back::before {
    background: rgba(0, 0, 0, 0.8); 
} 

/* end of cards CSS */

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.contact img {
    margin-bottom: 20px;
}

.contact-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
}

.contact-table td {
    padding: 10px 15px;
    color: var(--text-color);
    font-size: 20px;
    text-align: left;
    vertical-align: top;
}

.contact-left {
    width: 40%;
    font-weight: bold;
}

.contact-right {
    width: 60%;
    word-break: break-word;
}

.map-container {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 20px auto;
    overflow: hidden;
    border: solid 2px var(--secondary-color);
}
.map-container iframe {
    width: 100%;
    height: 100%;
}

.opening-hours {
    width: 100%;
    text-align: center;
}

.opening-hours p {
    text-align: center;
}

::-webkit-scrollbar {
    width: 5px; /* Šířka svislého scroll baru */
    height: 5px; /* Výška vodorovného scroll baru */
}

::-webkit-scrollbar-track {
    background: #1c1c1c; /* Barva pozadí */
}

::-webkit-scrollbar-thumb {
    background: #8e8e8e; /* Barva posuvníku */
}

::-webkit-scrollbar-thumb:hover {
    background: #6f6f6f;
}

#reservation-form {
    border: solid 0px var(--secondary-color);
    background-color: #3b3c3f;
}

.res-section-header {
    display: flex;
    align-items: center;
    margin-top: 2px;
    height: 75px;
    background-color: var(--primary-color);
}

.res-section-header-selectable {
    opacity: 0.5;
    transition: all 0.5s ease;
    cursor: pointer;
}

.res-section-header-selectable:hover {
    opacity: 1;
}

/* this is used instead of selectable one until there is more barbers*/
.res-section-header-barber {
    opacity: 0.5;
}

.res-section-column {
    display: flex;
    flex-direction: column;
}

.header-col-1 {
    text-align: center;
    width: 10%;
}

.header-col-2 {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-col-1 i {
    font-size: 25px;
    color: var(--sec-text-color);
}

.header-col-2 h3 {
    color: var(--sec-text-color);
    text-align: left;
}

.header-col-2 p {
    font-size: 24px;
    text-align: left;
    font-family: "Poppins", serif;
}

.service-row {
    background-color: var(--third-color);
    border-bottom: 2px solid var(--primary-color);
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.res-row-calendar {
    display: flex;
    background-color: var(--third-color);
    border-bottom: 2px solid var(--primary-color);
    height: 455px;
    padding: 20px;
    gap: 20px;
} 

.res-row-contact {
    display: flex;
    background-color: var(--third-color);
    border-bottom: 2px solid var(--primary-color);
    height: 350px;
    /* height: 325px; */
    padding: 20px;
}

.res-contact-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    border: 1px solid blue;
}

.gdpr-acceptance {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.gdpr-acceptance p {
    text-align: center;
    font-size: 15px;
    color: lightgray;
}

.holiday-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.holiday-notice p {
    text-align: center;
    font-size: 17px;
    color: red;
    text-decoration: bold;
}

.gdpr li {
    color: var(--text-color);
}

.gdpr ul {
    padding-left: 30px;
}

.gdpr a {
    color: var(--text-color);
    text-decoration: none;
}

.service-header {
    display: flex;
    padding: 20px;
}

.service-description {
    padding-left: 20px;
    padding-bottom: 20px;
}

.service-description p {
    font-size: 16px;
}

.service-row:hover {
    background-color: var(--forth-color);
}

.service-col1 {
    display: flex;
    width: 70%;
    align-items: center;
    text-align: left;
}

.service-col2 {
    display: flex;
    width: 30%;
    align-items: center;
}

.service-col2-1 {
    width: 50%;
    text-align: right;
}

.service-col2-2 {
    width: 50%;
    text-align: right;
}

.service-col1 h4 {
    color: var(--text-color);
    font-size: 22px;
}

.service-col2-2 h4 {
    color: var(--text-color);
    font-size: 19px;
}

.service2-col1 {
    width: 100%
}

.service2-col1 h4 {
    margin-left: 35px;
    color: var(--text-color)
}

.duration {
    color: var(--text-color);
    font-size: 17px;
}

.header-col-2 h4 {
    color: var(--sec-text-color);
    font-size: 25px;
}

#my-salon {
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  border: 2px solid var(--secondary-color);
}

.gallery img:hover {
  transform: scale(1.05);
}









.not-shift {
    pointer-events: none;
    opacity: 0.3;
    cursor: not-allowed;
}

.is-shift {
    transition: all 0.5s ease;
}

.is-shift:hover {
    background-color: var(--forth-color);
    border-radius: 5px;
    cursor: pointer;
}

.different-month {
    opacity: 0.1;
}

.today {
    color: var(--sec-text-color);
    background-color: var(--calendar-today);
    border-radius: 5px;
}

.selected-day {
    background-color: var(--calendar-selected) !important;
    border-radius: 5px;
}

.selected-time {
    background-color: var(--calendar-selected) !important;
}

.datepicker {
    width: 340px;
    height: 415px;
    border: 1px solid var(--forth-color);
    background-color: var(--calendar-background);
}

.datepicker-container {
    padding: 15px;
}

.datepicker-header {
    width: 100%;
    display: flex;
    padding-top: 25px;
    padding-bottom: 15px;
}

.datepicker-header-main {
    width: 60%;
    text-align: center;
    color: var(--text-color);
}

.datepicker-header-prev, .datepicker-header-next {
    width: 20%;
    text-align: center;
    color: var(--text-color);
    cursor: pointer;
}

.datepicker-header-prev:hover, .datepicker-header-next:hover {
    color: var(--sec-text-color);
}

.datepicker-headerdays {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.datepicker-headerdays-day {
    flex: 1;
    color: var(--sec-text-color);
}

.datepicker-days-row {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.datepicker-days-val {
    font-size: 18px;
    padding: 12px;
    flex: 1;
    color: var(--text-color);
}


.timepicker {
    width: 70%;
}

.timepicker-header {
    display: flex;
    width: 100%;
    height: 39px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--forth-color);
    background-color: var(--calendar-background);
    margin-bottom: 10px;
}

.timepicker-header h4 {
    margin-left: 10px;
    color: var(--text-color);
}

.timepicker-header p {
    margin-left: 10px;
    font-size: 18px;
    opacity: 0.4;
}

.timepicker-times {
    height: 365px;
}

.timepicker-times-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    gap: 10px;
    margin-bottom: 10px;
}

.timepicker-times-val {
    flex: 1;
    color: var(--text-color);
    font-size: 18px;
    padding-top: 7px;
    padding-bottom: 7px;
    border: 1px solid var(--forth-color);
    background-color: var(--calendar-background);
    transition: all 0.5s ease;
}

.timepicker-times-val:hover {
    cursor: pointer;
    background-color: var(--primary-color);
}





#res-contact-form {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 10px; 
    height: 105px;
}

.input-val {
    flex: 1;
    width: max-content;
}

.input-input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--forth-color);
    background-color: var(--calendar-background);
    color: var(--text-color);
    transition: border-color 0.5s ease;
    transition: box-shadow 0.5s ease;
}

.input-label {
    display: flex;
    align-items: center;
}

.input-input:focus {
    border-color: var(--calendar-today);
    outline: none; 
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.5); 
}

.input-label p {
    font-size: 18px;
    font-family: "Baloo 2", serif;
    color: var(--text-color);
}

.input-label i {
    color: var(--sec-text-color)
}

.invalid-message {
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.invalid-message p {
    color: var(--invalid-input);
    font-size: 15px;
}

.invalid-message i {
    color: var(--invalid-input);
}

.button-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-create-reservation, .modal-login-btn, .modal-lostpass-btn, .modal-register-btn{
    background-color: var(--dark-purple);
    color: var(--text-color);
    padding: 7px 20px;
    border: solid 2px var(--calendar-background);
    cursor: pointer;
    font-family: "Baloo 2", serif;
    transition: all 0.5s ease;
}

.btn-create-reservation:focus, .modal-login-btn:focus, .modal-lostpass-btn:focus, .modal-register-btn:focus {
    outline: none;  
}

.btn-create-reservation:hover, .modal-login-btn:hover, .modal-lostpass-btn:hover, .modal-register-btn:hover {
    background-color: var(--darker-purple);
}



















/* MODAL WINDOWS */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    background-color: var(--primary-color);
    height: 60px;
    align-items: center;
}

.modal-content {
    background-color: var(--third-color);
    width: 450px;
    margin: 15% auto;
    text-align: center;
}

.modal-header-col {
    width: 10%;
    text-align: center;
}

.modal-header-name {
    width: 80%;
    color: var(--text-color);
    font-family: "Baloo 2", serif;
}

.modal-body {
    padding: 30px;
}

.modal-input {
    padding-bottom: 30px;
    height: 100px;
}

.modal-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 15px;
    margin-top: 20px;
}

.modal-footer .p-white {
    color: var(--text-color);
}

.modal-footer .p-purple {
    color: var(--sec-text-color);
    transition: all 0.5s ease;
}

.modal-footer p {
    font-size: 18px;
}

.modal-footer .p-purple:hover {
    color: var(--dark-purple);
    cursor: pointer;
}

.modal-header-name h2 {
    font-size: 22px;
}

.closeLoginModal, .closeRegisterModal, .closeLostpassModal {
    font-size: 30px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.closeLoginModal:hover, .closeRegisterModal:hover, .closeLostpassModal:hover {
    color: var(--sec-text-color);
}

.error {
    color: red;
    font-size: 14px;
}

.modal-href {
    text-decoration: none;
}

.lostpassMsg {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* ADMIN LOGIN */
.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


/* POPUPS */
.popup-fail-res {
    position: fixed;
    top: 100px;
    right: 20px;
    display: flex;
    background-color: var(--calendar-today);
    color: white;
    border-radius: 8px;
    border: 1px solid var(--invalid-color-2);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.499);
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.popup-success-res {
    position: fixed;
    top: 100px;
    right: 20px;
    display: flex;
    background-color: var(--calendar-today);
    color: white;
    border-radius: 8px;
    border: 1px solid var(--success-color);
    box-shadow: 0 4px 10px rgba(0, 255, 0, 0.499);
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.popup-left-col-fail-res, .popup-left-col-succ-res {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px 0px 20px; 
}

.popup-right-col {
    padding: 15px 20px 15px 10px;
}

.popup-right-col p {
    margin: 0;
    font-size: 18px;
}

.popup-left-col-fail-res i {
    color: var(--invalid-color-2);
    font-size: 28px;
}

.popup-left-col-succ-res i {
    color: var(--success-color);
    font-size: 28px;
}





/* ======== Přidané styly pro responzivitu a hamburger menu ======== */

/* Mobilní menu panel */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 35px;
    color: var(--text-color);
    transition: transform 0.3s ease; /* Přidáme přechod na transform */
}

.menu-toggle i.rotated {
    transform: rotate(90deg); /* Otočení o 90° při otevření menu */
}

.mobile-nav {
    position: fixed;
    top: 80px;
    right: 0;
    width: 60%;
    height: calc(100% - 80px);
    background-color: var(--third-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.mobile-nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav.closing {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.mobile-nav a {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 20px 30px;
    font-size: 24px;
    text-align: left;
    font-family: "Baloo 2", serif;
    border-bottom: 1px solid var(--secondary-color);
}

.mobile-nav a:hover {
    background-color: var(--forth-color);
}

.mobile-nav i {
    font-size: 26px;
    margin-right: 10px;
}

.overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: rgba(0, 0, 0, 0.3); /* lehce tmavé pozadí */
    backdrop-filter: blur(4px); /* rozmazání */
    opacity: 0;
    visibility: hidden;
    z-index: 998; /* pod mobile-nav */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}










.invalid-input {
    border: 1px solid rgba(210, 93, 98, 0.8);
    box-shadow: 0 0 3px rgba(210, 93, 98, 0.5); 
    transition: all 0.5s ease;
}

.invalid-input:focus {
    border: 1px solid var(--invalid-input);
    box-shadow: 0 0 5px rgba(210, 93, 98, 1); 
}

.hidden {
    display: none !important;
}

.disabled {
    pointer-events: none;
    opacity: 0.3;
    cursor: not-allowed;
}









/* ===== Responzivita ===== */
@media (max-width: 1200px) {
    nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav-icons {
        display: none;
    }
    .wrapper {
        align-items: stretch;
    }
    .content {
        width: 100%;
        max-width: 1200px; 
        margin: 0 auto;
    }
    .contact-table {
        width: 100%;
    }
    .contact td {
        padding-left: 20px;
        padding: 5px;
    }
    .res-row-calendar {
        padding: 10px;
        height: 435px;
        gap: 10px;
    }
    .gdpr {
        width: 100%;
        padding: 10px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    header {
        height: 80px;
    }
    .header-container {
        height: 80px;
    }
    .logo img {
        height: 60px;
    }
    .mobile-nav {
        top: 80px;
        height: calc(100% - 80px);
    }
    footer {
        height: 40px;
    }
    .contact-table {
        width: 100%;
    }
    .contact {
        padding: 0;
        padding-bottom: 20px;
    }
    .contact td {
        padding-left: 20px;
    }
    .contact-table td {
        display: block;
        width: 100%;
        text-align: center;
    }
    .contact-left, .contact-right {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .footer-div p, a {
        font-size: 17px;
    }
    .about img{
        height: 350px;
    }
    .content h2 {
        font-size: 30px;
    }
    .content h3 {
        font-size: 26px;
    }
    .service-header {
        display: block;
    }
    .service-col2 {
        width: 100%;
    }
    .service-col2-1 {
        text-align: left;
    }
    .header-col-2 p {
        font-size: 17px;
    }
    .header-col-2 h4 {
        font-size: 20px;
    }
    .service-col1 h4 {
        font-size: 21px;
    }
    .res-row-calendar {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 865px;
        padding: 10px;
    }
    .timepicker {
        width: 100%;
    }
    .contact img {
        height: 120px;
    }
    .service-header {
        padding: 15px;
    }
    .service-description {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
    .input-group {
        display: block;
        height: 210px;
        width: 100%;
    }
    .input-val {
        flex: none;
        width: 100%;
        height: 105px;
    }
    .res-row-contact {
        padding: 10px;
        height: 575px;
        /* height: 535px; */
    }
    .mobile-nav {
        width: 100%;
    }
    .mobile-nav a {
        padding: 15px 20px;
        font-size: 20px;
    }
    .mobile-nav i {
        font-size: 22px;
    }
    .map-container {
        height: 300px;
    }
}













