body {
background: #F8F6F2;

}

.menubalk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    margin-top: 4vh;
}

.left-group {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.menu-items {
    display: flex;
    gap: 2.5rem; 
}

.menubalk a {
    margin: 0;
    color: #2E110D;
    font-family: Lato;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
    text-decoration: none;
}

.menubalk img {
    width: 10vw;
    height: auto;
    flex-shrink: 0;
    aspect-ratio: 267/128;
}



.button {
    border-radius: 3.75rem;
    border: 1px solid black;
    background: #DDA47B;
    width: 8.8125rem;
    height: 2.9rem;
    flex-shrink: 0;
    color: black;
    font-family: Lato;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button:hover {
background: #B6C7A7;
}

.service {
  display: flex;
  align-items: center; 
  gap: 0.5rem;
  position: relative;
  top: 4rem;
}

.text-group {
  display: flex;
  flex-direction: column;
  position: relative;
  left: 4rem;
}

.service svg {
  width: 2rem;
  height: 2.25rem;
  flex-shrink: 0;
  position: relative;
  left: 2rem;
  top: -0.5rem;
}

.service h1 {
  color: #000;
  font-family: "Playfair Display";
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.75rem;
  margin: 0;
}

.service h2 {
  color: #000;
  font-family: Lato, sans-serif;
  font-weight: 400;
  margin: 0;
font-size: 1.475rem;
font-style: normal;
font-weight: 500;
line-height: 1.75rem; 
position: relative;
top: 2rem;
}

.service-container {
    position: relative;
    top: 12rem;
    padding-bottom: 12rem;
}


.booking-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: nowrap; 
}

.time-picker {
    position: relative;
    top: 10rem;
    left: 8rem;
}


.time-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;

}

.time1 {
    background-color: var(--c-bg-secondary);
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.time1:hover {
    background-color: #DDA47B;
    color: white;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *:after, *:before {
	box-sizing: border-box;
}
	
:root {
	--c-theme-primary: #008FFD;
	--c-theme-primary-accent: #CBE8FF;
	--c-bg-primary: #D6DAE0;
	--c-bg-secondary: #EAEBEC;
	--c-bg-tertiary: #FDFDFD;
	--c-text-primary: #1F1F25;
	--c-text-secondary: #999FA6;
}

body {
	font-family: "Lato", sans-serif;
	line-height: 1.5;

	
}

button {
	font: inherit;
	cursor: pointer;
	&:focus {
		outline: 0;
	}
}


.datepicker {
	width: 30rem;
	background-color: var(--c-bg-tertiary);
	border-radius: 10px;
	box-shadow: 0 0 2px 0 rgba(#000, .2), 0 5px 10px 0 rgba(#000, .1);
	padding: 2rem;
    border-radius: 3.75rem;
border: 8px solid #DDA47B;
box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 41.778px 33.422px 0px rgba(0, 0, 0, 0.05), 0px 22.336px 17.869px 0px rgba(0, 0, 0, 0.04), 0px 12.522px 40px 0px rgba(0, 0, 0, 0.05);
position: relative;
top: 10rem;
left: 4rem;
padding-left: 3rem;
padding-right: 3rem;
}

.datepicker-top {
	margin-bottom: 1rem;
}



.tag {
	margin-right: .5rem;
	margin-top: .5rem;
	border: 0;
	background-color: var(--c-bg-secondary);
	border-radius: 10px;
	padding: .5em .75em;
	font-weight: 600;
}

.month-selector {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background-color:#DDA47B;
	border-radius: 12px;
	width: 2.5rem;
	height: 2.5rem;
	box-shadow: 0 0 2px 0 rgba(#000,.25), 0 0 10px 0 rgba(#000, .15);
}

.month-name {
	font-weight: 600;
}

.datepicker-calendar {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-row-gap: 1rem;
}

.day, .date {
	justify-self: center;
}

.day {
	color: var(--c-text-secondary);
	font-size: .875em;
	font-weight: 500;
	justify-self: center;
}

.date {
	border: 0;
	padding: 0;
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	font-weight: 600;
	border: 2px solid transparent;
	background-color: transparent;
	cursor: pointer;
	&:focus {
		outline: 0;
		color: var(--c-theme-primary);
		border: 2px solid var(--c-theme-primary-accent);	
	}	
}

.faded {
	color: var(--c-text-secondary);
}

.date.selected {
    background-color: #DDA47B;
    color: white;
}

.time-picker {
    border-radius: 3.75rem;
border: 8px solid #DDA47B;
background: white;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 40px 30px 0px rgba(0, 0, 0, 0.06), 0px 22px 17px 0px rgba(0, 0, 0, 0.06), 0px 12px 40px 0px rgba(0, 0, 0, 0.02);
width: 29.8125rem;
height: 29.0625rem;
flex-shrink: 0;
position: relative;
left: 7rem;
}

.time-picker {
  text-align: center; 
}

.time-picker h1 {
  position: relative;
  left: -10rem;
  top: 1rem;
  font-size: 1.5rem;
}
.time-container {
  display: flex;
  flex-wrap: wrap;         
  justify-content: center;
  gap: 1.5rem;               
  margin-top: 2rem;        
  align-items: center;     
}

.time1 {
  cursor: pointer;
  margin-bottom: 1.5rem; 
  text-align: center;
  user-select: none;
  height: 4rem;


  display: flex;
  justify-content: center;  
  align-items: center;     
}

.time1:hover,
.time1.selected-time {
  background-color: #DDA47B; 
  color: #fff;            
  border-radius: 0.5rem; 
}





.selected-date-display {
  margin-top: 2rem;
  margin-left: 20rem;
  width: 30rem !important;
  height: 29.9rem;
  padding: 4.5rem;
  background-color: var(--c-bg-tertiary);
  border: 8px solid #DDA47B;
  border-radius: 3.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-text-primary);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 40px 30px 0px rgba(0, 0, 0, 0.06), 0px 22px 17px 0px rgba(0, 0, 0, 0.06), 0px 12px 40px 0px rgba(0, 0, 0, 0.02);
  position: relative;
  right: 10rem;
  top: 8.5rem;
  padding-bottom: 2rem;
  

 
}

.selected-date-display p {
  display: flex;
  flex-direction: column;
  gap: 1rem; 
  margin: 0; 
  position: relative;
  top: -2rem;

}

.book-now {
  border-radius: 0.9375rem;
  border: 3px solid #DDA47B;
  background: rgba(221, 164, 123, 0);
  width: 9rem;
  height: 3.7rem;
  flex-shrink: 0;
  color: #000;
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
position: relative;
top: -1rem;
text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.book-now:hover {
  background-color: #B6C7A7;
  color: white; 

}







.footer {
    border: 1px solid #000;
background: #DDA47B;
width: 100%;
height: 25vh;
position: relative;
top: 15rem;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  left: 4rem;
  top: 6rem;
}

.info {
  position: relative;
  left: 0; 
  top: 3rem;
  padding: 0 2rem;
}

.info img {
  position: relative;

  top: 0;  
  align-self: flex-start;
}


.info-text {
  display: flex;
  gap: 8rem;
  flex-wrap: wrap;
}

.info-text div {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info h1 {
  font-family: "Playfair Display";
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  font-style: italic;
}

.info p {
  font-family: Lato;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5rem;
}

.info img {
  width: 10.5rem;
  height: auto;
  align-self: flex-start;
  position: relative;
  right: 8rem;
  top: -1rem;
}







