:root {
  --primary: #2a5d8a;
  --secondary: #e9b44c;
  --accent: #d74e09;
  --light: #f8f9fa;
  --dark: #1a2a3a;
  --gray: #6c757d;
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--dark);
  line-height: 1.6;
}

.logo h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  color: var(--dark);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("images/i.jpg");
  background-size: cover; /* Ensures the image covers the whole area */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents repeating */
}

.hero-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.booking-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(50%);
  z-index: 10;
}

.form-title {
  color: var(--primary);
}

.book-btn {
  background: var(--accent);
  color: white;
  transition: var(--transition);
}

.book-btn:hover {
  background: #c04408;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(215, 78, 9, 0.3);
}

.feature-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  padding: 30px 20px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  color: white;
  transform: translateY(30px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-category {
  background: var(--accent);
  color: white;
  border-radius: 20px;
}

.filter-btn {
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
}

.testimonial-card {
  background: var(--light);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(42, 93, 138, 0.1);
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.contact-info {
  background: var(--primary);
  color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.contact-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

footer {
  background: var(--dark);
  color: white;
}

.footer-col h3 {
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.footer-links a {
  color: #aaa;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-btn:hover {
  background: var(--accent);
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(150%);
  transition: transform 0.5s ease;
  z-index: 2000;
}

.notification.show {
  transform: translateX(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.gallery-item,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .booking-form {
    transform: translateY(30%);
  }
}

@media (max-width: 576px) {
  .booking-form {
    transform: translateY(20%);
  }

  .hero h2 {
    font-size: 2rem;
  }
}

/* This is a CSS comment        bookkkking page   */

.booking-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-top: 120px;
}

.booking-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.booking-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;

  /* color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px; */
}

.booking-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 30px auto;
  position: relative;
}

.step-indicator::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #e0e0e0;
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background-color: var(--primary);
  transform: scale(1.1);
}

.step.completed .step-number {
  background-color: var(--accent);
}

.step.completed .step-number::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.step-label {
  font-weight: 500;
  color: #666;
  text-align: center;
  font-size: 0.9rem;
}

.step.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

.booking-step {
  display: block;
}

.completed-step {
  display: none;
}

.booking-section {
  margin-top: 20px;
}

.section-title {
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;

  /* margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
  font-family: "Playfair Display", serif;
  color: var(--primary); */
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.calendar-container {
  position: relative;
  margin: 20px 0;
  min-height: 400px;
}

.no-rooms-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10;
  color: #d9534f;
  font-weight: 600;
  display: none;
}

.selected-dates {
  background-color: var(--light);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.date-info,
.time-info {
  background: white;
  border-radius: 6px;
  padding: 10px 15px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.time-options {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 5px;
  flex-wrap: wrap;
}

.form-check-inline {
  margin: 0;
  display: flex;
  align-items: center;
}

.form-check-label {
  margin-left: 5px;
  font-size: 0.9rem;
  line-height: 1;
}

.form-check-input {
  margin-top: 0; /* remove default vertical offset */
}

.date-label,
.time-label {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 5px;
}

.date-value {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #7a5a40;
  border-color: #7a5a40;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(142, 108, 77, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.booking-summary {
  background-color: var(--light);
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 15px 0 5px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.confirmation {
  text-align: center;
  padding: 30px 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background-color: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.confirmation-icon i {
  color: #4caf50;
  font-size: 40px;
}

.confirmation h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.confirmation p {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.booking-details {
  background-color: var(--light);
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 30px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--dark);
  min-width: 150px;
}

.detail-value {
  color: #555;
  text-align: right;
}

.review-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}
.button-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.button-group .btn {
  flex: 1;
}
@media (max-width: 768px) {
  .step-indicator {
    max-width: 100%;
  }

  .step-label {
    font-size: 0.75rem;
  }

  .date-info {
    min-width: 100%;
  }

  .booking-container {
    padding: 20px 15px;
  }
  .button-group {
    flex-direction: column;
  }
}
/* This is a CSS comment        bookkkking page   */
