/* Root Styles */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --BackGroundColor: rgb(20, 20, 20);
  --SecondaryColor: rgb(10, 40, 100);
  --PrimaryColor: rgb(250, 250, 250);
  --TextColor: rgb(130, 130, 130);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

.Hidden {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.FadeOut {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.NoScroll {
  overflow: hidden;
}

.SectionContainer {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 1rem;
}

.SectionHeader {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  color: var(--PrimaryColor);
}

.SectionSubHeader {
  max-width: 600px;
  margin: auto;
  text-align: center;
  color: var(--TextColor);
}

.Button {
  padding: 1rem 2rem;
  width: 200px;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--PrimaryColor);
  background-color: var(--SecondaryColor);
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.Button:hover {
  background-color: rgb(40, 100, 190);
}

.Button:disabled {
  cursor: not-allowed;
}

.Button:disabled:hover {
  background-color: var(--SecondaryColor);
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.BackGroundBlur {
  position: absolute;
  box-shadow: 0 0 1000px 50px var(--SecondaryColor);
  z-index: -1;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--BackGroundColor);
}

/* Navigation */

nav {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.NavigationLogo {
  max-width: 150px;
}

.NavigationLinks {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.Link a {
  position: relative;
  padding-bottom: 0.75rem;
  color: var(--PrimaryColor);
}

.Link a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: var(--SecondaryColor);
  transition: all 0.3s ease-in-out;
}

.Link a:hover::after {
  width: 50%;
}

/* Appointment Info Section */

#AppointmentInfo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 60px;
  border-radius: 10px;
  border: 2px solid var(--BackGroundColor);
  z-index: 2;
  background: var(--BackGroundColor);
}

#AppointmentInfo::backdrop {
  background: rgb(0 0 0 / .7);
  opacity: 0;
}

#AppointmentInfo[open] {
  animation: FadeIn 400ms forwards;
}

#AppointmentInfo[open]::backdrop {
  animation: FadeIn 400ms forwards;
}

#AppointmentInfo[closing] {
  animation: FadeOut 0.5s ease-out forwards;
}

#AppointmentInfo[closing]::backdrop {
  animation: FadeOut 400ms forwards;
}

@keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes FadeOut {
  100% {
    opacity: 0;
  }

  0% {
    opacity: 1;
  }
}

.DialogAnimation {
  animation: FadeIn 0.5s ease-in forwards;
}

.DialogClosingAnimation {
  animation: FadeOut 0.5s ease-out forwards;
}

.AppointmentInfoWrapper {
  display: flex;
  gap: 10px;
}

.AppointmentInfoWrapper>div {
  text-align: center;
}

.AppointmentInfoWrapper>div>p {
  color: var(--PrimaryColor);
  margin-top: 15px;
  max-width: 200px;
}

.AppointmentInfoWrapper a {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--SecondaryColor);
  color: var(--PrimaryColor);
  position: relative;
}

.AppointmentInfoWrapper a i {
  font-size: 24px;
}

.DataToolTip::before,
.DataToolTip::after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
}

.DataToolTip::before {
  content: attr(data-tooltip-content);
  width: fit-content;
  font-size: small;
  font-weight: 600;
  background-color: inherit;
  padding: 3px 10px;
  border-radius: 4px;
  bottom: calc(100% + 5px);
}

.DataToolTip:hover::before,
.DataToolTip:hover::after {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Header Section */

.HeaderContainer {
  position: relative;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
}

.HeaderContainer::before {
  content: "DIAMON'";
  position: absolute;
  bottom: 2rem;
  right: 10rem;
  font-size: 10rem;
  font-weight: 700;
  line-height: 7rem;
  color: var(--PrimaryColor);
  opacity: 0.05;
  z-index: -1;
}

.HeaderBlur {
  bottom: 5rem;
  right: 0;
}

.HeaderContent h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--SecondaryColor);
}

.HeaderContent h1 {
  margin-bottom: 1rem;
  font-size: 5rem;
  font-weight: 700;
  line-height: 6rem;
  color: var(--PrimaryColor);
}

.HeaderContent h1 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--PrimaryColor);
}

.HeaderContent p {
  margin-bottom: 2rem;
  color: var(--TextColor);
}

.HeaderImage {
  position: relative;
}

.HeaderImage img {
  max-width: 350px;
  margin: auto;
}

/* Offer Section */

.OfferHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.OfferHeader .SectionHeader {
  margin-bottom: -3rem;
}

.OfferGrid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.OfferCard {
  padding: 1rem;
  background-color: transparent;
  border: 2px solid var(--SecondaryColor);
  border-radius: 10px;
  transition: box-shadow 0.3s ease-in-out;
}

.OfferCard:hover {
  box-shadow: 0 8px 16px var(--SecondaryColor);
  cursor: pointer;
}

.OfferCard span {
  display: inline-block;
  padding: 2px 9px;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: var(--PrimaryColor);
  background-color: var(--SecondaryColor);
  border-radius: 5px;
}

.OfferCard h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--PrimaryColor);
}

.OfferCard p {
  margin-bottom: 1rem;
  color: var(--TextColor);
}

.OfferCard a {
  color: var(--PrimaryColor);
  transition: all 0.3s ease-in-out;
}

.OfferCard a:hover {
  color: var(--SecondaryColor);
}

/* About Us Section */

.AboutUs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.AboutUsImage {
  flex: 1;
  max-width: 100%;
  position: relative;
}

.AboutUsImage .Image {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  display: block;
}

.AboutUsContent {
  flex: 1;
  padding: 2rem;
  text-align: center;
}

.AboutUsContent .SectionHeader {
  text-align: center;
  max-width: 400px;
  margin: 1rem auto;
}

.AboutUsContent p {
  margin-bottom: 4rem;
  color: var(--TextColor);
}

/* Pricing Section */

.PriceGrid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.PriceCard {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border: 3px solid var(--SecondaryColor);
  border-radius: 10px;
  transition: box-shadow 0.3s ease-in-out;
}

.PriceCard:hover {
  box-shadow: 0 8px 16px var(--SecondaryColor);
  cursor: pointer;
}

.PriceCardContent {
  flex: 1;
  margin-bottom: 2rem;
}

.PriceCard h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--PrimaryColor);
}

.PriceCard h3 {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--PrimaryColor);
  border-bottom: 2px solid var(--PrimaryColor);
}

.PriceCard p {
  margin-bottom: 0.75rem;
  color: var(--PrimaryColor);
}

.PriceCard p i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: var(--PrimaryColor);
}

/* Gallery Section */

.Marquee {
  margin-top: 2rem;
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  height: 200px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0));
}

@keyframes ScrollLeft {
  to {
    left: -300px;
  }
}

@keyframes ScrollRight {
  to {
    right: -300px;
  }
}

.ItemLeft,
.ItemRight {
  width: 300px;
  height: 200px;
  position: absolute;
  animation-timing-function: linear;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  overflow: hidden;
}

.ItemLeft {
  left: max(calc(300px * 8), 100%);
  animation-name: ScrollLeft;
}

.ItemRight {
  right: max(calc(300px * 8), calc(100% + 300px));
  animation-name: ScrollRight;
}

.ItemLeft img,
.ItemRight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.ItemOne {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.ItemTwo {
  animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.ItemThree {
  animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.ItemFour {
  animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.ItemFive {
  animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.ItemSix {
  animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.ItemSeven {
  animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.ItemEight {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

/* Testimonials Section */

#ReviewForm{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 60px;
  border-radius: 10px;
  z-index: 2;
  border: none;
  background-color: transparent;
}

#ReviewForm::backdrop {
  background: rgb(0 0 0 / .7);
  opacity: 0;
}

#ReviewForm[open]{
  animation: FadeIn 400ms forwards;
}

#ReviewForm[open]::backdrop {
  animation: FadeIn 400ms forwards;
}

#ReviewForm[closing] {
  animation: FadeOut 0.5s ease-out forwards;
}

#ReviewForm[closing]::backdrop {
  animation: FadeOut 400ms forwards;
}

@keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes FadeOut {
  100% {
    opacity: 0;
  }

  0% {
    opacity: 1;
  }
}

.DialogAnimation {
  animation: FadeIn 0.5s ease-in forwards;
}

.DialogClosingAnimation {
  animation: FadeOut 0.5s ease-out forwards;
}

.ReviewWrapper {
  background: var(--PrimaryColor);
  padding: 2rem;
  max-width: 576px;
  width: 100%;
  border-radius: .75rem;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, .05);
  text-align: center;
}

.ReviewWrapper h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.Rating {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 0.3rem;
}

.Rating input {
  appearance: unset;
}

.Rating label {
  cursor: pointer;
}

.Rating svg {
  width: 2rem;
  height: 2rem;
  overflow: visible;
  fill: transparent;
  stroke: var(--TextColor);
  stroke-linejoin: bevel;
  stroke-dasharray: 12;
  animation: StarIn 4s linear infinite;
  transition: stroke 0.2s, fill 0.5s;
}

@keyframes StarIn {
  from {
    stroke-dashoffset: 24;
  }
}

.Rating label:hover svg {
  stroke: var(--SecondaryColor);
}

.Rating input:checked~label svg {
  transition: 0s;
  animation: StarIn 4s linear infinite, StarOut 0.75s backwards;
  fill: var(--SecondaryColor);
  stroke: var(--SecondaryColor);
  stroke-opacity: 0;
  stroke-dasharray: 0;
  stroke-linejoin: miter;
  stroke-width: 8px;
}

@keyframes StarOut {
  0% {
    transform: scale(1);
    fill: var(--SecondaryColor);
    fill-opacity: 0;
    stroke-opacity: 1;
    stroke: var(--TextColor);
    stroke-dasharray: 10;
    stroke-width: 1px;
    stroke-linejoin: bevel;
  }

  30% {
    transform: scale(0);
    fill: var(--SecondaryColor);
    fill-opacity: 0;
    stroke-opacity: 1;
    stroke: var(--TextColor);
    stroke-dasharray: 10;
    stroke-width: 1px;
    stroke-linejoin: bevel;
  }

  30.1% {
    stroke: var(--SecondaryColor);
    stroke-dasharray: 0;
    stroke-linejoin: miter;
    stroke-width: 8px;
  }

  60% {
    transform: scale(1);
    fill: var(--SecondaryColor);
  }
}

.ReviewInputSplit {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.ReviewInputSplit .MenoInput {
  flex: 0 0 69%;
}

.ReviewInputSplit .VekInput {
  flex: 0 0 30%;
}

.ReviewInput {
  width: 100%;
  background: rgb(230, 230, 230);
  padding: 1rem;
  border-radius: .5rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease-in-out;
  outline: none;
  resize: none;
  margin-bottom: .5rem;
}

.ReviewInput::-webkit-outer-spin-button,
.ReviewInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ReviewText {
  width: 100%;
  background: rgb(230, 230, 230);
  padding: 1rem;
  border-radius: .5rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease-in-out;
  outline: none;
  resize: none;
  margin-bottom: .5rem;
}

.InputError {
  border: 2px solid var(--SecondaryColor);
  transition: border-color 0.3s ease-in-out;
}

.ButtonGroup {
  display: flex;
  justify-content: flex-end;
  grid-gap: .5rem;
  align-items: center;
}

.ButtonGroup .ReviewButton {
  padding: .75rem 1rem;
  border-radius: .5rem;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.ButtonGroup .ReviewButton.Send {
  background: var(--SecondaryColor);
  color: var(--PrimaryColor);
}

.ButtonGroup .ReviewButton.Send:hover {
  background: rgb(40, 100, 190);
}

.ButtonGroup .ReviewButton.Cancel {
  background: var(--PrimaryColor);
  color: var(--SecondaryColor);
}

.ButtonGroup .ReviewButton.Cancel:hover {
  background: rgb(230, 230, 230);
}

.ReviewContainer {
  display: flex;
  gap: 2rem;
}

.ReviewContainer>span {
  font-size: 6rem;
  color: var(--SecondaryColor);
  opacity: 0.5;
}

.ReviewContent {
  flex: 1;
}

.ReviewContent h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--PrimaryColor);
}

.ReviewContent p {
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--TextColor);
}

.ReviewRating span {
  font-size: 1.5rem;
  color: var(--SecondaryColor);
}

.ReviewFooter {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ReviewButtonContainer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Appointment Section */

.ProgressContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

.ProgressContainer .Steps {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.ProgressContainer .Steps .Step {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--PrimaryColor);
  border-radius: 10px;
  color: var(--BackGroundColor);
  font-size: 22px;
  font-weight: 500;
  border: 4px solid transparent;
  transition: all 0.3s ease-in-out;
  transition-delay: 0s;
}

.ProgressContainer .Steps .Step.Active {
  transition-delay: 0.1s;
  background-color: var(--SecondaryColor);
  border-color: transparent;
  color: var(--PrimaryColor);
}

.ProgressContainer .Steps .ProgressBar {
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: var(--PrimaryColor);
  z-index: -1;
}

.ProgressContainer .Steps .ProgressBar .Indicator {
  position: absolute;
  height: 100%;
  width: 0%;
  background-color: var(--SecondaryColor);
  transition: all 0.3s ease-in-out;
}

.AppointmentStepsContainer {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 300px;
}

.AppointmentForm {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.AppointmentStep {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.AppointmentStep.Current {
  opacity: 1;
  visibility: visible;
}

.AppointmentInput {
  background-color: transparent;
  border: 2px solid var(--TextColor);
  color: var(--TextColor);
  font-weight: bold;
  text-align: left;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}

.AppointmentInput::placeholder {
  font-size: 16px;
  font-weight: bold;
  color: var(--TextColor);
}

.AppointmentInput:hover,
.AppointmentInput:focus,
.AppointmentInput:checked {
  border-color: var(--SecondaryColor);
}

::-webkit-Calendar-picker-indicator {
  filter: invert(1);
}

.AppointmentInput[type="select"],
select.AppointmentInput {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.InputWrapper {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.AppointmentInput {
  background-color: transparent;
  border: 2px solid var(--TextColor);
  color: var(--TextColor);
  font-weight: bold;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}

.AppointmentInput:focus+.InputLabel,
.AppointmentInput:not(:placeholder-shown)+.InputLabel {
  top: 0;
  transform: translateY(-100%);
  font-size: 12px;
  color: var(--SecondaryColor);
}

.AppointmentInput[type="date"]::placeholder {
  font-size: 16px;
  font-weight: bold;
  color: var(--TextColor);
}

select.AppointmentInput {
  font-size: 16px;
  font-weight: bold;
  color: var(--TextColor);
}

select.AppointmentInput option[value=""][disabled] {
  display: none;
}

select.AppointmentInput option:first-child {
  color: var(--TextColor);
}

select.AppointmentInput option {
  font-size: 16px;
  font-weight: bold;
}

.AppointmentRadioInput {
  display: none;
}

.AppointmentRadioInput+label {
  display: flex;
  align-items: center;
  justify-content: left;
  background-color: transparent;
  border: 2px solid var(--TextColor);
  color: var(--TextColor);
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.AppointmentRadioInput:checked+label {
  background-color: var(--SecondaryColor);
  border-color: var(--SecondaryColor);
  color: var(--PrimaryColor);
}

.AppointmentRadioInput+label:hover,
.AppointmentRadioInput:focus+label {
  border-color: var(--SecondaryColor);
}

label {
  cursor: pointer;
  color: var(--TextColor);
  font-weight: bold;
}

.ProgressContainer .ProgressButtons {
  display: flex;
  gap: 20px;
}

/* Free Dates Section */

.FilterButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.FilterRadioInput {
  display: none;
}

.FilterRadioInput + label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: transparent;
  border: 2px solid var(--TextColor);
  color: var(--TextColor);
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  width: 200px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.FilterRadioInput:checked + label {
  background-color: var(--SecondaryColor);
  border-color: var(--SecondaryColor);
  color: var(--PrimaryColor);
}

.FilterRadioInput + label:hover,
.FilterRadioInput:focus + label {
  border-color: var(--SecondaryColor);
}

.CalendarContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Calendar {
  width: 100%;
  max-width: 600px;
  background: transparent;
  padding: 30px 20px;
  border-radius: 10px;
  border: 2px solid var(--TextColor);
}

.Calendar .ToolTip {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--SecondaryColor);
  color: var(--PrimaryColor);
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  font-weight: bold;
  transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
  z-index: 10;
  white-space: nowrap;
}

.Calendar .ToolTip .OccupiedTime {
  font-weight: normal;
  font-style: italic;
  color: var(--TextColor);
}

.Calendar .ToolTip span {
  display: inline-block;
  margin-right: 5px;
}

.Calendar .ToolTipActive .ToolTip {
  opacity: 1;
  visibility: visible;
}

.Calendar .CalendarHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--TextColor);
}

.Calendar .CalendarHeader .Month {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 600;
  color: var(--PrimaryColor);
}

.Calendar .CalendarHeader .CalendarButtons {
  display: flex;
  gap: 10px;
}

.Calendar .CalendarHeader .CalendarButtons .CalendarButton {
  width: 50px;
  height: 40px;
  background: var(--SecondaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: var(--PrimaryColor);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.Calendar .CalendarHeader .CalendarButtons .CalendarButton:hover {
  background: var(--SecondaryColor);
}

.Calendar .WeekDays {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.Calendar .WeekDays .Day {
  width: calc(100% / 7 - 10px);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--PrimaryColor);
}

.Calendar .Days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.Calendar .Days .Day {
  position: relative;
  width: calc(100% / 7 - 10px);
  height: 50px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--TextColor);
  transition: all 0.3s ease-in-out;
  user-select: none;
}

.Calendar .Days .Day:not(.Next):not(.Previous):hover {
  color: var(--PrimaryColor);
  background: var(--SecondaryColor);
  font-weight: bold;
}

.Calendar .Day.Previous,
.Calendar .Day.Next {
  pointer-events: none;
}

.Calendar .Days .Day.Today {
  color: var(--PrimaryColor);
  background: var(--SecondaryColor);
  font-weight: bold;
}

.Calendar .Day.Disabled {
  background-color: #2c2c2c;
  color: var(--TextColor);
  pointer-events: none;
}

/* Footer */

.FooterContainer {
  position: relative;
  display: grid;
  grid-template-columns: 400px repeat(3, 1fr);
  gap: 2rem;
}

.FooterCol {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.FooterBlur {
  bottom: 0;
  right: 0;
}

.FooterLogo {
  max-width: 150px;
  margin-bottom: 2rem;
}

.FooterSocials {
  display: flex;
  justify-content: center;
  align-items: center;
}

.FooterSocials .IconContent {
  margin: 0 10px;
  position: relative;
}

.FooterSocials .IconContent .ToolTip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--SecondaryColor);
  color: var(--PrimaryColor);
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.FooterSocials .IconContent:hover .ToolTip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.FooterSocials .IconContent .IconLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: var(--PrimaryColor);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.FooterSocials .IconContent .IconLink i {
  font-size: 2rem;
}

.FooterSocials .IconContent .IconLink:hover {
  color: var(--SecondaryColor);
}

.FooterCol h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--SecondaryColor);
}

.FooterCol>p {
  display: block;
  margin-bottom: 1rem;
  color: rgb(210, 210, 220);
  transition: all 0.3s ease-in-out;
}

.FooterCol>p b {
  font-style: italic;
}

.FooterCol>a {
  display: block;
  margin-bottom: 1rem;
  color: rgb(210, 210, 220);
  transition: all 0.3s ease-in-out;
}

.FooterCol>a:hover {
  color: var(--SecondaryColor);
}

/* Responsivness */

@media (width < 1000px) {
  .HeaderContainer::before {
    content: none;
  }

  .NavigationLinks {
    display: none;
  }

  .HeaderContainer {
    grid-template-columns: repeat(1, 1fr);
  }

  .HeaderImage {
    grid-area: 1/1/2/2;
  }

  .OfferGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .AboutUs {
    flex-direction: column;
    align-items: center;
  }

  .AboutUsImage {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .AboutUsContent {
    padding: 1rem;
  }

  .PriceGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ReviewContainer {
    gap: 2rem;
  }

  .FooterContainer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .FooterCol {
    text-align: center;
  }
}

@media (width < 600px) {
  .OfferHeader {
    flex-direction: column;
  }

  .OfferGrid {
    grid-template-columns: repeat(1, 1fr);
  }

  .PriceGrid {
    grid-template-columns: repeat(1, 1fr);
  }

  #ReviewForm {
    padding: 20px;
    width: calc(100% - 10px);
    max-width: 400px;
  }
  
  .ReviewWrapper {
    padding: 1.5rem;
  }

  .Rating svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .ReviewInput {
    padding: 0.75rem;
  }

  .ReviewInputSplit {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ReviewInputSplit .MenoInput, .ReviewInputSplit .VekInput {
    flex: 0 0 100%;
  }

  .ButtonGroup {
    justify-content: space-between;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .ButtonGroup .ReviewButton {
    flex: 1;
    padding: 0.75rem;
  }

  .ReviewContainer {
    flex-direction: column;
    gap: 0;
  }

  .ReviewFooter {
    flex-direction: column;
  }

  .FooterContainer {
    grid-template-columns: 1fr;
  }
}

/* Login Page */

.LoginContainer {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 7rem;
  padding: 0 2rem;
}

.LoginImage {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.LoginImage img {
  width: 500px;
}

.LoginContent {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.LoginContent img {
  height: 100px;
}

.LoginContent h2 {
  margin: 15px 0;
  color: var(--PrimaryColor);
  font-style: italic;
  text-transform: uppercase;
  font-size: 2.9rem;
}

.LoginContent p{
  color: var(--PrimaryColor);
  margin-top: -10px;
  text-align: center;
  font-size: 12px; 
}

.LoginContent p a{
  color: var(--SecondaryColor);
  font-style: italic;
}

.LoginContent .LoginInputDiv {
  position: relative;
  display: grid;
  grid-template-columns: 7% 93%;
  margin: 25px 0;
  padding: 5px 0;
  border-bottom: 2px solid var(--PrimaryColor);
}

.LoginContent .LoginInputDiv.One {
  margin-top: 0;
}

.LoginForm {
  width: 360px;
}

.LoginIcon {
  color: var(--PrimaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
}

.LoginIcon i {
  transition: all 0.3s ease-in-out;
}

.LoginInputDiv>div {
  position: relative;
  height: 45px;
}

.LoginInputDiv>div>h5 {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--PrimaryColor);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.LoginInputDiv:before,
.LoginInputDiv:after {
  content: '';
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: var(--SecondaryColor);
  transition: all 0.3s ease-in-out;
}

.LoginInputDiv:before {
  right: 50%;
}

.LoginInputDiv:after {
  left: 50%;
}

.LoginInputDiv.Focus:before,
.LoginInputDiv.Focus:after {
  width: 50%;
}

.LoginInputDiv.Focus>div>h5 {
  top: -5px;
  font-size: 15px;
}

.LoginInputDiv.Focus>.LoginIcon>i {
  color: var(--SecondaryColor);
}

.LoginInputDiv>div>input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.5rem 0.7rem;
  font-size: 1.2rem;
  color: var(--PrimaryColor);
  font-weight: bold;
}

.LoginInputDiv.Pass {
  margin-bottom: 4px;
}

.LoginButton {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: var(--SecondaryColor);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--PrimaryColor);
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.LoginButton:hover {
  background-color: rgb(40, 100, 190);
}

/* Responsivness */

@media screen and (max-width: 1050px) {
  .LoginContainer {
    grid-gap: 5rem;
  }
}

@media screen and (max-width: 1000px) {
  .LoginForm {
    width: 290px;
  }

  .LoginContent h2 {
    font-size: 2.4rem;
    margin: 8px 0;
  }

  .LoginImage img {
    width: 400px;
  }
}

@media screen and (max-width: 900px) {
  .LoginContainer {
    grid-template-columns: 1fr;
  }

  .LoginImage {
    display: none;
  }

  .LoginContent {
    justify-content: center;
  }
}