
/* General Styles */
:root {
  --primary-color: #5c7836;
  --secondary-color: #a67c52;
  --text-color: #333333;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --border-color: #dee2e6;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #4a6329;
  border-color: #4a6329;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading .subheading {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.section-heading h2 {
  font-size: 2.5rem;
  position: relative;
}

.section-heading h2:after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  background-color: var(--secondary-color);
  margin-top: 0.5rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: white;
  font-size: 0.9rem;
}

.top-bar a {
  color: white;
}

.top-bar .social-links a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s;
}

.top-bar .social-links a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  padding: 0;
  line-height: 1;
}

.navbar-brand h1 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.navbar-brand .tagline {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--secondary-color);
}

.navbar .nav-link {
  font-weight: 500;
  padding: 0.8rem 1rem !important;
  color: var(--dark-color);
}

.navbar .nav-link.active {
  color: var(--primary-color);
}

.navbar .btn-book {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
}

.navbar .btn-book:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  max-width: 800px;
  color: white;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-controls {
  position: absolute;
  bottom: 50px;
  right: -560px;
  z-index: 10;
}

.hero-controls button {
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-controls button:hover {
  background-color: var(--primary-color);
}

/* Welcome Section */
.welcome-img-container {
  position: relative;
}

.welcome-img-container .accent-img {
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 60%;
  border: 10px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.feature-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* Room Showcase */
.room-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-img {
  position: relative;
}

.room-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-img .price {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: white;
  padding: 10px 15px;
  border-radius: 30px;
  text-align: center;
}

.room-img .price span {
  font-size: 0.8rem;
  color: var(--secondary-color);
  display: block;
}

.room-img .price h4 {
  margin: 0;
  font-size: 1.1rem;
}

.room-content {
  padding: 1.5rem;
}

.room-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.room-features span {
  margin-right: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* Testimonial Section */
.testimonial-content {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content .rating {
  color: var(--secondary-color);
}

.testimonial-content .quote {
  font-size: 1.2rem;
  font-style: italic;
  margin: 1rem 0 2rem;
}

.testimonial-content .guest-info h5 {
  margin-bottom: 0.2rem;
}

.testimonial-controls .testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background-color: transparent;
  margin: 0 5px;
  padding: 0;
}

.testimonial-controls .testimonial-dot.active {
  background-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.cta-section .container {
  position: relative;
}

/* Footer */
.footer {
  background-color: #1c2331;
  color: #adb5bd;
}

.footer-heading {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #adb5bd;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
}

.footer-contact li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}

.footer .social-links a:hover {
  background-color: var(--primary-color);
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
}

.newsletter-form .btn {
  padding: 0.375rem 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.page-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: relative;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header .breadcrumb {
  background: transparent;
  justify-content: center;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: white;
}

.page-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

/* Room Filters */
.filter-container {
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.room-filter-buttons {
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  padding: 0.5rem 1.5rem;
  margin: 0.25rem;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Room List */
.room-list-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.room-list-img {
  position: relative;
  height: 100%;
}

.room-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-list-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-list-content h3 {
  margin-bottom: 1rem;
}

.room-list-content p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Amenities */
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.amenity-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Policy Card */
.policy-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-card h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.policy-item {
  margin-bottom: 1.5rem;
}

.policy-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Room Modal */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.room-details-info {
  margin-top: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item .label {
  font-weight: 600;
}

/* About Page */
.about-img {
  position: relative;
}

.experience-badge {
  position: absolute;
  right: -30px;
  bottom: 30px;
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
}

.founder-quote {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-left: 3px solid var(--primary-color);
}

.mission-card,
.vision-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
}

.mission-card .icon,
.vision-card .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.mission-card .icon {
  background-color: var(--primary-color);
  color: white;
}

.vision-card .icon {
  background-color: var(--secondary-color);
  color: white;
}

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(92, 120, 54, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.team-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 0.3rem;
}

.team-info p {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.team-social a {
  width: 36px;
  height: 36px;
  background-color: #f8f9fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 5px;
}

.awards-timeline {
  position: relative;
  padding-left: 30px;
}

.awards-timeline:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}

.award-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 30px;
}

.award-item:last-child {
  margin-bottom: 0;
}

.award-item:before {
  content: '';
  position: absolute;
  left: -9px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--primary-color);
}

.award-year {
  display: inline-block;
  padding: 0.3rem 1rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(92, 120, 54, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.map-container {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-section {
    height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .welcome-img-container .accent-img {
    right: -10%;
    bottom: -10%;
  }
  
  .navbar-brand h1 {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
    
    
  .hero-section {
    height: 60vh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-heading h2 {
    font-size: 2rem;
  }
  
  .welcome-img-container .accent-img {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
  
  .hero-controls {
    bottom: 20px;
    right: 20px;
  }
  
  .hero-controls button {
    width: 40px;
    height: 40px;
  }
  
  .room-list-content {
    padding: 1.5rem;
  }
  
  .testimonial-content {
    padding: 2rem;
  }
}
.rounded {
    border-radius: var(--bs-border-radius) !important;
    width: 100%;
    height: 300px;
}


@media (max-width: 991px) {
.margin-bottom-footer{
    margin-bottom: 40px;
}

}