/* Hotel Detail Page Styles */

/* Breadcrumb */
.breadcrumb {
    background: var(--light-color);
    padding: 1.2rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #e8d8c0;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb span {
    color: #888;
    margin: 0 0.5rem;
}

/* Hotel Detail Section */
.hotel-detail-section {
    padding: 4rem 0;
    background: white;
}

.hotel-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Hotel Image Section */
.hotel-detail-image-section {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    transition: var(--transition);
}

.main-image-wrapper:hover {
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

.main-hotel-image {
    width: 100%;
    height: auto;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

/* Hotel Information */
.hotel-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hotel-header {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-color);
}

.hotel-category-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hotel-detail-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hotel-location-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #666;
}

.location-icon {
    font-size: 1.3rem;
}

/* Hotel Description */
.hotel-description h2,
.hotel-features h2,
.location-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.hotel-description p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Hotel Amenities */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid var(--secondary-color);
}

.feature-item:hover {
    background: #f5e6c8;
    transform: translateX(4px);
}

.feature-item span:first-child {
    font-size: 1.3rem;
}

/* Booking Section */
.booking-section {
    margin: 0.5rem 0;
}

.booking-card {
    background: linear-gradient(135deg, var(--dark-color), #5a3020);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.3);
}

.booking-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.booking-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.booking-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-book-now,
.btn-view-map {
    flex: 1;
    min-width: 180px;
    padding: 1rem 1.75rem;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-book-now {
    background: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-book-now:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.4);
}

.btn-view-map {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-view-map:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

.book-icon,
.map-icon {
    font-size: 1.2rem;
}

/* Location Info */
.location-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.location-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.location-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.location-link:hover {
    color: var(--secondary-color);
}

/* Other Hotels Section */
.other-hotels-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.other-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hotel-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hotel-detail-image-section {
        position: relative;
        top: 0;
    }

    .hotel-detail-name {
        font-size: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        flex-direction: column;
    }

    .btn-book-now,
    .btn-view-map {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.9rem;
    }

    .hotel-detail-name {
        font-size: 1.8rem;
    }

    .hotel-description h2,
    .hotel-features h2,
    .location-info h2 {
        font-size: 1.5rem;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .booking-card h3 {
        font-size: 1.5rem;
    }

    .other-hotels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hotel-detail-section {
        padding: 2rem 0;
    }

    .hotel-detail-name {
        font-size: 1.5rem;
    }

    .hotel-location-detail {
        font-size: 1rem;
    }

    .btn-book-now,
    .btn-view-map {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}
