html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

/* Header */
.header-main {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 0;
}

.hero-slide {
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.search-form-container {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    z-index: 10;
}

.search-form-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
}

/* Search Filter Sticky */
.search-filter-section {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hotel Cards */
.hotel-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hotel-image {
    height: 250px;
    overflow: hidden;
}

.hotel-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.hotel-name {
    font-weight: 600;
    color: var(--text-dark);
}

.hotel-location {
    font-size: 0.9rem;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.price-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Feature Box */
.feature-box {
    background: white;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Feature Icons */
.feature-icon {
    transition: transform 0.3s;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: var(--primary-color);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    background: var(--bs-primary);
}

/* Room Item */
.room-item {
    transition: box-shadow 0.3s;
}

.room-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-image {
    position: relative;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Room Cards */
.room-card {
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.room-images-container {
    overflow: hidden;
    height: 100%;
}

.room-price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Calendar Styles */
#availabilityCalendar {
    max-width: 100%;
}

.fc .fc-daygrid-day.fc-day-disabled {
    background-color: #f8f9fa;
}

/* Sticky Sidebar */
.sticky-top {
    position: sticky;
}

/* Price Summary */
.price-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .search-form-card {
        padding: 20px;
    }
    
    .hotel-image {
        height: 200px;
    }
}

/* Button Primary */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}