/* ==============================================
   ROOMS SECTION STYLES
   Extracted from index.css for reuse
   ============================================== */

/* Breadcrumb */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #373f3f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #89b126;
}

.breadcrumb .separator {
  margin: 0 10px;
  color: #6c757d;
}

.breadcrumb .current {
  color: #6c757d;
  font-weight: 500;
}

/* Rooms Section */
.rooms-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.rooms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rooms-header {
  text-align: center;
  margin-bottom: 60px;
}

.rooms-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #373f3f;
  margin: 0;
  margin-bottom: 8px;
}

.rooms-subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  margin: 0;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 450px;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.room-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.room-content {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  text-align: left;
  color: white;
  z-index: 2;
  background: rgba(55, 63, 63, 0.6);
  padding: 20px 25px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.room-title {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: white;
}

.room-subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.room-btn {
  background: transparent;
  color: white;
  border: 1.5px solid white;
  padding: 14px 28px;
  border-radius: 25px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-shadow: none;
}

.room-btn:hover {
  background: white;
  color: #373f3f;
  transform: none;
}

/* =============================
   ROOMS RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .rooms-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .rooms-section {
    padding: 60px 0;
  }
  
  .rooms-container {
    padding: 0 20px;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .rooms-header {
    margin-bottom: 40px;
  }
  
  .rooms-title {
    font-size: 2rem;
  }
  
  .room-card {
    height: 380px;
  }
  
  .room-content {
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 16px 20px;
  }
  
  .room-title {
    font-size: 1.6rem;
  }
  
  .room-subtitle {
    font-size: 0.85rem;
  }
  
  .room-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .room-card {
    height: 350px;
  }
  
  .room-content {
    top: 15px;
    left: 15px;
    right: 15px;
    padding: 14px 18px;
  }
  
  .room-title {
    font-size: 1.4rem;
  }
  
  .room-subtitle {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
}
