.book-btn {
  background: #8aa65a;
  color: white;
  border: none;
  padding: 10px 15px;
}


button {
  width: 100%;
  padding: 12px;
  background: #8aa65a;
  color: white;
  border: none;
  margin-top: 15px;
}


body {
  font-family: Arial, sans-serif;
  background: #fff;
  padding: 20px;
}

.container {
  max-width: 400px;
  margin: auto;
}

h2 {
  font-weight: 500;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}

input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.room-box {
  margin-top: 20px;
}

.room-title {
  margin-bottom: 10px;
}

.row {
  display: flex;
  gap: 10px;
}

.row div {
  flex: 1;
}

.btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #8aa63c;
  color: white;
  border: none;
  cursor: pointer;
}

#calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin: 20px 0;
}

.day {
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
  cursor: pointer;
}

.day:hover {
  background: #eee;
}

.selected {
  background: #8ca048;
  color: white;
}

#calendarWrapper {
  max-width: 400px;
  margin-bottom: 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-header button {
  background: #8ca048;
  color:white ;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.calendar-header button:hover {
  background: #6e8035;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}

#calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.2s;
}

.day:hover {
  background: #eee;
}

.selected {
  background: #8ca048;
  color: white;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.book-btn {
  background: #8aa65a;
  color: white;
  border: none;
  padding: 10px 15px;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.step {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step.active {
  background: #8aa65a;
  color: white;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}


 .nav-links {
    width: 100%;
  }


.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:white;
}.navbar{
background:white;
padding:15px 20px;
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
max-width:1100px;
margin:auto;
}

.logo{
height:45px;
}

.book-btn{
background-color: #a6b86a;
color:white;
border:none;
padding:12px 30px;
font-weight:bold;
font-size: 14px;
display: inline-block;
border-radius:5px;
transition: 0.3s ease;
cursor:pointer;
}

.book-btn:hover {
  background-color: #8fa65a;
}

.menu-icon{
font-size:26px;
cursor:pointer;
}

.mobile-menu{
  position:fixed;
  top: 70px;
  left: 0;
  width: 100%;
display:none;
flex-direction:column;
background:white;
padding:20px;
z-index: 999;
}

.mobile-menu a{
padding:15px 0;
text-decoration:none;
color:#333;
font-size:16px;
border-bottom:1px solid #eee;
}

.mobile-menu.active {
  display: flex;
}






.footer{
  border-top: 1px solid #eee;
background:#e9f0f2;
font-size: 13px;
padding:80px 20px;
text-align:center;
}

.footer-logo{
width:120px;
margin-bottom:30px;
}

.footer h3{
margin-top:30px;
margin-bottom:15px;
letter-spacing:2px;
}

.footer p{
color:#555;
margin-bottom:10px;
}

.email{
text-decoration:underline;
}

.socials{
margin-top:20px;
}

.socials span{
display:inline-block;
background:#333;
color:white;
padding:10px 15px;
margin:5px;
}

.copyright{
margin-top:40px;
color:#777;
font-size:14px;
}




/* DARK OVERLAY (makes it look premium) */
.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.3);
  top:0;
  left:0;
  z-index:1;
}

/* NAV */
.nav{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  padding:20px;
}

.logo{
  width:100px;
}
.logo img{
height:60px;
width:auto;
}

#results {
    max-width: 500px;
    margin: 0 auto;
}

.room-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}
.room-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}
.room-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.room-card p {
    margin: 5px 0;
    color: #555;
}
.room-card button {
    width: 100%;
    background: #7fa83d;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
}

/* MAIN CONTAINER */
.booking-summary {
    max-width: 420px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

/* HEADINGS */
.booking-summary h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}

.booking-summary h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #7fa83d;
    margin-top: 5px;
}

/* ROOM TITLE */
.booking-summary h3 {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.booking-summary h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #7fa83d;
    margin-top: 5px;
}

/* TEXT STYLING */
.booking-summary p {
    font-size: 15px;
    color: #555;
    margin: 10px 0;
}

/* LABELS */
.booking-summary strong {
    color: #000;
    font-weight: 600;
}

/* LINES UNDER DATE */
.booking-summary p:nth-child(2),
.booking-summary p:nth-child(3) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* BUTTON */
.booking-summary button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    background: linear-gradient(to right, #9bbf4b, #7fa83d);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
}

/* BUTTON HOVER */
.booking-summary button:hover {
    opacity: 0.9;
}

/* 🔥 MAIN WRAPPER (fix width issue) */
.content-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 🔥 CARD STYLE (white clean box) */
.services-card {
  background: #fff;
  padding: 20px;
  margin-top: 20px;
}

/* 🔥 TITLE */
.section-title {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #a3b86c;
  margin-top: 5px;
}

/* 🔥 SERVICE ITEM */
.service-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
}

/* 🔥 DIVIDER LINE */
.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

/* 🔥 BUTTON */
.services-btn {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  background: #a3b86c;
  color: white;
  border: none;
  padding: 14px;
  font-size: 15px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.main-btn {
  width: 100%;
  padding: 12px;
  background: #9db33f;
  color: white;
  border: none;
  margin-top: 15px;
}

.payment-note {
  font-size: 13px;
  color: #555;
  margin: 10px 0;
}

.summary-box {
  border: 1px solid #ccc;
  padding: 15px;
  margin-top: 15px;
}





/* FORM */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* PAYMENT SECTION */
.payment-note {
  font-size: 13px;
  color: #555;
  margin: 10px 0;
}

/* MAIN BUTTON */
.main-btn {
  width: 100%;
  background: #8BAE3F;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  margin: 15px 0;
  cursor: pointer;
}

/* FINAL SUMMARY BOX */
#finalSummary {
  margin-top: 20px;
}

.summary-box {
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 10px;
}

.summary-box h2 {
  font-size: 28px;
  margin: 10px 0;
}

.summary-box h3 {
  font-size: 22px;
  color: #333;
}

.step3-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT SIDE */
.step3-left {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}

/* RIGHT SIDE (SUMMARY) */
.step3-right {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;

  position: sticky;
  top: 20px;
  height: fit-content;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .step3-wrapper {
    grid-template-columns: 1fr;
  }
}

/* STEP 4 CONFIRMATION */

.confirmation-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.confirmation-title {
  font-weight: 500;
  margin-bottom: 10px;
  font-family: serif;
}

.confirmation-line {
  width: 60px;
  height: 3px;
  background: #a5b57d;
  margin-bottom: 25px;
}

.confirmation-text {
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.confirmation-link {
  color: #000;
  text-decoration: underline;
}

.confirmation-link:hover {
  opacity: 0.7;
}

.summary-title {
  margin-top: 30px;
}

.summary-box {
  margin-top: 10px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 6px;
}

.disabled {
  background: #eee;
  color: #aaa;
  pointer-events: none;
}

.booked {
  background: red;
  color: white;
  position: relative;
}

.booked::after {
  content: "✖";
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 12px;
}

.room-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

/* DETAILS LIST */
.room-details {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.room-details li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: #666;
  font-size: 14px;
}

/* GREEN ARROW */
.room-details li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #7aa33c;
  font-weight: bold;
}

/* PRICE */
.room-price {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-top: 10px;}

  .mobile-menu{
  position:fixed;
  top: 70px;
  left: 0;
  width: 100%;
  display:none;
  flex-direction:column;
  background:white;
  padding:20px;
  z-index: 999;
}
.mobile-menu.active {
  display: flex;
}
nav ul li a {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s;
}