/**
* Template Name: LuxuryHotel
* Version: 1.0
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #8d703b;
  --secondary-color: #bfa760;
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #6c757d;
  --light-gray: #f8f9fa;
}

body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  background-color: #ffffff;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
}

section {
  padding: 40px 0;
  overflow: hidden;
}

/* Ajuste para compensar el menú fijo */
main section:first-child {
  padding-top: 40px;
}

.section-title {
  margin-bottom: 30px;
  text-align: center;
}

.section-title h6 {
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title h2 {
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  transition: all 0.5s;
  background-color: var(--black-color);
  z-index: 997;
}

#header.header-scrolled {
  background-color: var(--black-color);
  padding: 8px 0;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--white-color);
}

#navbar {
  display: flex;
  align-items: center;
}

#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

#navbar li {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  padding: 10px 15px !important;
  color: var(--white-color);
  font-weight: 300;
  letter-spacing: 1px;
  transition: 0.3s;
  display: block;
}

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

.navbar-toggler {
  border: none;
  color: var(--white-color);
}

.social-links a {
  color: var(--white-color);
  margin-right: 15px;
  transition: 0.3s;
}

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

/* Mobile Navigation */
.mobile-nav-toggle {
  color: var(--white-color);
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--black-color);
  z-index: 999;
  padding: 20px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.social-links {
  margin-left: 15px;
}

@media (max-width: 991px) {
  .social-links {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  
  .header-scrolled .social-links {
    top: 10px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  height: 100vh;
  background-color: var(--black-color);
  padding: 0; /* Aseguramos que no tenga padding */
  margin-bottom: 20px; /* Añadimos margen inferior */
}

.hero-carousel .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-carousel .carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px; /* Ajustamos el padding superior */
}

.hero-carousel h1 {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 25px;
}

.hero-carousel h6 {
  letter-spacing: 5px;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50px;
  padding: 10px 30px;
  transition: 0.3s;
}

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

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  border-radius: 50px;
  padding: 10px 30px;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: var(--white-color);
  color: var(--black-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  padding: 40px 0;
}

/* Badge de experiencia eliminado */

/* Estilos de badge eliminados */

.counter-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 8px 0;
}

.counter-box i {
  font-size: 36px;
  color: var(--primary-color);
  margin-right: 15px;
}

.counter-box h2 {
  font-size: 36px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Room Section
--------------------------------------------------------------*/
.room-section {
  padding: 40px 0;
  background-color: var(--light-gray);
}

.room-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 5px;
}

.room-img {
  position: relative;
  overflow: hidden;
  height: 250px; /* Altura fija para todas las imágenes */
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantiene la proporción y cubre todo el espacio */
  transition: 0.5s;
}

.room-item:hover .room-img img {
  transform: scale(1.1);
}

.room-content {
  padding: 30px;
  background-color: var(--white-color);
}

.room-content h5 {
  font-weight: 400;
  margin-bottom: 15px;
}

.room-features {
  display: flex;
  margin-bottom: 15px;
}

.room-features span {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #dee2e6;
}

.room-features span:last-child {
  border-right: none;
}

.room-features i {
  color: var(--primary-color);
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
  padding: 40px 0;
}

.service-item {
  padding: 30px;
  background-color: var(--white-color);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 36px;
  color: var(--primary-color);
}

.service-item h5 {
  font-weight: 400;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/
.video-section {
  position: relative;
  padding: 0;
}

.video-content {
  padding: 100px 50px;
  background-color: var(--black-color);
  color: var(--white-color);
}

.video-container {
  position: relative;
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 24px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.video-btn:hover {
  background-color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/
.testimonial-section {
  padding: 40px 0;
  background-color: var(--light-gray);
}

.testimonial-item {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-text {
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-author h6 {
  font-weight: 500;
  margin-bottom: 5px;
}

.testimonial-quote {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 36px;
  color: var(--primary-color);
  opacity: 0.2;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  padding: 40px 0;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-form {
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 100px 0 0;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

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

.footer-links a {
  display: block;
  color: var(--white-color);
  margin-bottom: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  color: var(--white-color);
  margin-right: 10px;
  transition: 0.3s;
}

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

.copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hotel-filters .btn {
    font-size: 12px;
    padding: 6px 15px;
    margin: 3px;
  }
}

@media (max-width: 991px) {
  .about-section .col-lg-6 {
    margin-bottom: 30px;
  }
  
  .counter-box {
    justify-content: center;
    text-align: center;
  }
  
  .hotel-filters .btn {
    font-size: 11px;
    padding: 5px 12px;
    margin: 2px;
  }
  
  .room-features {
    flex-wrap: wrap;
  }
  
  .room-features span {
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 30px 0;
  }
  
  main section:first-child {
    padding-top: 40px;
  }
  
  .hero-carousel h1 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-carousel h6 {
    margin-bottom: 20px;
  }
  
  .hero-carousel .carousel-caption {
    padding: 50px 15px;
  }
  
  .video-content {
    padding: 30px 20px;
  }
  
  .hotel-filters {
    padding: 0 15px;
  }
  
  .hotel-filters .btn {
    font-size: 10px;
    padding: 4px 10px;
    margin: 2px 1px;
  }
  
  .room-content {
    padding: 20px;
  }
  
  .service-item {
    padding: 20px;
  }
  
  .testimonial-item {
    padding: 20px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .footer {
    padding: 50px 0 0;
  }
  
  .footer .col-lg-5,
  .footer .col-lg-3,
  .footer .col-lg-4 {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-carousel h1 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.1;
  }
  
  .hero-carousel h6 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .hero-carousel .carousel-caption {
    padding: 40px 10px;
  }
  
  .hero-carousel p {
    font-size: 14px;
  }
  
  .btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .room-features {
    flex-direction: column;
  }
  
  .room-features span {
    border-right: none;
    margin-bottom: 10px;
    padding-right: 0;
  }
  
  .hotel-filters .btn {
    font-size: 9px;
    padding: 3px 8px;
    margin: 1px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .counter-box {
    flex-direction: column;
    text-align: center;
  }
  
  .counter-box i {
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  .navbar-brand {
    font-size: 20px;
  }
  
  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .footer-info h3 {
    font-size: 20px;
  }
  
  .footer h5 {
    font-size: 16px;
  }
}

/* Mejoras adicionales para responsividad */
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 480px) {
  .hero-carousel h1 {
    font-size: 24px;
    line-height: 1.1;
  }
  
  .hero-carousel p {
    font-size: 13px;
  }
  
  .btn {
    padding: 6px 16px;
    font-size: 13px;
  }
  
  .section-title h2 {
    font-size: 20px;
  }
  
  .hotel-filters .btn {
    font-size: 8px;
    padding: 2px 6px;
    margin: 1px 0;
  }
  
  .room-content h5 {
    font-size: 16px;
  }
  
  .service-item h5 {
    font-size: 16px;
  }
  
  .testimonial-item {
    padding: 15px;
  }
  
  .contact-form {
    padding: 15px;
  }
  
  .navbar-brand {
    font-size: 18px;
  }
}

/* Overflow handling */
.hotel-filters {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hotel-filters .d-flex {
  min-width: max-content;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Better spacing for mobile */
@media (max-width: 767px) {
  .mb-4 {
    margin-bottom: 2rem !important;
  }
  
  .mt-4 {
    margin-top: 2rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
.counter-number {
  display: flex;
  align-items: baseline;
}

.counter-plus {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-color);
  display: inline-block;
  margin-right: 2px;
}

.counter-content {
  display: flex;
  flex-direction: column;
}

.counter-box h2 {
  display: inline-block;
  margin-bottom: 5px;
}
/* Estilos para la sección de filtros de hoteles */
.hotel-filters {
  margin-bottom: 30px;
  text-align: center;
  padding: 0 15px;
}

.hotel-filters .btn {
  margin: 5px;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  letter-spacing: 1px;
  background-color: transparent;
  color: var(--gray-color);
  border: 1px solid var(--gray-color);
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.hotel-pagination {
  margin-top: 30px;
  text-align: center;
}

.hotel-pagination .page-link {
  color: var(--primary-color);
  border-radius: 50%;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-pagination .page-link:hover,
.hotel-pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.hotel-brand-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white-color);
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 1;
}

.room-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-content p {
  flex-grow: 1;
}

.room-location {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
}

.room-features {
  margin-bottom: 15px;
}

.room-features span {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
  padding-right: 15px;
  border-right: 1px solid #dee2e6;
  font-size: 13px;
}

.room-features span:last-child {
  border-right: none;
}

.room-features i {
  color: var(--primary-color);
  margin-right: 5px;
}